/* ========================================
   GLOBAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    overflow: hidden;

    border: 2px solid #0a7c4d;

    background: white;
}

.logo-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 900;

    color: #087443;
}

.logo-text span {
    color: #e51d25;
}

.logo small {
    display: block;

    font-size: 9px;

    color: #64748b;

    font-weight: 600;
}


/* NAVIGATION */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 27px;
}

.desktop-nav > a {
    font-size: 14px;

    font-weight: 700;

    color: #475569;

    transition: 0.2s;
}

.desktop-nav > a:hover {
    color: #087443;
}

.nav-button {
    padding: 11px 17px;

    background: #e51d25;

    color: white !important;

    border-radius: 10px;
}

.nav-button:hover {
    background: #c9161d !important;
}


/* MOBILE NAV */

.mobile-menu-button {
    display: none;

    font-size: 28px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.mobile-nav {
    display: none;

    background: white;

    border-top: 1px solid #e5e7eb;

    padding: 15px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;

    padding: 12px;

    font-weight: 700;

    color: #334155;

    border-radius: 8px;
}

.mobile-nav a:hover {
    background: #f1f5f9;
}

.mobile-nav-button {
    background: #e51d25 !important;

    color: white !important;

    text-align: center;

    margin-top: 8px;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    overflow: hidden;

    color: white;

    background:
        linear-gradient(
            135deg,
            #063f2c,
            #087447 55%,
            #096c45
        );
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255,255,255,.08),
            transparent 30%
        );
}

.hero-content {
    position: relative;

    min-height: 620px;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 60px;

    padding-top: 70px;

    padding-bottom: 70px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,.2);

    background: rgba(255,255,255,.08);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}

.hero h1 {
    margin-top: 20px;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;
}

.hero h1 span {
    color: #ef2028;
}

.hero h2 {
    margin-top: 18px;

    font-size: 26px;
}

.hero p {
    max-width: 580px;

    margin-top: 18px;

    color: rgba(255,255,255,.88);

    font-size: 17px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding: 12px 20px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 800;

    transition: .25s;

    cursor: pointer;

    border: none;
}

.btn-red {
    background: #e51d25;

    color: white;

    box-shadow: 0 10px 25px rgba(229,29,37,.2);
}

.btn-red:hover {
    transform: translateY(-2px);

    background: #c9161d;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.08);

    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,.17);
}

.whatsapp-link {
    display: inline-flex;

    margin-top: 13px;

    color: #d8f5e7;

    font-weight: 700;
}

.consultation-price {
    display: inline-block;

    margin-top: 25px;

    padding: 9px 15px;

    background: #ffd900;

    color: #133b28;

    border-radius: 10px;

    font-weight: 900;
}


/* HERO IMAGE */

.hero-image-box {
    overflow: hidden;

    border-radius: 25px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.1);

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);
}

.hero-image-box > img {
    width: 100%;

    height: 370px;

    object-fit: cover;
}

.hero-image-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;
}

.hero-image-bottom div {
    padding: 22px;

    background: rgba(0,0,0,.2);
}

.hero-image-bottom div:last-child {
    background: rgba(220,20,30,.8);
}

.hero-image-bottom strong {
    display: block;

    font-size: 24px;
}

.hero-image-bottom span {
    display: block;

    margin-top: 3px;

    font-size: 13px;
}


/* ========================================
   CONTACT STRIP
======================================== */

.contact-strip {
    background: white;

    border-bottom: 1px solid #e2e8f0;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 24px 15px;

    border-right: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-right: none;
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #e9f7f0;

    color: #087443;

    font-size: 20px;
}

.contact-item small {
    display: block;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 800;
}

.contact-item strong {
    display: block;

    margin-top: 2px;

    font-size: 13px;
}


/* ========================================
   SECTIONS
======================================== */

.section {
    padding: 90px 0;
}

.bg-light {
    background: #f7faf9;
}

.section-heading {
    max-width: 700px;

    margin: auto;

    text-align: center;
}

.section-heading.left {
    margin-left: 0;

    text-align: left;
}

.section-heading > span,
.location-info > span {
    color: #e51d25;

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 900;
}

.section-heading h2 {
    margin-top: 8px;

    color: #111827;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 900;
}

.section-heading p {
    margin-top: 14px;

    color: #64748b;
}


/* ========================================
   FEATURE CARDS
======================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;
}

.feature-card {
    padding: 28px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 17px;

    box-shadow: 0 5px 18px rgba(15,23,42,.03);

    transition: .25s;
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15,23,42,.08);
}

.feature-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #e7f7ef;

    color: #087443;

    font-size: 23px;
}

.feature-card h3 {
    margin-top: 18px;

    font-size: 18px;
}

.feature-card p {
    margin-top: 8px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   SPECIALTIES
======================================== */

.specialty-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 45px;
}

.specialty-card {
    padding: 20px;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    background: white;

    transition: .25s;
}

.specialty-card:hover {
    transform: translateY(-4px);

    border-color: #b9e5cf;

    box-shadow: 0 12px 28px rgba(15,23,42,.07);
}

.specialty-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #effaf4;

    color: #087443;

    font-weight: 900;
}

.specialty-card h3 {
    margin-top: 14px;

    font-size: 15px;

    line-height: 1.4;
}

.specialty-card span {
    display: block;

    margin-top: 10px;

    color: #e51d25;

    font-size: 12px;

    font-weight: 800;
}


/* ========================================
   DOCTORS
======================================== */

.doctor-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 50px;
}

.doctor-card {
    overflow: hidden;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    box-shadow: 0 5px 20px rgba(15,23,42,.04);

    transition: .25s;
}

.doctor-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(15,23,42,.1);
}

.doctor-image {
    position: relative;

    height: 210px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #06452f,
            #087b4b
        );
}

.doctor-placeholder {
    width: 105px;
    height: 105px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,.3);

    background: rgba(255,255,255,.1);

    font-size: 48px;
}

.doctor-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 6px 10px;

    background: white;

    color: #087443;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 900;
}

.doctor-content {
    padding: 22px;
}

.doctor-specialty {
    color: #e51d25;

    text-transform: uppercase;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .8px;
}

.doctor-content h3 {
    margin-top: 6px;

    font-size: 20px;

    line-height: 1.35;
}

