/* ================================
   ABOUT HERO
================================ */

.about-hero{
    position:relative;
    width:100%;

    min-height:610px;

    background:#FFFFFF;

    padding:82px 0 0;

    overflow:hidden;
}


/* ================================
   HERO CONTAINER
================================ */

.about-hero-container{
    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
}


/* ================================
   ABOUT PILL
================================ */

.about-pill{
    height:24px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    padding:0 12px;

    border-radius:999px;

    background:#DDF6EE;
    border:1px solid #BFE9DC;

    font-family:"Manrope", sans-serif;
    font-size:10px;
    font-weight:600;
    line-height:16px;
    letter-spacing:.7px;

    color:#0C5C50;
}

.about-pill span{
    font-size:10px;
}


/* ================================
   HERO HEADING
================================ */

.about-hero h1{
    max-width:1000px;

    margin:25px auto 0;

    font-family:"Manrope", sans-serif;
    font-size:40px;
    font-weight:700;
    line-height:50px;
    letter-spacing:-1.2px;

    color:#171717;
}

.about-hero h1 span{
    color:#329BC4;
    font-weight:500;
}


/* ================================
   DESCRIPTION
================================ */

.about-hero-description{
    max-width:600px;

    margin:22px auto 0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:14px;
    font-weight:400;
    line-height:21px;

    color:#4F565D;
}


/* ================================
   HERO BUTTONS
================================ */

.about-hero-buttons{
    margin-top:28px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}


/* Primary */

.about-btn-primary{
    min-width:186px;
    height:38px;

    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    border-radius:999px;

    background:#3B9FC4;

    font-family:"Manrope", sans-serif;
    font-size:10px;
    font-weight:700;
    letter-spacing:.3px;

    color:#FFFFFF;

    text-decoration:none;

    box-shadow:0 4px 10px rgba(59,159,196,.20);

    transition:.25s ease;
}

.about-btn-primary:hover{
    background:#298DAF;
    transform:translateY(-1px);
}


/* Secondary */

.about-btn-secondary{
    min-width:184px;
    height:38px;

    padding:0 18px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;

    border:1px solid #D3DFE1;
    border-radius:999px;

    background:#FFFFFF;

    font-family:"Manrope", sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:.25px;

    color:#329BC4;

    text-decoration:none;

    transition:.25s ease;
}

.about-btn-secondary:hover{
    border-color:#329BC4;
    background:#F7FCFD;
}


/* ================================
   STATISTICS CARD
================================ */

.about-stats{
    position:relative;
    z-index:5;

    width:100%;

    min-height:124px;

    margin-top:92px;

    padding:26px 28px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    background:#FFFFFF;

    border:1px solid #E4E8EB;
    border-radius:23px;

    box-shadow:
        0 15px 35px rgba(25,48,63,.10);
}


/* Individual stat */

.about-stat{
    padding:0 28px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    border-right:1px solid #EEF0F2;
}

.about-stat:first-child{
    padding-left:0;
}

.about-stat:last-child{
    padding-right:0;
    border-right:none;
}


.about-stat strong{
    margin-bottom:3px;

    font-family:Georgia, "Times New Roman", serif;
    font-size:34px;
    font-weight:700;
    line-height:40px;

    color:#075746;
}


.about-stat span{
    font-family:"Manrope", sans-serif;
    font-size:9px;
    font-weight:500;
    line-height:14px;
    letter-spacing:.2px;

    color:#454E50;
}


/* ================================
   FUTURE SECTION PLACEHOLDER
================================ */

.about-placeholder{
    min-height:1px;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

    .about-hero{
        padding-top:70px;
    }

    .about-hero h1{
        font-size:34px;
        line-height:44px;
    }

    .about-stats{
        grid-template-columns:repeat(2,1fr);
        row-gap:22px;
    }

    .about-stat:nth-child(2){
        border-right:none;
    }

    .about-stat:nth-child(3){
        padding-left:0;
    }
}


