/* =========================================
                HERO SECTION
========================================= */

.contact-hero {

    height: 70vh;

    margin-top: 15px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
        url("/images/image1.png") center 35%/cover no-repeat;
}
.contact-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,0.25);
}

.contact-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    color: white;

    padding: 20px;
}

.hero-badge {

    display: inline-block;

    padding: 10px 24px;

    border-radius: 30px;

    background:
        rgba(255,255,255,0.12);

    backdrop-filter: blur(6px);

    margin-bottom: 24px;
}

.contact-content h1 {

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;

    font-weight: 700;
}
.contact-content h1 span {

    color: #FF7043;
}

.contact-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #eee;
}

/* =========================================
                CONTACT SECTION
========================================= */
/* =========================================
            CONTACT HUB SECTION
========================================= */

.contact-section {

    padding: 100px 8%;

    background: #f8f5f2;
}

.contact-info {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;
}

.contact-info h2 {

    font-size: 48px;

    color: #2F5D50;

    margin-bottom: 20px;
}

.contact-info > p {

    max-width: 700px;

    margin: 0 auto 50px;

    color: #666;

    line-height: 1.8;
}

.contact-cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.info-box {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: white;

    padding: 40px 30px;

    border-radius: 24px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);

    transition: 0.4s ease;
}

.info-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.info-box a {

    color: #2F5D50;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.info-box a:hover {

    color: #FF7043;
}

.info-box i {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,112,67,0.1);

    color: #FF7043;

    font-size: 30px;

    margin-bottom: 20px;
}

.info-box h3 {

    color: #2F5D50;

    margin-bottom: 10px;

    font-size: 22px;
}

.info-box p {

    color: #666;

    line-height: 1.7;

    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-info h2 {

        font-size: 34px;
    }

    .contact-cards {

        grid-template-columns: 1fr;
    }
}

/* =========================================
                FORM
========================================= */

.contact-form {

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

.input-box {

    margin-bottom: 24px;
}

.input-box input,
.input-box textarea {

    width: 100%;

    padding: 16px 20px;

    border-radius: 14px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 15px;

    font-family: 'Poppins', sans-serif;

    transition: 0.3s ease;
}

.input-box input:focus,
.input-box textarea:focus {

    border-color: #FF7043;
}

.btn {

    padding: 14px 34px;

    border: none;

    border-radius: 30px;

    background: #FF7043;

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.btn:hover {

    background: #ff5a26;

    transform: translateY(-4px);
}

/* =========================================
                MAP
========================================= */

/* =========================================
                MAP SECTION
========================================= */
/* =========================================
                MAP SECTION
========================================= */

.map-section {

    padding: 90px 8%;

    background: #f8f5f2;
}

.map-container {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.12);

    transition: 0.5s ease;
}

.map-container:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.18);
}

.map-container iframe {

    width: 100%;

    height: 420px;

    border: none;

    filter:
        contrast(1.05)
        saturate(1.05);
}

/* =========================================
                GLASS CARD
========================================= */

.map-info {

    position: absolute;

    top: 30px;

    left: 30px;

    z-index: 2;

    max-width: 320px;

    padding: 24px;

    border-radius: 24px;

    background:
        rgba(255,255,255,0.15);

    backdrop-filter: blur(14px);

    border:
        1px solid rgba(255,255,255,0.2);

    color: white;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.15);
}

.map-info h3 {

    font-size: 26px;

    margin-bottom: 14px;
}

.map-info p {

    font-size: 15px;

    line-height: 1.8;
}

/* =========================================
                BUTTON
========================================= */

.map-btn {

    display: inline-block;

    margin-top: 18px;

    padding: 12px 24px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #FF7043,
            #ff5a26
        );

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.4s ease;

    box-shadow:
        0 10px 25px rgba(255,90,38,0.25);
}

.map-btn:hover {

    transform:
        translateY(-4px)
        scale(1.03);

    box-shadow:
        0 18px 35px rgba(255,90,38,0.35);
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 768px) {

    .map-section {

        padding: 60px 20px;
    }

    .map-container iframe {

        height: 280px;
    }

    .map-info {

        position: relative;

        top: auto;

        left: auto;

        margin: 20px;

        max-width: 100%;
    }
}
/* =========================================
                ANIMATIONS
========================================= */

.fade-up {

    opacity: 0;

    transform: translateY(40px);

    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: 1s ease;
}

.reveal.active {

    opacity: 1;

    transform: translateY(0);
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-hero {

            min-height: 90vh;

            height: auto;

            padding: 100px 20px 60px;
        }

        .contact-content h1 {

            font-size: 28px;
        }

        .contact-content p {

            font-size: 14px;
        }

    .contact-section {

        grid-template-columns: 1fr;

        padding: 60px 20px;
    }

    .contact-info h2 {

        font-size: 34px;
    }

    .contact-form {

        padding: 30px 22px;
    }

    .btn {

        width: 100%;
    }

    .map-section iframe {

        height: 320px;
    }
}

/* FORM HOVER */

.contact-form:hover {

    transform: translateY(-8px);

    transition: 0.4s ease;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.12);
}

.input-box input,
.input-box textarea {

    transition:
        0.3s ease,
        box-shadow 0.3s ease;
}

.input-box input:focus,
.input-box textarea:focus {

    box-shadow:
        0 0 0 4px rgba(255,112,67,0.12);
}
.contact-hero {

    background-size: cover !important;
}


/*@media (max-width: 768px) {

    .contact-hero {

        min-height: 90vh;

        height: auto;

        padding: 30px 18px 50px;

        margin-top: 5px;
    }
}*/