.qualification {
    margin-top: 7px;

    color: #64748b;

    font-size: 13px;
}

.doctor-time {
    margin-top: 15px;

    padding: 10px;

    border-radius: 9px;

    background: #f7faf9;

    font-size: 12px;

    font-weight: 700;
}

.doctor-buttons {
    display: flex;

    gap: 7px;

    margin-top: 15px;
}

.btn-small {
    flex: 1;

    padding: 10px;

    border-radius: 9px;

    text-align: center;

    font-size: 11px;

    font-weight: 800;
}

.btn-light {
    border: 1px solid #e2e8f0;

    color: #334155;
}

.btn-green {
    background: #087443;

    color: white;
}

.center-button {
    margin-top: 40px;

    text-align: center;
}


/* ========================================
   SERVICE BOXES
======================================== */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-box {
    padding: 25px;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    background: white;

    transition: .25s;
}

.service-box:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(15,23,42,.07);
}

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #fff1f2;

    color: #e51d25;

    font-size: 22px;
}

.service-box h3 {
    margin-top: 17px;

    font-size: 18px;
}

.service-box p {
    margin-top: 8px;

    font-size: 13px;

    color: #64748b;
}

.service-box a {
    display: inline-block;

    margin-top: 15px;

    font-size: 12px;

    font-weight: 900;

    color: #087443;
}


/* ========================================
   APPOINTMENT
======================================== */

.appointment-cta {
    padding: 90px 0;

    background: #043e2b;

    color: white;

    text-align: center;
}

.appointment-inner {
    max-width: 750px;

    margin: auto;
}

.appointment-icon {
    width: 60px;
    height: 60px;

    margin: auto;

    display: grid;

    place-items: center;

    background: #e51d25;

    border-radius: 15px;

    font-size: 25px;
}

.appointment-inner h2 {
    margin-top: 23px;

    font-size: 40px;

    line-height: 1.2;
}

.appointment-inner p {
    margin-top: 15px;

    color: #d8ede4;
}

.appointment-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}

.btn-white {
    background: white;

    color: #087443;
}

.btn-dark {
    background: #063f2c;

    color: white;
}


/* ========================================
   LOCATION
======================================== */

.location-card {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    overflow: hidden;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 22px;
}

.location-info {
    padding: 45px;
}

.location-info h2 {
    margin-top: 8px;

    font-size: 35px;

    line-height: 1.2;
}

.location-info > p {
    margin-top: 14px;

    color: #64748b;
}

.address {
    display: flex;

    gap: 15px;

    margin: 28px 0;
}

.address-icon {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    background: #e9f7f0;

    border-radius: 10px;
}

.address p {
    margin-top: 4px;

    color: #64748b;

    font-size: 13px;
}

.map-container {
    min-height: 400px;

    background: #e2e8f0;
}

.map-container iframe {
    display: block;

    width: 100%;

    height: 100%;
}


/* ========================================
   FINAL CTA
======================================== */

.final-cta {
    padding: 55px 0;

    background:
        linear-gradient(
            100deg,
            #d71920,
            #e51d25
        );

    color: white;
}

.final-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.final-cta h2 {
    font-size: 30px;
}

.final-cta p {
    margin-top: 5px;

    color: #ffe3e4;
}

.final-buttons {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #032d20;

    color: white;

    padding-top: 65px;

    padding-bottom: 80px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr 1.2fr;

    gap: 45px;
}

.footer-logo {
    font-size: 24px;

    font-weight: 900;
}

.footer-logo span {
    color: #ef222a;
}

.footer-column > p {
    margin-top: 12px;

    color: #b9d9cd;

    font-size: 13px;

    line-height: 1.8;
}

.footer-column h3 {
    font-size: 15px;

    margin-bottom: 17px;
}

.footer-column > a {
    display: block;

    margin-top: 10px;

    color: #b9d9cd;

    font-size: 13px;
}

.footer-column > a:hover {
    color: white;
}

.social-icons {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}

.social-icons a {
    padding: 7px 10px;

    border-radius: 7px;

    background: rgba(255,255,255,.08);

    font-size: 11px;
}

.footer-bottom {
    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    text-align: center;

    color: #9bc6b6;

    font-size: 12px;
}


/* ========================================
   MOBILE ACTION BAR
======================================== */