@media(max-width:600px){

    .about-hero{
        padding:58px 0 0;
    }

    .about-pill{
        font-size:9px;
    }

    .about-hero h1{
        margin-top:20px;

        font-size:28px;
        line-height:37px;
        letter-spacing:-.7px;
    }

    .about-hero-description{
        font-size:13px;
        line-height:20px;
    }

    .about-hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .about-btn-primary,
    .about-btn-secondary{
        width:100%;
        max-width:260px;
    }

    .about-stats{
        margin-top:65px;

        grid-template-columns:1fr 1fr;

        padding:20px 16px;

        border-radius:18px;
    }

    .about-stat{
        padding:0 12px;
    }

    .about-stat strong{
        font-size:28px;
        line-height:34px;
    }

    .about-stat span{
        font-size:8px;
        line-height:12px;
    }
}
/* ================================
   OUR STORY
================================ */

.about-story{
    width:100%;

    padding:150px 0 112px;

    background:
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F2F6F5 52%,
            #F2F6F5 100%
        );

    border-top:1px solid rgba(190,201,196,.45);
    border-bottom:1px solid rgba(190,201,196,.45);
}


/* ================================
   CONTAINER
================================ */

.about-story-container{
    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:48px;
}


/* ================================
   IMAGE
================================ */

.about-story-image{
    position:relative;

    width:100%;
    height:320px;

    overflow:hidden;

    border-radius:24px;

    background:#E9EEEE;
}


.about-story-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;
}


/* ================================
   IMAGE CAPTION
================================ */

.about-story-caption{
    position:absolute;

    left:14px;
    bottom:12px;

    min-height:30px;

    padding:0 13px;

    display:flex;
    align-items:center;

    border-radius:999px;

    background:rgba(255,255,255,.95);

    box-shadow:0 3px 10px rgba(0,0,0,.08);

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:9px;
    font-weight:400;
    line-height:14px;

    color:#42484D;
}


/* ================================
   CONTENT
================================ */

.about-story-content{
    max-width:560px;
}


/* Eyebrow */

.about-story-eyebrow{
    display:flex;
    align-items:center;
    gap:8px;

    margin-bottom:20px;

    font-family:"Manrope", sans-serif;
    font-size:10px;
    font-weight:600;
    line-height:16px;
    letter-spacing:1.2px;

    color:#006780;
}

.about-story-eyebrow span:first-child{
    width:18px;
    height:1px;

    background:#1998BA;
}


/* Heading */

.about-story-content h2{
    margin:0 0 18px;

    font-family:"Manrope", sans-serif;
    font-size:26px;
    font-weight:600;
    line-height:34px;
    letter-spacing:-.6px;

    color:#171717;
}


/* Paragraphs */

.about-story-content p{
    margin:0 0 17px;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:12px;
    font-weight:400;
    line-height:19px;

    color:#4F565A;
}

.about-story-content p:last-child{
    margin-bottom:0;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

    .about-story{
        padding:100px 0 80px;
    }

    .about-story-container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .about-story-content{
        max-width:100%;
    }

    .about-story-image{
        height:380px;
    }
}


@media(max-width:600px){

    .about-story{
        padding:70px 0 65px;
    }

    .about-story-container{
        gap:32px;
    }

    .about-story-image{
        height:290px;
        border-radius:20px;
    }

    .about-story-content h2{
        font-size:23px;
        line-height:31px;
    }

    .about-story-content p{
        font-size:13px;
        line-height:21px;
    }
}
/* ================================
   OUR PURPOSE
================================ */

.about-purpose{
    width:100%;

    padding:64px 0;

    background:rgba(243,243,243,.50);

    border-top:1px solid #E8E8E8;
    border-bottom:1px solid #E8E8E8;
}

.about-purpose-container{
    width:1200px;
    max-width:calc(100% - 48px);
    margin:0 auto;
}


/* ================================
   HEADING
================================ */

.about-purpose-heading{
    text-align:center;

    margin-bottom:56px;
}

.purpose-eyebrow{
    margin-bottom:12px;

    font-family:"Manrope", sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:20px;
    letter-spacing:1.4px;

    color:#075746;
}

.about-purpose-heading h2{
    margin:0;

    font-family:"Manrope", sans-serif;
    font-size:34px;
    font-weight:500;
    line-height:44px;
    letter-spacing:-.8px;

    color:#161616;
}


