.head-section {
    height: 80vh;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 60px 40px;
    /* slightly reduced overall */
    background: #f6fbf2;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    /* IMPORTANT for top control */
}

/* LEFT SIDE – BIG TOP CHANGE */
.contact-left {
    flex: 1;
    margin-top: -30px;
    /* LARGE upward move */
}

.contact-tag {
    display: inline-block;
    background: #c12d5c;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-left h2 {
    font-size: 52px;
    color: #c12d5c;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 420px;
}


/* RIGHT SIDE – SMALL TOP CHANGE */
.contact-right {
    flex: 1.5;
    margin-top: -10px;
    /* SMALL upward move */
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 14px;
}

.contact-right textarea {
    resize: none;
}

.contact-right button {
    background: #c12d5c;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #a02147;
}


/* ================= RESPONSIVE ================= */





.map-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) brightness(60%);
}

.contact-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(204, 51, 102, 0.85);
    /* pink transparent */
    color: white;
    padding: 40px 50px;
    max-width: 400px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.contact-overlay h2 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.map-container {
    width: 100%;
    /* full width of column */
    max-width: 400px;
    /* optional max width */
    height: 200px;
    /* rectangle height */
    margin: auto;
    /* center if needed */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    /* optional shadow */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    /* disables zoom/Ctrl+scroll */
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left {
        margin-top: 0;
        text-align: center;
    }

    .contact-right {
        margin-top: 0;
    }

    .contact-left h2 {
        font-size: 40px;
    }

    .contact-right textarea {
        width: 100%;
        /* full width */
        height: 50vh;
        /* half of viewport height */
        padding: 16px;
        font-size: 16px;
        box-sizing: border-box;
        /* ensures padding doesn't overflow */
    }

    .contact-right input {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-right button {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .contact-overlay {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(204, 51, 102, 0.85);
        /* pink transparent */
        color: white;
        padding: 40px 50px;
        width: 600px;
        font-family: Arial, sans-serif;
        box-sizing: border-box;
    }
}