.mobile-action-bar {
    display: none;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 15px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .specialty-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .doctor-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-box > img {
        height: 280px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .contact-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-item {
        border-bottom: 1px solid #e2e8f0;
    }

    .contact-item:nth-child(2) {
        border-right: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .specialty-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .doctor-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .mobile-action-bar {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 5px;

        padding: 7px;

        background: white;

        border-top: 1px solid #ddd;

        box-shadow:
            0 -5px 20px rgba(0,0,0,.12);
    }

    .mobile-action-bar a {
        display: flex;

        align-items: center;

        justify-content: center;

        flex-direction: column;

        gap: 1px;

        min-height: 50px;

        border-radius: 7px;

        color: white;

        background: #087443;

        font-size: 19px;

        line-height: 1;
    }

    .mobile-action-bar a:nth-child(2) {
        background: #16a34a;
    }

    .mobile-action-bar a:nth-child(3) {
        background: #e51d25;
    }

    .mobile-action-bar span {
        font-size: 9px;

        font-weight: 900;
    }

    .site-footer {
        padding-bottom: 100px;
    }

}


@media (max-width: 500px) {

    .container {
        width: 92%;
    }

    .section {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .hero p {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        border-right: none;
    }

    .specialty-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .appointment-inner h2 {
        font-size: 30px;
    }

    .location-info {
        padding: 30px 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

}



.scroll-animation {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;
}

.show-animation {
    opacity: 1;
    transform: translateY(0);
}




/* =========================================================
   DOCTORS PAGE — PREMIUM MEDICAL DESIGN
========================================================= */

.doctors-page {
    background: #f6faf8;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0 75px;
    background:
        linear-gradient(
            120deg,
            #043d2b 0%,
            #087448 55%,
            #0b8051 100%
        );
    color: #ffffff;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: -220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    left: -100px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(229,29,37,0.10);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.page-hero-content > span {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffe000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.page-hero h1 {
    margin-top: 16px;
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.page-hero p {
    max-width: 630px;
    margin-top: 18px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.breadcrumb a {
    color: #ffffff;
    font-weight: 700;
}


/* =========================================================
   SEARCH AREA
========================================================= */

.doctors-page .doctor-search-box {
    max-width: 850px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    width: 100%;
    height: 62px;
    padding: 0 24px 0 58px;

    border: 1px solid #d9e5df;
    border-radius: 16px;

    outline: none;
    background: #ffffff;

    color: #14261f;
    font-size: 14px;

    box-shadow:
        0 12px 35px rgba(14, 72, 48, 0.07);

    transition: all 0.25s ease;
}

.search-wrapper input::placeholder {
    color: #94a3a0;
}

.search-wrapper input:focus {
    border-color: #0b7a4d;

    box-shadow:
        0 0 0 4px rgba(11,122,77,0.09),
        0 15px 35px rgba(14,72,48,0.08);
}

.search-icon {
    position: absolute;
    left: 21px;
    top: 50%;
    transform: translateY(-50%);

    z-index: 2;

    color: #0b7a4d;
    font-size: 20px;
}


/* =========================================================
   FILTER BAR
========================================================= */

.doctor-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 9px;

    max-width: 1100px;
    margin: 25px auto 0;
}

.doctor-filter {
    appearance: none;

    padding: 9px 15px;

    border: 1px solid #dbe6e1;
    border-radius: 50px;

    background: #ffffff;
    color: #52625b;

    font-size: 11px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.doctor-filter:hover {
    border-color: #0b7a4d;
    color: #0b7a4d;
    transform: translateY(-1px);
}

.doctor-filter.active {
    border-color: #0b7a4d;
    background: #0b7a4d;
    color: #ffffff;
}


/* =========================================================
   RESULT COUNT
========================================================= */

.doctor-results {
    margin: 35px 0 22px;

    color: #718078;

    font-size: 13px;
    text-align: center;
}

.doctor-results strong {
    color: #0b7a4d;
    font-size: 18px;
}


/* =========================================================
   DOCTOR DIRECTORY
========================================================= */

.doctor-directory {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    align-items: stretch;
}


/* =========================================================
   MAIN CARD
========================================================= */

.doctor-profile-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3ebe7;

    border-radius: 22px;

    box-shadow:
        0 8px 28px rgba(12, 51, 36, 0.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.doctor-profile-card:hover {
    transform: translateY(-7px);

    border-color: #bde2d0;

    box-shadow:
        0 20px 50px rgba(12, 51, 36, 0.11);
}


/* =========================================================
   DOCTOR IMAGE AREA
========================================================= */

.doctor-profile-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #063e2b,
            #0b7650
        );
}

.doctor-profile-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 90px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.38),
            transparent
        );

    pointer-events: none;
}

.doctor-profile-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.doctor-profile-card:hover
.doctor-profile-image img {
    transform: scale(1.045);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.doctor-photo-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255,255,255,0.10),
            transparent 34%
        );
}

.doctor-photo-placeholder span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.08);

    font-size: 54px;

    backdrop-filter: blur(5px);
}

.doctor-photo-placeholder small {
    margin-top: 12px;

    color: rgba(255,255,255,0.75);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   SPECIALIST BADGE
========================================================= */

.profile-specialist-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    padding: 7px 12px;

    border-radius: 50px;

    background: #ffffff;

    color: #087448;

    font-size: 10px;
    font-weight: 900;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.12);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.doctor-profile-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px;
}

.profile-specialty {
    display: inline-block;

    color: #e31d25;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.doctor-profile-content h2 {
    margin-top: 7px;

    color: #15211d;

    font-size: 21px;
    font-weight: 900;

    line-height: 1.28;
}

.profile-qualification {
    margin-top: 7px;

    color: #627169;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.6;
}


/* =========================================================
   DOCTOR DETAILS
========================================================= */

.profile-details {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 17px;
    padding-top: 16px;

    border-top: 1px solid #edf1ef;
}

.profile-details div {
    display: flex;

    align-items: flex-start;

    gap: 9px;
}

.profile-details div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    margin-top: 1px;

    border-radius: 50%;

    background: #e5f5ec;

    color: #087448;

    font-size: 9px;
    font-weight: 900;
}

.profile-details p {
    color: #66736d;

    font-size: 11px;
    line-height: 1.55;
}


/* =========================================================
   TIMING BOX
========================================================= */

.profile-timing {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: auto;
    padding-top: 20px;
}

.profile-timing::before {
    content: "";
    display: none;
}

.timing-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background: #e8f6ef;

    font-size: 17px;
}

.profile-timing small {
    display: block;

    color: #94a19b;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .7px;
}

.profile-timing strong {
    display: block;

    margin-top: 2px;

    color: #25362f;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   BUTTONS
========================================================= */

.profile-actions {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 7px;

    margin-top: 17px;
}

.profile-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 7px 5px;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 900;

    text-align: center;

    transition:
        transform .2s ease,
        background .2s ease;
}

.profile-btn:hover {
    transform: translateY(-1px);
}

.profile-call {
    background: #edf8f2;
    color: #087448;
}

.profile-call:hover {
    background: #dff1e8;
}

.profile-whatsapp {
    background: #ecfaf0;
    color: #159447;
}

.profile-whatsapp:hover {
    background: #dcf4e3;
}

.profile-appointment {
    background: #e31d25;
    color: #ffffff;
}

.profile-appointment:hover {
    background: #c9161d;
}


/* =========================================================
   NO RESULTS
========================================================= */

.no-doctors {
    display: none;

    margin-top: 30px;
    padding: 75px 25px;

    border: 1px dashed #cfdcd5;
    border-radius: 20px;

    background: #ffffff;

    text-align: center;
}

.no-doctors.active {
    display: block;
}

.no-doctors > div {
    font-size: 46px;
}

.no-doctors h3 {
    margin-top: 12px;

    color: #17251f;

    font-size: 23px;
    font-weight: 900;
}

.no-doctors p {
    margin-top: 5px;

    color: #718078;

    font-size: 13px;
}


/* =========================================================
   DOCTOR CTA
========================================================= */