/* ================================
   CARDS GRID
================================ */

.purpose-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:40px;
}


/* ================================
   PURPOSE CARD
================================ */

.purpose-card{
    min-height:400px;

    padding:32px 34px 28px;

    background:#FFFFFF;

    border:1px solid #E8E8E8;
    border-radius:26px;

    box-shadow:
        0 12px 30px rgba(32,51,58,.05);

    display:flex;
    flex-direction:column;
}


/* ================================
   ICON
================================ */

.purpose-icon{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    border-radius:14px;

    font-family:"Manrope", sans-serif;
    font-size:24px;
    font-weight:500;
}

.mission-icon{
    background:#DDF5EE;
    color:#075746;
}

.vision-icon{
    background:#DDF4FA;
    color:#20748A;
}

.purpose-icon span{
    line-height:1;
}


/* ================================
   CARD HEADING
================================ */

.purpose-card h3{
    margin:0 0 18px;

    font-family:Georgia,"Times New Roman",serif;
    font-size:25px;
    font-weight:700;
    line-height:32px;
    letter-spacing:-.3px;
}

.mission-card h3{
    color:#075746;
}

.vision-card h3{
    color:#176C82;
}


/* ================================
   CARD TEXT
================================ */

.purpose-card p{
    margin:0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:17px;
    font-weight:400;
    line-height:29px;

    color:#4B5457;
}


/* ================================
   DIVIDER
================================ */

.purpose-divider{
    width:100%;
    height:1px;

    margin-top:auto;
    margin-bottom:22px;

    background:#E8E8E8;
}


/* ================================
   TAGS
================================ */

.purpose-tags{
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:14px;

    font-family:"Manrope", sans-serif;
    font-size:13px;
    font-weight:600;
    line-height:20px;

    color:#075F58;
}

.purpose-tags b{
    font-size:12px;
    font-weight:700;

    color:#247B79;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

    .about-purpose{
        padding:60px 0;
    }

    .purpose-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .about-purpose-heading{
        margin-bottom:40px;
    }

    .about-purpose-heading h2{
        font-size:30px;
        line-height:40px;
    }
}


@media(max-width:600px){

    .about-purpose{
        padding:52px 0;
    }

    .about-purpose-container{
        max-width:calc(100% - 32px);
    }

    .about-purpose-heading{
        margin-bottom:32px;
    }

    .purpose-eyebrow{
        font-size:12px;
    }

    .about-purpose-heading h2{
        font-size:25px;
        line-height:34px;
    }

    .purpose-card{
        min-height:auto;

        padding:26px 22px 24px;

        border-radius:22px;
    }

    .purpose-card p{
        font-size:15px;
        line-height:25px;
    }

    .purpose-card h3{
        font-size:22px;
        line-height:29px;
    }

    .purpose-tags{
        gap:9px;

        font-size:11px;
    }
}

/* ================================
   OUR FACILITIES
================================ */

.about-facilities{
    width:100%;
    padding:80px 0;
    background:#FFFFFF;
}

.facilities-wrapper{
    position:relative;

    width:100%;
    height:586px;

    overflow:hidden;
    border-radius:24px;

    box-shadow:0 18px 40px rgba(28,52,62,.10);
}


/* ================================
   BACKGROUND IMAGE
================================ */

.facilities-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    z-index:0;
}


/* Dark overlay */

.facilities-wrapper::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(6,44,38,.78) 0%,
            rgba(6,44,38,.48) 28%,
            rgba(6,44,38,.10) 62%,
            rgba(6,44,38,0) 100%
        );

    z-index:1;
}


/* ================================
   CONTENT CARD
================================ */

.facilities-card{
    position:absolute;

    left:48px;
    top:60px;

    z-index:2;

    width:666px;
    min-height:468px;

    padding:32px 34px 34px;

    background:rgba(255,255,255,.94);

    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}


/* ================================
   EYEBROW
================================ */

.facilities-eyebrow{
    margin-bottom:12px;

    font-family:"Manrope", sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:20px;
    letter-spacing:1px;

    color:#0B6558;
}


/* ================================
   HEADING
================================ */

