/* =========================================================
   CONTACT PAGE
   ========================================================= */


/* ---------------------------------------------------------
   CONTACT HERO
   --------------------------------------------------------- */



/* ---------------------------------------------------------
   CONTACT HERO GRID
   --------------------------------------------------------- */

.contact-hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */





.top-hero-content p {
    max-width: 580px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   RIGHT CONTACT INFORMATION
   --------------------------------------------------------- */

.contact-hero-info {
    display: grid;

    gap: 14px;

    width: 100%;
}


/* ---------------------------------------------------------
   CONTACT INFO CARD
   --------------------------------------------------------- */

.contact-info-card {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 12px 30px
        rgba(16, 24, 40, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0, 152, 70, 0.30);

    box-shadow:
        0 18px 40px
        rgba(16, 24, 40, 0.09);
}


/* ---------------------------------------------------------
   CONTACT ICON
   --------------------------------------------------------- */

.contact-info-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 18px;

    font-weight: 800;
}


/* ---------------------------------------------------------
   CONTACT TEXT
   --------------------------------------------------------- */

.contact-info-content {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.contact-info-content span {
    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}

.contact-info-content strong {
    color: var(--dark);

    font-size: 15px;

    font-weight: 700;
}

/* ---------------------------------------------------------
   CONTACT SECTION
   --------------------------------------------------------- */

.contact-section {
    padding: 90px 0;

    background: var(--white);
}


/* ---------------------------------------------------------
   CONTACT INFO
   --------------------------------------------------------- */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-bottom: 90px;
}

.contact-info-card {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 25px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 152, 70, 0.25);

    box-shadow:
        0 18px 40px
        rgba(16, 24, 40, 0.08);
}

.contact-info-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;

    font-weight: 800;
}

.contact-info-card span {
    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}

.contact-info-card strong {
    display: block;

    color: var(--dark);

    font-size: 15px;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   OFFICE HEADING
   --------------------------------------------------------- */

.contact-section-heading {
    max-width: 650px;

    margin:
        0 auto 45px;

    text-align: center;
}

.contact-section-heading h2 {
    margin: 12px 0 12px;

    font-size:
        clamp(32px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.contact-section-heading p {
    color: var(--muted);

    font-size: 15px;
}


/* ---------------------------------------------------------
   OFFICE GRID
   --------------------------------------------------------- */

.office-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
	    
		    padding-right: 30px;
    padding-left: 30px;
	padding-bottom:30px;
}

.office-card {
    position: relative;

    padding: 30px;

    background: var(--background);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.office-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0, 152, 70, 0.25);

    box-shadow:
        0 20px 45px
        rgba(16, 24, 40, 0.08);
}

.office-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--primary-light);

    font-size: 21px;
}

.office-label {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.office-content h3 {
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.4;
}

.office-content p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.map-link {
    display: inline-flex;

    align-items: center;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    transition: 0.2s ease;
}

.map-link:hover {
    color: var(--primary-dark);

    transform: translateX(3px);
}


/* ---------------------------------------------------------
   MAP SECTION
   --------------------------------------------------------- */

.contact-map-section {
    padding: 90px 0;

    background: var(--background);
}

.contact-map-header {
    max-width: 650px;

    margin:
        0 auto 40px;

    text-align: center;
}

.contact-map-header h2 {
    margin: 12px 0;

    font-size:
        clamp(32px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.contact-map-header p {
    color: var(--muted);

    font-size: 15px;
}

.contact-map {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    background: var(--white);

    box-shadow:
        0 20px 50px
        rgba(16, 24, 40, 0.08);
}

.contact-map iframe {
    display: block;

    width: 100%;

    min-height: 450px;
}


/* ---------------------------------------------------------
   CONTACT CTA
   --------------------------------------------------------- */

.contact-cta {
    padding: 100px 0;
}

.contact-cta-box {
    padding: 75px 30px;

    text-align: center;

    border-radius:
        32px;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);

    box-shadow:
        0 30px 60px
        rgba(0, 152, 70, 0.20);
}

.contact-cta-box .section-tag {
    background:
        rgba(255, 255, 255, 0.14);

    color: var(--white);
}

.contact-cta-box h2 {
    margin: 15px 0;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.contact-cta-box h2 span {
    color: #b9ffd0;
}

.contact-cta-box p {
    max-width: 550px;

    margin:
        0 auto 28px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 16px;
}

.contact-cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}

.contact-cta-buttons .btn-primary {
    background: var(--white);

    color: var(--primary);

    box-shadow: none;
}

.contact-cta-buttons .btn-primary:hover {
    background: #f4fff8;

    color: var(--primary-dark);
}

.contact-cta-buttons .btn-outline {
    border-color:
        rgba(255, 255, 255, 0.35);

    background:
        rgba(255, 255, 255, 0.08);

    color: var(--white);
}

.contact-cta-buttons .btn-outline:hover {
    border-color: var(--white);

    background:
        rgba(255, 255, 255, 0.15);

    color: var(--white);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .contact-info-grid,
    .office-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .office-card:last-child {
        grid-column:
            1 / -1;

        max-width: 50%;

        width: 100%;

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
	   .page-hero {
        padding: 55px 0 65px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        align-items: stretch;
    }

    /* Hero Content */
    .page-hero-content {
        text-align: left;
    }

    .page-hero-content .section-tag {
        margin-bottom: 12px;
    }

    .page-hero-content h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.05;
        letter-spacing: -2px;
        margin-bottom: 18px;
    }

    .page-hero-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 0;
    }

    /* Contact Information */
    .contact-hero-info {
        gap: 12px;
    }

    .contact-hero-info .contact-info-card {
        width: 100%;
        padding: 17px 18px;
        border-radius: 16px;
        gap: 14px;
    }

    .contact-hero-info .contact-info-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 13px;
        font-size: 17px;
    }

    .contact-hero-info .contact-info-content {
        min-width: 0;
    }

    .contact-hero-info .contact-info-content span {
        font-size: 11px;
    }

    .contact-hero-info .contact-info-content strong {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
    }

    .contact-hero {
        padding: 55px 0 70px;
    }

    .contact-hero h1 {
        letter-spacing: -2px;
    }

    .contact-hero p {
        font-size: 16px;
    }


    .contact-section {
        padding: 70px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;

        margin-bottom: 70px;
    }


    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-card:last-child {
        grid-column: auto;

        max-width: none;

        margin: 0;
    }


    .office-card {
        padding: 25px;
    }


    .contact-map-section {
        padding: 70px 0;
    }

    .contact-map iframe {
        min-height: 350px;
    }


    .contact-cta {
        padding: 70px 0;
    }

    .contact-cta-box {
        padding: 55px 22px;

        border-radius: 25px;
    }

    .contact-cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .contact-cta-buttons .btn {
        width: 100%;
    }

}