.doctors-page + .appointment-cta {
    margin-top: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .doctor-directory {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .doctor-directory {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctor-profile-image {
        height: 290px;
    }

    .doctor-profile-content {
        padding: 22px;
    }

    .doctor-filters {
        justify-content: flex-start;
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 6px;

        scrollbar-width: none;
    }

    .doctor-filters::-webkit-scrollbar {
        display: none;
    }

    .doctor-filter {
        white-space: nowrap;
        flex-shrink: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .doctor-profile-image {
        height: 250px;
    }

    .doctor-profile-content h2 {
        font-size: 19px;
    }

    .profile-actions {
        gap: 5px;
    }

    .profile-btn {
        min-height: 40px;
        font-size: 9px;
    }

    .search-wrapper input {
        height: 55px;
        font-size: 13px;
    }

}










/* =========================================================
   SERVICES PAGE
========================================================= */

.services-hero {
    padding-bottom: 80px;
}


/* =========================================================
   INTRO
========================================================= */

.services-intro {
    padding: 75px 0 40px;

    background: #ffffff;
}

.services-intro-grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 60px;

    align-items: center;
}

.section-label {
    display: inline-block;

    color: #e21e26;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.services-intro h2 {
    max-width: 650px;

    margin-top: 10px;

    color: #13231d;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 900;
}

.services-intro p {
    max-width: 650px;

    margin-top: 17px;

    color: #66746e;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   STATS
========================================================= */

.services-stat-box {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border:
        1px solid #dfe9e4;

    border-radius: 18px;

    background: #f6faf8;
}

.service-stat {
    padding: 25px 16px;

    text-align: center;

    border-right:
        1px solid #dfe9e4;
}

.service-stat:last-child {
    border-right: none;
}

.service-stat strong {
    display: block;

    color: #087448;

    font-size: 27px;

    font-weight: 900;
}

.service-stat span {
    display: block;

    margin-top: 4px;

    color: #738079;

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   QUICK SERVICES
========================================================= */

.quick-services {
    padding: 25px 0 80px;

    background: #ffffff;
}

.quick-service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 13px;
}

.quick-service-item {
    display: block;

    padding: 22px;

    border:
        1px solid #e1eae5;

    border-radius: 15px;

    background: #ffffff;

    transition: .25s;
}

.quick-service-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(10,60,40,.07);

    border-color: #b9dfcc;
}

.quick-service-item > div {
    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #087448;

    font-size: 23px;
}

.quick-service-item > div span {
    color: #a6b3ad;

    font-size: 9px;

    font-weight: 900;
}

.quick-service-item strong {
    display: block;

    margin-top: 14px;

    color: #17251f;

    font-size: 14px;
}

.quick-service-item small {
    display: block;

    margin-top: 4px;

    color: #849089;

    font-size: 11px;
}


/* =========================================================
   SERVICES DIRECTORY
========================================================= */

.services-directory {
    background:
        #f6faf8;
}


/* SEARCH */

.services-search {
    position: relative;

    max-width: 700px;

    margin: 42px auto 0;
}

.services-search span {
    position: absolute;

    left: 19px;

    top: 50%;

    transform: translateY(-50%);

    color: #087448;

    font-size: 18px;
}

.services-search input {
    width: 100%;

    height: 58px;

    padding:
        0 20px 0 53px;

    border:
        1px solid #d8e5df;

    border-radius: 14px;

    outline: none;

    background: white;

    color: #17251f;

    font-size: 13px;

    box-shadow:
        0 8px 25px rgba(13,63,43,.05);
}

.services-search input:focus {
    border-color: #087448;

    box-shadow:
        0 0 0 4px rgba(8,116,72,.08);
}


/* FILTERS */

.service-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}

.service-filter {
    padding: 9px 17px;

    border:
        1px solid #d8e3de;

    border-radius: 50px;

    background: #ffffff;

    color: #627069;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition: .2s;
}

.service-filter:hover {
    border-color: #087448;

    color: #087448;
}

.service-filter.active {
    background: #087448;

    color: white;

    border-color: #087448;
}


/* GRID */

.services-directory-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-top: 35px;
}


/* CARD */

.service-detail-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 410px;

    padding: 26px;

    overflow: hidden;

    border:
        1px solid #dfe9e4;

    border-radius: 20px;

    background: white;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.service-detail-card::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    top: -60px;
    right: -50px;

    border-radius: 50%;

    background: rgba(8,116,72,.06);
}

.service-detail-card:hover {
    transform: translateY(-6px);

    border-color: #b9dfcd;

    box-shadow:
        0 20px 45px rgba(12,54,38,.09);
}


/* CARD TOP */

.service-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.service-main-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 15px;

    background: #e8f6ef;

    color: #087448;

    font-size: 25px;

    font-weight: 900;
}

.service-card-number {
    color: #b7c4be;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* CATEGORY */

.service-card-category {
    display: inline-block;

    margin-top: 22px;

    color: #e31d25;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* TITLE */

.service-detail-card h3 {
    margin-top: 7px;

    color: #17251f;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 900;
}


/* DESCRIPTION */

.service-detail-card > p {
    margin-top: 10px;

    color: #69766f;

    font-size: 12px;

    line-height: 1.7;
}


/* INCLUDED */

.service-includes {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid #edf1ef;
}

.service-includes div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #617068;

    font-size: 11px;

    line-height: 1.4;
}

.service-includes span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    border-radius: 50%;

    background: #e5f5ec;

    color: #087448;

    font-size: 8px;

    font-weight: 900;
}


/* BOTTOM */

.service-card-bottom {
    margin-top: auto;

    padding-top: 20px;
}

.service-card-bottom a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 14px;

    border-radius: 10px;

    background: #f3f9f6;

    color: #087448;

    font-size: 11px;

    font-weight: 900;

    transition: .2s;
}

.service-card-bottom a:hover {
    background: #087448;

    color: white;
}

.service-card-bottom a span {
    font-size: 15px;
}


/* =========================================================
   NO SERVICES
========================================================= */

.no-services {
    display: none;

    padding: 70px 20px;

    text-align: center;
}

.no-services.active {
    display: block;
}

.no-services > div {
    font-size: 43px;
}

.no-services h3 {
    margin-top: 12px;

    color: #17251f;

    font-size: 23px;
}

.no-services p {
    margin-top: 5px;

    color: #738079;

    font-size: 13px;
}

.no-services .btn {
    margin-top: 20px;
}


/* =========================================================
   DIAGNOSTIC
========================================================= */