.facilities-card h2{
    margin:0 0 24px;

    font-family:"Manrope", sans-serif;
    font-size:44px;
    font-weight:600;
    line-height:52px;
    letter-spacing:-1.2px;

    color:#112A26;
}


/* ================================
   LIST
================================ */

.facilities-list{
    display:grid;
    grid-template-columns:1fr 1fr;

    column-gap:44px;
    row-gap:11px;
}


.facility-item{
    display:flex;
    align-items:flex-start;

    gap:10px;
}


.facility-item span{
    flex-shrink:0;

    margin-top:1px;

    font-family:"Manrope", sans-serif;
    font-size:14px;
    font-weight:500;

    color:#087565;
}


.facility-item p{
    margin:0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:23px;

    color:#37454B;
}


/* ================================
   DIVIDER
================================ */

.facilities-divider{
    width:100%;
    height:1px;

    margin:28px 0 20px;

    background:#E3E8E7;
}


/* ================================
   BUTTON
================================ */

.facilities-btn{
    width:228px;
    height:56px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    border-radius:999px;

    background:#3C9FC2;

    font-family:"Manrope", sans-serif;
    font-size:15px;
    font-weight:700;

    color:#FFFFFF;
    text-decoration:none;

    transition:.25s ease;
}

.facilities-btn:hover{
    background:#298DAF;
    transform:translateY(-1px);
}

.facilities-btn span:last-child{
    font-size:20px;
    font-weight:400;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:900px){

    .about-facilities{
        padding:64px 0;
    }

    .facilities-wrapper{
        height:auto;
        min-height:650px;
    }

    .facilities-card{
        left:28px;
        right:28px;
        top:28px;

        width:auto;

        min-height:auto;
    }

    .facilities-card h2{
        font-size:36px;
        line-height:44px;
    }
}


@media(max-width:650px){

    .about-facilities{
        padding:52px 0;
    }

    .facilities-wrapper{
        min-height:760px;
        border-radius:20px;
    }

    .facilities-card{
        left:18px;
        right:18px;
        top:18px;

        padding:26px 22px;

        border-radius:16px;
    }

    .facilities-card h2{
        font-size:30px;
        line-height:38px;
    }

    .facilities-list{
        grid-template-columns:1fr;
        row-gap:10px;
    }

    .facility-item p{
        font-size:14px;
        line-height:21px;
    }

    .facilities-btn{
        width:200px;
        height:50px;

        font-size:13px;
    }
}

/* ================================
   WHY PATIENTS CHOOSE GLOBAL CLINIC
================================ */

.about-difference{
    width:100%;

    padding:64px 0;

    background:#FFFFFF;
}

.about-difference-container{
    max-width:1280px;
}


/* ================================
   HEADING
================================ */

.difference-heading{
    text-align:center;

    margin-bottom:64px;
}

.difference-eyebrow{
    margin-bottom:12px;

    font-family:"Manrope", sans-serif;
    font-size:13px;
    font-weight:600;
    line-height:20px;
    letter-spacing:1.3px;

    color:#075746;
}

.difference-heading h2{
    margin:0;

    font-family:"Manrope", sans-serif;
    font-size:30px;
    font-weight:500;
    line-height:40px;
    letter-spacing:-.8px;

    color:#171717;
}


/* ================================
   CARDS
================================ */

.difference-grid{
    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:20px;
}

