/* HERO SECTION */
.contactus-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    font-family: "Montserrat", sans-serif;
}

/* OVERLAY */
.contactus-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.contactus-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.contactus-content h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.contactus-content p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contactus-content h1 {
        font-size: 36px;
    }

    .contactus-content p {
        font-size: 16px;
    }

    .contactus-hero {
        height: 50vh;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 80px auto;
}

/* LEFT */
.contact-left .subtitle-contact {
    color: #bd8305;
    font-size: 18px;
}

.contact-left h2 {
    font-size: 42px;
    margin: 10px 0 20px;
    font-family: "Playfair Display";

}


.contact-left .desc {
    color: #666;
    margin-bottom: 30px;
}

/* FORM */
.contact-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    width: 100%;
}


.input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}



.contact-btn {
    display: inline-block;
    background: #242424;
    padding: 12px 30px;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    /* border: none !important; */
    cursor: pointer;
    font-size: 16px;
    margin-top: 35px;
    border-radius: 6px;
    border: 1px solid #242424;
    font-weight: 500;
}





.contact-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */
    color: #242424;

    background: #ffffff;
    z-index: -1;


    transition: height 0.4s ease;
}

/* HOVER EFFECT */
.contact-btn:hover::before {
    height: 100%;
}

.contact-btn:hover {
    color: #242424;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);
}

/* RIGHT */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #f2f6fb;
}

.info-card-email {
    background: #000000;
    color: #fff;
}


.info-card-icon {
    background: #bd8305;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card-icon i {
    font-size: 20px;
    color: #ffffff;
}

.info-card h4 {
    margin-bottom: 5px;
}

/* FOLLOW */
.follow-box {
    padding: 20px;
    border-radius: 12px;
    background: #f4f6f9;
    text-align: center;
}

.follow-box .socials a {
    text-decoration: none;
}

.socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}


.socials i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
}

.socials .facebook-icon {
    color: rgb(50, 121, 234);
}

.socials .instagram-icon {
    background: linear-gradient(90deg, #ff492d, #ffb20b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* ================= MAP ================= */
.contact-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-form .row {
        flex-direction: column;
    }

    .contact-left h2 {
        font-size: 32px;
        margin: 10px 0 20px;
        font-family: "Playfair Display";
        text-align: center;
    }

    .contact-left .subtitle-contact {
        color: #bd8305;
        font-size: 18px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        display: flex;
        gap: 15px;
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;

    }


    .info-card-icon {
        background: #bd8305;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .contact-btn {
        display: flex;
        margin: 0 auto;
        margin-top: 20px;
    }

}