.diagnostic-section {
    padding: 90px 0;

    background:
        #ffffff;
}

.diagnostic-box {
    position: relative;

    display: grid;

    grid-template-columns:
        1.3fr .7fr;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #053e2c,
            #087449
        );

    color: white;

    box-shadow:
        0 25px 55px rgba(6,62,44,.16);
}

.diagnostic-content {
    position: relative;

    z-index: 2;

    padding: 55px;
}

.section-label.light {
    color: #ffdd00;
}

.diagnostic-content h2 {
    max-width: 650px;

    margin-top: 9px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 900;
}

.diagnostic-content > p {
    max-width: 600px;

    margin-top: 13px;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    line-height: 1.8;
}

.diagnostic-features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px 20px;

    margin-top: 25px;
}

.diagnostic-features div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #e5f5ee;

    font-size: 12px;

    font-weight: 700;
}

.diagnostic-features span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    color: #8ff0be;

    font-size: 9px;
}

.diagnostic-button {
    display: inline-flex;

    margin-top: 28px;

    padding: 13px 20px;

    border-radius: 10px;

    background: #e31d25;

    color: white;

    font-size: 12px;

    font-weight: 900;

    transition: .2s;
}

.diagnostic-button:hover {
    background: #c9161d;

    transform: translateY(-2px);
}


/* VISUAL */

.diagnostic-visual {
    position: relative;

    min-height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: rgba(0,0,0,.09);
}

.diagnostic-visual::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 50%;
}

.diagnostic-visual::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 50%;
}

.diagnostic-circle {
    position: relative;

    z-index: 3;

    width: 160px;
    height: 160px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(8px);

    text-align: center;
}

.diagnostic-circle span {
    font-size: 38px;
}

.diagnostic-circle strong {
    margin-top: 4px;

    font-size: 14px;

    letter-spacing: 2px;
}

.diagnostic-circle small {
    margin-top: 2px;

    color: rgba(255,255,255,.6);

    font-size: 9px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    background: #f6faf8;
}

.consultation-steps {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    margin-top: 50px;
}

.consultation-step {
    text-align: center;
}

.step-number {
    color: #d4dfda;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.step-icon {
    width: 62px;
    height: 62px;

    margin: 8px auto 0;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background: white;

    border:
        1px solid #dfe9e4;

    color: #087448;

    font-size: 24px;

    box-shadow:
        0 7px 20px rgba(12,54,38,.06);
}

.consultation-step h3 {
    margin-top: 15px;

    color: #1b2a24;

    font-size: 16px;

    font-weight: 900;
}

.consultation-step p {
    max-width: 200px;

    margin: 7px auto 0;

    color: #728078;

    font-size: 11px;

    line-height: 1.65;
}

.step-line {
    width: 55px;

    height: 1px;

    background:
        #cbdad3;
}


/* =========================================================
   CTA
========================================================= */

.services-cta {
    padding: 75px 0;

    background:
        #e31d25;

    color: white;
}

.services-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.services-cta-inner > div:first-child {
    max-width: 700px;
}

.services-cta-inner span {
    color: #ffd5d7;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 900;
}

.services-cta-inner h2 {
    margin-top: 8px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 900;
}

.services-cta-inner p {
    margin-top: 9px;

    color: #ffe3e4;

    font-size: 13px;
}

.services-cta-buttons {
    display: flex;

    flex-shrink: 0;

    gap: 9px;

    flex-wrap: wrap;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .services-directory-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .quick-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .services-intro {
        padding-top: 60px;
    }

    .services-intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .services-intro h2 {
        font-size: 31px;
    }

    .services-stat-box {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .service-stat {
        padding: 19px 8px;
    }

    .service-stat strong {
        font-size: 21px;
    }

    .service-stat span {
        font-size: 8px;
    }

    .quick-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-directory-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        min-height: auto;
    }

    .diagnostic-box {
        grid-template-columns: 1fr;
    }

    .diagnostic-content {
        padding: 35px 28px;
    }

    .diagnostic-content h2 {
        font-size: 29px;
    }

    .diagnostic-visual {
        min-height: 280px;
    }

    .consultation-steps {
        display: grid;

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .services-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .services-cta-inner h2 {
        font-size: 29px;
    }

}


@media (max-width: 500px) {

    .services-stat-box {
        grid-template-columns: 1fr;
    }

    .service-stat {
        border-right: none;

        border-bottom:
            1px solid #dfe9e4;
    }

    .service-stat:last-child {
        border-bottom: none;
    }

    .quick-service-grid {
        grid-template-columns: 1fr;
    }

    .service-filters {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 6px;
    }

    .service-filter {
        flex-shrink: 0;

        white-space: nowrap;
    }

    .diagnostic-features {
        grid-template-columns: 1fr;
    }

    .services-cta-buttons {
        width: 100%;
    }

    .services-cta-buttons .btn {
        width: 100%;
    }

}














/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    padding: 95px 0;

    background: #ffffff;
}

.about-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;

    align-items: center;
}

.about-label {
    display: inline-block;

    color: #e31d25;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.about-intro-content h2 {
    max-width: 600px;

    margin-top: 10px;

    color: #14251f;

    font-size: 46px;

    line-height: 1.13;

    font-weight: 900;
}

.about-intro-content p {
    max-width: 610px;

    margin-top: 15px;

    color: #68766f;

    font-size: 14px;

    line-height: 1.85;
}

.about-contact-row {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.about-contact {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid #dce7e1;

    border-radius: 12px;

    background: #f7faf8;

    transition: .2s;
}

.about-contact:hover {
    border-color: #badfcd;

    transform: translateY(-2px);
}

.about-contact > span {
    display: grid;

    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #e5f5ec;

    font-size: 17px;
}

.about-contact small {
    display: block;

    color: #9aa7a1;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .8px;
}

.about-contact strong {
    display: block;

    margin-top: 2px;

    color: #25352e;

    font-size: 11px;
}


/* =========================================================
   VISUAL
========================================================= */

.about-intro-visual {
    position: relative;

    padding: 15px;
}

.about-image-main {
    height: 480px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #063f2d,
            #0b8051
        );

    box-shadow:
        0 25px 55px rgba(9,64,44,.14);
}

.about-image-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    color: white;

    background:
        linear-gradient(
            135deg,
            #06432f,
            #0a8051
        );
}