.difference-card{
    min-height:235px;

    padding:20px 20px 22px;

    background:#FFFFFF;

    border:1px solid #E6E9EC;
    border-radius:14px;

    box-shadow:
        0 8px 24px rgba(20,45,55,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.difference-card:hover{
    transform:translateY(-3px);

    box-shadow:
        0 14px 30px rgba(20,45,55,.10);
}


/* ================================
   ICON
================================ */

.difference-icon{
    width:34px;
    height:34px;

    margin-bottom:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#DDF5FA;
}

.difference-icon img{
    width:18px;
    height:18px;

    object-fit:contain;
}


/* ================================
   CARD HEADING
================================ */

.difference-card h3{
    margin:0 0 10px;

    font-family:"Manrope", sans-serif;
    font-size:17px;
    font-weight:600;
    line-height:24px;

    color:#171717;
}


/* ================================
   CARD TEXT
================================ */

.difference-card p{
    margin:0;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:14px;
    font-weight:400;
    line-height:22px;

    color:#535B60;
}


/* ================================
   RESPONSIVE
================================ */

@media(max-width:1000px){

    .difference-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }
}


@media(max-width:600px){

    .about-difference{
        padding:52px 0;
    }

    .difference-heading{
        margin-bottom:40px;
    }

    .difference-eyebrow{
        font-size:11px;
    }

    .difference-heading h2{
        font-size:25px;
        line-height:34px;
    }

    .difference-grid{
        grid-template-columns:1fr;
    }

    .difference-card{
        min-height:auto;
        padding:22px;
    }
}

/* =================================
   FINAL CTA
================================= */

.final-cta{
    position:relative;

    width:100%;
    height:577px;

    margin:0;
    padding:0;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#002869;
}


/* =================================
   BACKGROUND IMAGE
================================ */

.final-cta::before{
    content:"";

    position:absolute;
    inset:0;

    background-image:url("../images/cta/about-cta.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:0;
}


/* =================================
   BLUE OVERLAY
================================ */

.final-cta::after{
    content:"";

    position:absolute;
    inset:0;

    background:#002869;

    opacity:.78;

    z-index:1;
}


/* =================================
   CONTENT
================================ */

.final-cta-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:900px;

    margin:0 auto;
    padding:0 24px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
}


/* =================================
   HEADING
================================ */

.final-cta-content h2{
    margin:0;

    font-family:"Manrope", sans-serif;
    font-size:52px;
    font-weight:500;
    line-height:64px;
    letter-spacing:-1.4px;

    color:#FFFFFF;
}


/* =================================
   DESCRIPTION
================================ */

.final-cta-content p{
    max-width:700px;

    margin:22px auto 30px;

    font-family:"Plus Jakarta Sans", sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:26px;

    color:rgba(255,255,255,.90);
}


/* =================================
   BUTTONS
================================ */

.final-cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:20px;
}


/* Common */

.cta-book,
.cta-whatsapp{
    height:56px;

    padding:0 30px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    border-radius:999px;

    font-family:"Manrope", sans-serif;
    font-size:14px;
    font-weight:600;

    text-decoration:none;

    transition:.25s ease;
}


/* =================================
   BOOK APPOINTMENT
================================ */

.cta-book{
    min-width:216px;

    background:#FFFFFF;

    color:#222222;

    box-shadow:0 8px 20px rgba(0,0,0,.14);
}

.cta-book:hover{
    transform:translateY(-2px);

    box-shadow:0 12px 26px rgba(0,0,0,.20);
}

.cta-book img{
    width:18px;
    height:18px;

    object-fit:contain;
}


/* =================================
   WHATSAPP
================================ */

.cta-whatsapp{
    min-width:208px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.30);

    color:#FFFFFF;

    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
}

.cta-whatsapp:hover{
    background:rgba(255,255,255,.18);

    transform:translateY(-2px);
}

.cta-whatsapp img{
    width:19px;
    height:19px;

    object-fit:contain;
}


/* =================================
   NO GAP BEFORE FOOTER
================================= */

.final-cta{
    margin-bottom:0 !important;
}


/* =================================
   RESPONSIVE
================================= */

@media(max-width:900px){

    .final-cta{
        height:520px;
    }

    .final-cta-content h2{
        font-size:42px;
        line-height:52px;
    }

    .final-cta-content p{
        font-size:15px;
        line-height:24px;
    }
}


@media(max-width:600px){

    .final-cta{
        height:auto;
        min-height:500px;
    }

    .final-cta-content{
        padding:70px 20px;
    }

    .final-cta-content h2{
        font-size:32px;
        line-height:42px;
        letter-spacing:-.8px;
    }

    .final-cta-content p{
        font-size:14px;
        line-height:22px;
        margin:18px auto 26px;
    }

    .final-cta-buttons{
        flex-direction:column;
        width:100%;
        gap:12px;
    }

    .cta-book,
    .cta-whatsapp{
        width:100%;
        max-width:260px;
    }
}