.about-image-placeholder div {
    font-size: 75px;
}

.about-image-placeholder span {
    margin-top: 10px;

    font-size: 18px;

    font-weight: 900;
}

.about-floating-card {
    position: absolute;

    left: -8px;
    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 20px;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(15,23,42,.13);

    border:
        1px solid #e4ebe8;
}

.about-floating-card strong {
    color: #e31d25;

    font-size: 25px;

    font-weight: 900;
}

.about-floating-card span {
    max-width: 110px;

    color: #69766f;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================================
   MISSION
========================================================= */

.mission-section {
    padding: 85px 0;

    background: #f5faf7;
}

.mission-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 18px;
}

.mission-card {
    min-height: 330px;

    border-radius: 20px;
}

.mission-main {
    padding: 38px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #053d2a,
            #087649
        );
}

.mission-icon {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: #e31d25;

    color: white;

    font-size: 22px;
}

.mission-main > span {
    display: block;

    margin-top: 22px;

    color: #ffdc00;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.mission-main h2 {
    max-width: 520px;

    margin-top: 8px;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 900;
}

.mission-main p {
    max-width: 510px;

    margin-top: 13px;

    color: rgba(255,255,255,.78);

    font-size: 13px;

    line-height: 1.75;
}

.mission-side-card {
    padding: 32px;

    border:
        1px solid #dce8e2;

    border-radius: 20px;

    background: white;
}

.mission-side-icon {
    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: #e8f6ef;

    font-size: 22px;
}

.mission-side-card h3 {
    margin-top: 25px;

    color: #15241e;

    font-size: 19px;
}

.mission-side-card p {
    margin-top: 8px;

    color: #6d7973;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   VALUES
========================================================= */

.about-values {
    background: #ffffff;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;
}

.about-value-card {
    position: relative;

    min-height: 245px;

    padding: 28px;

    overflow: hidden;

    border:
        1px solid #e0e9e4;

    border-radius: 18px;

    background: white;

    transition: .25s;
}

.about-value-card:hover {
    transform: translateY(-5px);

    border-color: #b8dec9;

    box-shadow:
        0 18px 38px rgba(13,62,43,.07);
}

.about-value-number {
    position: absolute;

    top: 18px;
    right: 22px;

    color: #e3ebe7;

    font-size: 27px;

    font-weight: 900;
}

.about-value-icon {
    width: 51px;
    height: 51px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background: #e8f6ef;

    color: #087448;

    font-size: 22px;
}

.about-value-card h3 {
    margin-top: 21px;

    color: #17261f;

    font-size: 17px;

    font-weight: 900;
}

.about-value-card p {
    margin-top: 7px;

    color: #718078;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CLINIC FEATURES
========================================================= */

.clinic-features-section {
    padding: 95px 0;

    background: #f6faf8;
}

.clinic-feature-grid {
    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 70px;

    align-items: center;
}

.clinic-feature-image {
    height: 500px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #06432e,
            #0a7950
        );
}

.clinic-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.clinic-large-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    flex-direction: column;

    color: white;
}

.clinic-large-placeholder span {
    font-size: 75px;
}

.clinic-large-placeholder strong {
    margin-top: 10px;

    font-size: 20px;
}

.clinic-feature-content h2 {
    max-width: 580px;

    margin-top: 9px;

    font-size: 40px;

    color: #16261f;

    line-height: 1.18;

    font-weight: 900;
}

.clinic-feature-content > p {
    max-width: 590px;

    margin-top: 14px;

    color: #68766f;

    font-size: 14px;

    line-height: 1.8;
}

.clinic-feature-list {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 27px;
}

.clinic-feature-list > div {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}

.clinic-feature-list > div > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    flex: 0 0 23px;

    margin-top: 1px;

    border-radius: 50%;

    background: #e3f4ea;

    color: #087448;

    font-size: 10px;

    font-weight: 900;
}

.clinic-feature-list strong {
    display: block;

    color: #26362f;

    font-size: 13px;
}

.clinic-feature-list small {
    display: block;

    margin-top: 2px;

    color: #7a867f;

    font-size: 11px;
}

.clinic-feature-content .btn {
    margin-top: 28px;
}


/* =========================================================
   OPENING CEREMONY
========================================================= */

.opening-section {
    padding: 90px 0;

    background: #ffffff;
}

.opening-card {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #043d2a,
            #087348
        );

    color: white;

    box-shadow:
        0 20px 50px rgba(6,61,42,.15);
}

.opening-left {
    padding: 50px;
}

.opening-small {
    color: #ffe000;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.opening-left h2 {
    margin-top: 10px;

    font-size: 37px;

    line-height: 1.2;

    font-weight: 900;
}

.opening-date {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 27px;
}

.opening-date > strong {
    font-size: 64px;

    line-height: 1;

    color: #ffffff;
}

.opening-date div {
    border-left:
        1px solid rgba(255,255,255,.25);

    padding-left: 14px;
}

.opening-date span {
    display: block;

    color: #ffdd00;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.opening-date small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.65);

    font-size: 12px;
}

.opening-time {
    display: inline-block;

    margin-top: 18px;

    padding: 8px 12px;

    background: rgba(255,255,255,.1);

    border-radius: 8px;

    font-size: 12px;

    font-weight: 800;
}

.opening-left > p {
    max-width: 530px;

    margin-top: 20px;

    color: rgba(255,255,255,.76);

    font-size: 13px;

    line-height: 1.8;
}

.opening-right {
    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 15px;

    background: rgba(0,0,0,.10);
}

.guest-box {
    padding: 18px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 14px;

    background: rgba(255,255,255,.06);
}

.guest-box > span {
    color: #a8ebc9;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.guest-box h3 {
    margin-top: 5px;

    color: white;

    font-size: 16px;

    line-height: 1.4;
}

.guest-box p {
    margin-top: 3px;

    color: rgba(255,255,255,.64);

    font-size: 10px;

    line-height: 1.5;
}

.opening-button {
    display: inline-flex;

    justify-content: center;

    padding: 12px 17px;

    border-radius: 10px;

    background: #e31d25;

    color: white;

    font-size: 11px;

    font-weight: 900;

    transition: .2s;
}

.opening-button:hover {
    background: #c9161d;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    background: #f6faf8;
}

.gallery-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}

.gallery-filter {
    padding: 9px 17px;

    border:
        1px solid #d7e3dd;

    border-radius: 50px;

    background: white;

    color: #66756d;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition: .2s;
}

.gallery-filter:hover {
    border-color: #087448;

    color: #087448;
}

.gallery-filter.active {
    background: #087448;

    border-color: #087448;

    color: white;
}


/* GRID */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 230px;

    gap: 15px;

    margin-top: 35px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 17px;

    cursor: pointer;

    background:
        #dce8e2;
}

.gallery-item.gallery-large {
    grid-row:
        span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px 20px 20px;

    color: white;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.68),
            transparent
        );
}

.gallery-overlay span {
    display: block;

    color: #b6f1d0;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}

.gallery-overlay strong {
    display: block;

    margin-top: 3px;

    font-size: 15px;
}


/* GALLERY NOTE */

.gallery-note {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    text-align: center;
}

.gallery-note strong {
    color: #26352f;

    font-size: 11px;
}

.gallery-note span {
    color: #7a8781;

    font-size: 10px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(0,0,0,.9);
}

.gallery-lightbox img {
    max-width: 92vw;
    max-height: 88vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);
}

.lightbox-close {
    position: fixed;

    top: 20px;
    right: 24px;

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: rgba(255,255,255,.1);

    color: white;

    font-size: 30px;

    cursor: pointer;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.about-bottom-cta {
    padding: 70px 0;

    background: #e31d25;

    color: white;
}

.about-bottom-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.about-bottom-inner > div:first-child span {
    color: #ffd2d4;

    font-size: 10px;

    letter-spacing: 1.6px;

    font-weight: 900;
}

.about-bottom-inner h2 {
    margin-top: 7px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 900;
}

.about-bottom-inner p {
    margin-top: 7px;

    color: #ffe3e4;

    font-size: 13px;
}

.about-bottom-buttons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-intro-visual {
        max-width: 700px;

        margin: auto;
    }

    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mission-main {
        grid-column: span 2;
    }

    .about-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .clinic-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .clinic-feature-image {
        max-width: 700px;

        margin: auto;
    }

    .opening-card {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-intro {
        padding: 65px 0;
    }

    .about-intro-content h2 {
        font-size: 34px;
    }

    .about-image-main {
        height: 360px;
    }

    .about-floating-card {
        left: 8px;

        bottom: 18px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-main {
        grid-column: auto;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .clinic-features-section {
        padding: 65px 0;
    }

    .clinic-feature-image {
        height: 350px;
    }

    .clinic-feature-content h2 {
        font-size: 31px;
    }

    .opening-left {
        padding: 35px 25px;
    }

    .opening-right {
        padding: 25px;
    }

    .opening-left h2 {
        font-size: 29px;
    }

    .opening-date > strong {
        font-size: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 240px;
    }

    .gallery-item.gallery-large {
        grid-row: span 1;
    }

    .gallery-note {
        flex-direction: column;

        gap: 3px;
    }

    .about-bottom-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .about-bottom-inner h2 {
        font-size: 29px;
    }

    .about-bottom-buttons {
        width: 100%;
    }

    .about-bottom-buttons .btn {
        flex: 1;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .about-contact-row {
        flex-direction: column;
    }

    .about-contact {
        width: 100%;
    }

    .mission-main {
        padding: 28px;
    }

    .mission-main h2 {
        font-size: 27px;
    }

    .about-value-card {
        min-height: 220px;
    }

    .opening-date {
        gap: 10px;
    }

    .opening-date > strong {
        font-size: 44px;
    }

    .opening-date div {
        padding-left: 10px;
    }

    .gallery-filters {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .gallery-filter {
        white-space: nowrap;

        flex-shrink: 0;
    }

}










/* =========================================================
   CONTACT PAGE
========================================================= */


/* =========================================================
   TOP CONTACT CARDS
========================================================= */

.contact-top-section {
    padding: 45px 0 25px;

    background: #f6faf8;
}

.contact-card-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.contact-big-card {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 105px;

    padding: 18px;

    border:
        1px solid #dce7e2;

    border-radius: 16px;

    background: white;

    transition: .25s;

    box-shadow:
        0 5px 20px rgba(10,60,40,.035);
}

.contact-big-card:hover {
    transform: translateY(-4px);

    border-color: #b8dcc9;

    box-shadow:
        0 14px 32px rgba(10,60,40,.08);
}

.contact-big-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #e8f6ef;

    font-size: 20px;
}

.contact-big-icon.red {
    background: #fff0f1;
}

.contact-big-icon.whatsapp {
    background: #eaf8ed;
}

.contact-big-card span {
    display: block;

    color: #9ba8a2;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .9px;
}

.contact-big-card strong {
    display: block;

    margin-top: 2px;

    color: #182720;

    font-size: 14px;

    line-height: 1.4;
}

.contact-big-card small {
    display: block;

    margin-top: 2px;

    color: #7b8882;

    font-size: 9px;
}


/* =========================================================
   APPOINTMENT
========================================================= */

.appointment-page-section {
    padding: 90px 0;

    background: white;
}

.appointment-page-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 65px;

    align-items: start;
}


/* LEFT */

.contact-label {
    display: inline-block;

    color: #e31d25;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.appointment-info h2 {
    margin-top: 9px;

    color: #15251f;

    font-size: 42px;

    line-height: 1.14;

    font-weight: 900;
}

.appointment-info > p {
    max-width: 520px;

    margin-top: 15px;

    color: #6b7972;

    font-size: 14px;

    line-height: 1.85;
}


/* BENEFITS */

.appointment-benefits {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 35px;
}

.appointment-benefits > div {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.appointment-benefits > div > span {
    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    margin-top: 2px;

    border-radius: 50%;

    background: #e5f5ec;

    color: #087448;

    font-size: 10px;

    font-weight: 900;
}

.appointment-benefits strong {
    display: block;

    color: #24342d;

    font-size: 13px;
}

.appointment-benefits small {
    display: block;

    margin-top: 2px;

    color: #829089;

    font-size: 10px;

    line-height: 1.5;
}


/* DIRECT CONTACT */

.appointment-direct-contact {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    padding: 15px;

    max-width: 350px;

    border-radius: 13px;

    background: #f5faf7;

    border:
        1px solid #dfeae5;
}

.appointment-direct-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: #e7f5ed;
}

.appointment-direct-contact small {
    display: block;

    color: #899790;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;
}

.appointment-direct-contact a {
    display: block;

    margin-top: 2px;

    color: #087448;

    font-size: 15px;

    font-weight: 900;
}


/* =========================================================
   APPOINTMENT FORM CARD
========================================================= */

.appointment-form-card {
    padding: 30px;

    border:
        1px solid #dfe8e4;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 18px 50px rgba(11,59,40,.08);
}

.form-card-header {
    padding-bottom: 20px;

    border-bottom:
        1px solid #edf1ef;
}

.form-card-header span {
    color: #087448;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.form-card-header h3 {
    margin-top: 6px;

    color: #16251f;

    font-size: 23px;

    font-weight: 900;
}


/* FORM */

#appointmentForm {
    padding-top: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #33423b;

    font-size: 11px;

    font-weight: 800;
}

.form-group sup {
    color: #e31d25;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid #dce5e1;

    border-radius: 10px;

    background: #fbfdfc;

    color: #1f2d27;

    font-family: inherit;

    font-size: 12px;

    outline: none;

    transition: .2s;
}

.form-group input,
.form-group select {
    height: 47px;

    padding:
        0 13px;
}

.form-group textarea {
    min-height: 105px;

    padding: 12px 13px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #087448;

    background: white;

    box-shadow:
        0 0 0 3px rgba(8,116,72,.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a2aea8;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


/* CHECKBOX */

.form-checkbox {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #69776f;

    font-size: 10px;

    line-height: 1.5;

    cursor: pointer;
}

.form-checkbox input {
    flex: 0 0 auto;

    margin-top: 2px;
}


/* SUBMIT */

.appointment-submit {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 18px;

    padding: 12px 17px;

    border: none;

    border-radius: 10px;

    background: #e31d25;

    color: white;

    font-family: inherit;

    font-size: 12px;

    font-weight: 900;

    cursor: pointer;

    transition: .2s;
}

.appointment-submit:hover {
    background: #c9161d;

    transform: translateY(-1px);
}

.form-note {
    margin-top: 11px;

    color: #95a19b;

    font-size: 9px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   CLINIC CONTACT
========================================================= */

.clinic-contact-section {
    padding: 90px 0;

    background: #f6faf8;
}

.clinic-contact-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    overflow: hidden;

    border:
        1px solid #dce7e2;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 10px 35px rgba(10,60,40,.05);
}


/* DETAILS */

.clinic-details {
    padding: 42px;
}

.clinic-details h2 {
    margin-top: 8px;

    color: #15251f;

    font-size: 35px;

    line-height: 1.2;

    font-weight: 900;
}

.clinic-details > p {
    margin-top: 12px;

    color: #707c76;

    font-size: 13px;

    line-height: 1.7;
}

.clinic-detail-list {
    display: flex;

    flex-direction: column;

    gap: 17px;

    margin-top: 28px;
}

.clinic-detail-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.clinic-detail-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: #e8f6ef;

    font-size: 17px;
}

.clinic-detail-item small {
    display: block;

    color: #98a49e;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;
}

.clinic-detail-item strong,
.clinic-detail-item a {
    display: block;

    margin-top: 2px;

    color: #27372f;

    font-size: 12px;

    font-weight: 900;
}

.clinic-detail-item a {
    color: #087448;

    font-size: 15px;
}

.clinic-detail-item p {
    margin-top: 2px;

    color: #748079;

    font-size: 10px;

    line-height: 1.5;
}


/* BUTTONS */

.clinic-contact-buttons {
    display: flex;

    gap: 8px;

    margin-top: 28px;

    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #18a34a;

    color: white;
}

.btn-whatsapp:hover {
    background: #14863e;
}


/* MAP */

.clinic-map-box {
    min-height: 500px;

    background: #dfe8e3;
}

.clinic-map-box iframe {
    display: block;

    width: 100%;
    height: 100%;
}


/* =========================================================
   INFORMATION
========================================================= */

.contact-info-section {
    padding: 65px 0;

    background: white;
}

.contact-info-inner {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    align-items: center;
}

.contact-info-inner > div:first-child span {
    color: #e31d25;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;
}

.contact-info-inner h2 {
    margin-top: 8px;

    color: #17261f;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 900;
}

.contact-info-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-info-list > div {
    display: grid;

    grid-template-columns:
        38px 1fr;

    gap: 10px;

    padding-bottom: 15px;

    border-bottom:
        1px solid #edf1ef;
}

.contact-info-list > div:last-child {
    border-bottom: none;
}

.contact-info-list strong {
    color: #d9e3de;

    font-size: 12px;
}

.contact-info-list p {
    color: #68766f;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 72px 0;

    background: #e31d25;

    color: white;
}

.contact-final-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}

.contact-final-inner span {
    color: #ffd5d6;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.contact-final-inner h2 {
    margin-top: 7px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 900;
}

.contact-final-inner p {
    margin-top: 7px;

    color: #ffe4e4;

    font-size: 12px;
}

.contact-final-buttons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .contact-card-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .appointment-page-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .appointment-info {
        max-width: 750px;
    }

    .clinic-contact-grid {
        grid-template-columns: 1fr;
    }

    .clinic-map-box {
        min-height: 400px;
    }

    .contact-info-inner {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-big-card {
        min-height: 90px;
    }

    .appointment-page-section {
        padding: 65px 0;
    }

    .appointment-info h2 {
        font-size: 33px;
    }

    .appointment-form-card {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .clinic-details {
        padding: 30px 25px;
    }

    .clinic-details h2 {
        font-size: 30px;
    }

    .clinic-map-box {
        min-height: 350px;
    }

    .contact-final-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-final-inner h2 {
        font-size: 29px;
    }

}


@media (max-width: 450px) {

    .contact-big-card {
        padding: 15px;
    }

    .contact-big-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .appointment-form-card {
        padding: 18px;
    }

    .clinic-contact-buttons {
        flex-direction: column;
    }

    .clinic-contact-buttons .btn {
        width: 100%;
    }

    .contact-final-buttons {
        width: 100%;
    }

    .contact-final-buttons .btn {
        flex: 1;
    }

}