/* =========================================
   CARING SQUAD™ UNIVERSAL CSS
========================================= */

:root {

    /* Colors */
    --primary: #061326;
    --gold: #C89B4D;
    --cream: #F8F4EE;
    --ivory: #FFFDF9;
    --text: #1C1C1C;
    --gray: #6F6F6F;
    --border: #E8DED0;
    --green: #6B8F71;
    --white: #ffffff;

    /* Fonts */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;

    /* Shadow */
    --shadow: 0 10px 40px rgba(0,0,0,0.06);

    /* Radius */
    --radius: 16px;

    /* Transition */
    --transition: all 0.35s ease;

}

/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--text);
    font-family:var(--body-font);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1440px;
    margin:auto;
}

/* =========================================
   GLOBAL
========================================= */

.section{
    padding:60px 0;
}

.section-title{
    text-align:center;
    margin-bottom:36px;
    position:relative;
}

.section-title h2{
    font-family:var(--heading-font);
    font-size:48px;
    font-weight:600;
    color:var(--primary);
    letter-spacing:0.5px;
}

.section-title::after{
    content:"";
    width:120px;
    height:1px;
    background:var(--gold);
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-16px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 30px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    transition:var(--transition);
    font-family:var(--body-font);
    cursor:pointer;
}

.btn-primary{
    background:var(--gold);
    color:var(--white);
}

.btn-primary:hover{
    background:#b68736;
    transform:translateY(-2px);
}

.btn-secondary{
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover{
    background: #0b2344;
    transform:translateY(-2px);
    color: var(--white);
}

/* =========================================
   HEADER
========================================= */

.header{
    background:var(--primary);
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    height:90px;
    display:grid;
    grid-template-columns:minmax(0,auto) 1fr minmax(0,auto);
    align-items:center;
    gap:16px;
}

.logo{
    display:flex;
    align-items:center;
    justify-self:start;
    flex-shrink:0;
}

.navbar{
    justify-self:center;
    min-width:0;
}

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:clamp(12px,1.6vw,28px);
}

.nav-links a{
    color:#f2f2f2;
    font-size:clamp(11px,0.95vw,14px);
    font-weight:500;
    transition:var(--transition);
    white-space:nowrap;
}

.nav-links a:hover,
.nav-links .active{
    color:var(--gold);
}

.header-right{
    display:flex;
    align-items:center;
    gap:24px;
}

.header-phone,
.header-phone span,
.header-phone a{
    color:#fff !important;
    text-decoration:none;
}

.site-logo{
    height:65px;
    width:auto;
    max-width:100%;
    display:block;
    object-fit:contain;
}

.header-phone{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    flex-shrink:0;
    justify-self:end;
    font-size:clamp(11px,1vw,14px);
}

.header-phone i{
    color:var(--gold);
    flex-shrink:0;
}

.mobile-menu{
    display:none;
    width:45px;
    height:45px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:#fff;
    font-size:30px;
    justify-self:end;
    flex-shrink:0;
}

.mobile-nav{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    display:none;
    flex-direction:column;
    background:#061326;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.mobile-nav.active{
    display:flex;
}

.mobile-nav a{
    color:#fff;
    padding:16px 22px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-nav a:hover{
    background:#C89B4D;
}

@media(max-width:992px){

    .nav-container{
        display:flex;
        justify-content:space-between;
        height:70px;
        gap:10px;
    }

    .navbar{
        display:none;
    }

    .header-phone{
        display:none;
    }

    .site-logo{
        height:55px;
        width:auto;
        object-fit:contain;
    }

    .mobile-menu{
        display:flex;
        margin-left:auto;
    }

}

@media(max-width:1200px){

    .nav-container{
        gap:12px;
    }

}

@media(max-width:1100px){

    .nav-links{
        gap:10px;
    }

}

/* ==========================
   HEADER DROPDOWN
========================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:190px;
    background:#061326;
    border-radius:8px;
    padding:8px 0;
    list-style:none;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.dropdown-menu li a:hover{
    background:#C89B4D;
    color:#fff;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* =========================================
   HERO SECTION
========================================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:stretch;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    opacity:0;
    transition:opacity 1.5s ease;
}

.hero-slide.active{
    opacity:1;
}

.hero-container{
    position:relative;
    z-index:2;
    display:flex;
    flex:1 1 auto;
    width:100%;
    align-items:stretch;
    box-sizing:border-box;
    padding-bottom:56px;
    margin-top:0;
    margin-bottom:0;
}

/* Content Width */
.hero-content{
    max-width: 760px;
    padding-top: 40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

/* Main Heading */
.hero-content h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    line-height: 0.95;
    font-weight: 600;
    color: #061326;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content h1 span{
    color: #C89B4D;
}

/* Paragraph */
.hero-content p{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #444;
    max-width: 470px;
    margin-bottom: 38px;
}

/* Buttons — anchored to bottom of homepage hero */
.hero-buttons{
    display: flex;
    gap: 18px;
}

.home-page .hero .hero-buttons{
    margin-top: auto;
    align-self: flex-start;
}

.home-page .hero .hero-copy{
    flex: 0 1 auto;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .hero{
        min-height: 100vh;
        padding: 140px 0 0;
        background-position: 65% center;
    }

    .hero-container{
        padding-bottom: 48px;
    }

    .hero-content h1{
        font-size: 60px;
    }

}

@media(max-width:768px){

    .hero{
        min-height: 100vh;
        padding: 120px 0 0;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.90),
            rgba(248,244,238,0.82)
        ),
        url("assets/images/hero-bannerr.jpeg");

        background-position: center;
    }

    .hero-container{
        padding-bottom: 40px;
    }

    .hero-content{
        max-width: 100%;
    }

    .hero-content h1{
        font-size: 46px;
        line-height: 1;
    }

    .hero-content p{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .home-page .hero .hero-buttons{
        width: 100%;
        align-self: stretch;
    }

}

/* =========================================
   TRUST BAR
========================================= */

   .trust-bar{
    background:var(--ivory);
    padding:26px 0;
    border-bottom:1px solid var(--border);
   }

   .trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
   }

   .trust-item{
    display:flex;
    align-items:center;
    gap:14px;
   }

   .trust-item i{
    color:var(--gold);
    font-size:22px;
   }

   .trust-item span{
    font-size:14px;
    color:var(--primary);
    line-height:1.6;
    font-weight:500;
   }

   /* =========================================
      STATS SECTION
   ========================================= */

   .stats-section{
    padding:35px 0 45px;
   }

   .stats-section .stats-panel{
    background:var(--primary);
    border-radius:24px;
    padding:24px 28px;
   }

   .stats-section .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
   }

   .stats-section .stat-card{
    background:transparent;
    border:none;
    border-right:1px solid rgba(255,255,255,0.14);
    border-radius:0;
    padding:6px 16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:auto;
    color:#fff;
    text-align:center;
    transition:var(--transition);
   }

   .stats-section .stat-card:last-child{
    border-right:none;
   }

   .stats-section .stat-card:hover{
    transform:translateY(-2px);
   }

   .stats-section .stat-icon{
    width:40px;
    height:40px;
    border-radius:12px;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:18px;
   }

   .stats-section .stat-card h3{
    font-size:30px;
    font-weight:700;
    margin:0;
    line-height:1;
   }

   .stats-section .stat-card p{
    color:rgba(255,255,255,0.78);
    margin:0;
    font-size:12px;
    line-height:1.4;
    letter-spacing:0.2px;
   }

   .home-page .section{
    padding:70px 0;
   }

   .section-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:var(--gold);
    font-size:13px;
    letter-spacing:1.8px;
    text-transform:uppercase;
    font-weight:700;
   }

   .services-section{
    padding-top:60px;
    padding-bottom:60px;
   }

   .services-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 36px;
   }

   .home-page .section-title{
    margin-bottom:36px;
   }

   .services-subtitle{
    color:var(--gray);
    max-width:640px;
    margin:10px auto 0;
    font-size:16px;
    line-height:1.7;
   }

   .services-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
   }

   .service-card{
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:100%;
    transition:var(--transition);
    box-shadow:var(--shadow);
   }

   .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.1);
   }

   .service-card-media{
    position:relative;
    border-radius:18px 18px 0 0;
    overflow:hidden;
   }

   .service-card-media img{
    width:100%;
    height:170px;
    object-fit:cover;
   }

   .service-card-body{
    padding:18px 18px 20px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
   }

   .service-card-body h3{
    margin:0;
    color:var(--primary);
    font-family:var(--heading-font);
    font-size:20px;
    line-height:1.2;
   }

   .service-card-body p{
    color:var(--gray);
    line-height:1.65;
    margin:0;
    font-size:13px;
    flex:1;
   }

   .service-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--gold);
    font-size:13px;
    font-weight:600;
    margin-top:auto;
    transition:var(--transition);
   }

   .service-link:hover{
    color:#e0b367;
    gap:12px;
   }

   .service-link i{
    font-size:11px;
   }

   .doctors-section{
    padding:50px 0 24px;
   }

   .doctors-section + .doctors-section{
    padding-top:32px;
   }

   .section-heading-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
   }

   .section-heading-row h2{
    margin:0;
    font-family:var(--heading-font);
    font-size:38px;
    font-weight:600;
    color:var(--primary);
    line-height:1.1;
   }

   .section-desc{
    margin:8px 0 0;
    color:var(--gray);
    font-size:15px;
    line-height:1.6;
    max-width:520px;
   }

   .section-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--gold);
    font-weight:700;
    font-size:14px;
    white-space:nowrap;
    flex-shrink:0;
    transition:var(--transition);
   }

   .section-link:hover{
    color:#e0b367;
    gap:12px;
   }

   .section-footer-link{
    display:flex;
    justify-content:flex-end;
    margin-top:14px;
    padding-right:40px;
   }

   .cards-carousel{
    position:relative;
    padding:0 40px;
   }

   .cards-carousel.is-empty .carousel-nav{
    display:none;
   }

   .carousel-empty{
    width:100%;
    margin:0;
    padding:36px 20px;
    text-align:center;
    color:var(--gray);
    font-size:14px;
   }

   .carousel-viewport{
    overflow:hidden;
    width:100%;
   }

   .carousel-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid var(--border);
    background:var(--ivory);
    color:var(--primary);
    cursor:pointer;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    box-shadow:var(--shadow);
    transition:var(--transition);
   }

   .carousel-nav:hover{
    background:var(--primary);
    color:var(--white);
    border-color:var(--primary);
   }

   .carousel-prev{
    left:0;
   }

   .carousel-next{
    right:0;
   }

   .cards-row{
    display:flex;
    gap:12px;
    transition:transform 0.45s ease;
    will-change:transform;
    touch-action:pan-y pinch-zoom;
    cursor:grab;
    user-select:none;
   }

   .cards-row:active{
    cursor:grabbing;
   }

   .profile-card{
    background:var(--ivory);
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:var(--shadow);
    transition:var(--transition);
    flex-shrink:0;
    min-height:0;
    height:100%;
   }

   .profile-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 36px rgba(5, 18, 37, 0.1);
   }

   .profile-card-image-link{
    display:block;
    color:inherit;
    text-decoration:none;
   }

   .profile-card-image{
    position:relative;
    height:165px;
    overflow:hidden;
    flex-shrink:0;
    background:var(--cream);
   }

   .profile-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 18%;
    display:block;
   }

   .profile-card-badges{
    position:absolute;
    top:10px;
    left:10px;
    z-index:2;
   }

   .profile-card-availability{
    position:absolute;
    top:10px;
    right:10px;
    z-index:2;
   }

   .badge{
    display:inline-flex;
    align-items:center;
    gap:5px;
    border-radius:999px;
    padding:5px 10px;
    font-size:10px;
    font-weight:700;
    letter-spacing:0.2px;
    text-transform:uppercase;
    box-shadow:0 6px 16px rgba(0,0,0,0.1);
   }

   .badge-verified{
    background:var(--gold);
    color:var(--white);
   }

   .badge-available{
    background:rgba(255,255,255,0.96);
    color:var(--primary);
    text-transform:none;
    font-size:10px;
   }

   .availability-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#22c55e;
    flex-shrink:0;
   }

   .profile-card-body{
    padding:10px 12px 12px;
    display:flex;
    flex-direction:column;
    gap:0;
    flex:1;
   }

   .profile-card-title{
    margin:0 0 3px;
    font-size:14px;
    line-height:1.25;
   }

   .profile-card-name{
    display:inline;
    color:var(--primary);
    font-weight:600;
    font-size:14px;
    line-height:1.25;
    cursor:pointer;
    text-decoration:none;
    background-image:linear-gradient(currentColor, currentColor);
    background-position:0 100%;
    background-repeat:no-repeat;
    background-size:0% 1.5px;
    transition:color 0.3s ease, background-size 0.3s ease;
   }

   .profile-card-name:hover{
    color:var(--gold);
    background-size:100% 1.5px;
   }

   .profile-card-title{
    display:flex;
    align-items:center;
    gap:6px;
    margin:0;
   }

   .profile-card-check{
    color:var(--primary);
    font-size:14px;
   }

   .profile-degree{
    display:block;
    font-size:12px;
    color:var(--gray);
    margin-top:4px;
   }

   .profile-experience{
    display:block;
    font-size:12px;
    color:var(--gray);
    margin-top:4px;
   }

   .profile-card-image{
    position:relative;
   }

   .profile-card-verified{
    position:absolute;
    right:8px;
    bottom:8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--primary);
    color:var(--gold,#d6af78);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
   }

   .profile-role{
    display:block;
    color:var(--gray);
    font-size:11px;
    font-weight:400;
    line-height:1.35;
    margin:0 0 3px;
   }

   .profile-city{
    display:block;
    color:var(--gray);
    font-size:11px;
    font-weight:400;
    line-height:1.35;
    margin:0;
   }

   .profile-card-meta{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    margin:auto 0 4px;
    padding-top:6px;
   }

   .profile-card-helpline{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:0;
    padding:6px 8px;
    margin:0 0 4px;
    border-radius:8px;
    background:rgba(4,20,43,0.04);
    text-align:center;
   }

   .profile-card-helpline .helpline-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    letter-spacing:0.2px;
    transition:color var(--transition);
   }

   .profile-card-helpline .helpline-number i{
    color:var(--gold);
    font-size:10px;
   }

   .profile-card-helpline .helpline-number:hover{
    color:var(--gold);
   }

   .profile-card-helpline .helpline-number:hover i{
    color:var(--gold);
   }

   .fee{
    color:var(--primary);
    font-weight:700;
    font-size:12px;
   }

   .home-page .btn-block,
   .profile-card .btn-block{
    width:100%;
    margin-top:0;
    padding:9px 12px;
    font-size:12px;
    font-weight:500;
   }

   /* Remove divider lines above doctor carousels / listings */
   .doctors-section,
   .doctors-section .container,
   .doctors-section .section-heading-row,
   .doctors-section .section-heading-text,
   .doctors-section .section-heading-row h2,
   .doctors-section .section-desc,
   .doctors-section .cards-carousel,
   .doctors-section .carousel-viewport,
   .booking-main .doctor-list-top,
   .booking-main .doctor-list-area{
    border:none !important;
    border-top:none !important;
    border-bottom:none !important;
    box-shadow:none !important;
   }

   .doctors-section .section-heading-row::before,
   .doctors-section .section-heading-row::after,
   .doctors-section .section-heading-text::before,
   .doctors-section .section-heading-text::after,
   .doctors-section .section-heading-row h2::before,
   .doctors-section .section-heading-row h2::after,
   .doctors-section .section-desc::before,
   .doctors-section .section-desc::after,
   .doctors-section .cards-carousel::before,
   .doctors-section .cards-carousel::after,
   .doctors-section .heading-divider,
   .booking-main .doctor-list-top::before,
   .booking-main .doctor-list-top::after{
    content:none !important;
    display:none !important;
   }

   .doctors-section .section-heading-row{
    margin-bottom:12px;
    padding-bottom:0;
   }

   .doctors-section .cards-carousel{
    padding-top:0;
    margin-top:0;
   }

   /* Booking / Expert Consultation grid */
   .doctor-list-grid.profile-cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(175px, 1fr));
    gap:12px;
    overflow:visible;
    flex-direction:unset;
    padding-bottom:0;
    scroll-behavior:auto;
    align-items:stretch;
   }

   .doctor-list-grid.profile-cards-grid .profile-card{
    width:100%;
    min-width:0 !important;
    max-width:100%;
    flex:unset;
    height:auto;
    min-height:0;
   }

   .doctor-list-grid.profile-cards-grid .profile-card-image{
    height:165px;
   }

   @media(max-width:1366px){
    .doctor-list-grid.profile-cards-grid{
        grid-template-columns:repeat(auto-fill, minmax(168px, 1fr));
        gap:12px;
    }
   }

   @media(max-width:1024px){
    .doctor-list-grid.profile-cards-grid{
        grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
        gap:12px;
    }
   }

   @media(max-width:576px){
    .doctor-list-grid.profile-cards-grid{
        grid-template-columns:1fr;
        gap:12px;
        flex-direction:unset;
        padding:0;
    }
   }

   .choose-section{
    padding:48px 0;
    background:var(--cream);
   }

   .choose-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:36px;
    align-items:center;
   }

   .choose-intro h2{
    font-family:var(--heading-font);
    font-size:48px;
    line-height:1.05;
    margin:14px 0 18px;
    color:var(--primary);
   }

   .choose-intro p{
    max-width:480px;
    color:var(--gray);
    line-height:1.75;
    margin-bottom:26px;
    font-size:15px;
   }

   .features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px 28px;
   }

   .feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
   }

   .feature-icon{
    width:42px;
    height:42px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(200,155,77,0.1);
    color:var(--gold);
    font-size:18px;
   }

   .feature-content h4{
    margin:0 0 4px;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
   }

   .feature-content p{
    margin:0;
    color:var(--gray);
    line-height:1.65;
    font-size:13px;
   }

   .booking-cta-section{
    padding:45px 0 60px;
   }

   .booking-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    background:var(--primary);
    color:#fff;
    border-radius:24px;
    padding:28px 36px;
   }

   .booking-left{
    display:flex;
    align-items:center;
    gap:20px;
    flex:1;
   }

   .booking-phone-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    border:2px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:24px;
    flex-shrink:0;
   }

   .booking-copy h2{
    font-family:var(--heading-font);
    font-size:32px;
    line-height:1.1;
    margin:0 0 6px;
    color:#fff;
   }

   .booking-subtitle{
    color:rgba(255,255,255,0.88);
    font-size:16px;
    margin:0 0 4px;
    font-weight:500;
   }

   .booking-note{
    color:rgba(255,255,255,0.6);
    font-size:12px;
    margin:0;
   }

   .booking-right{
    display:flex;
    align-items:center;
    gap:24px;
    flex-shrink:0;
   }

   .booking-contact{
    text-align:right;
   }

   .booking-phone{
    font-size:36px;
    font-weight:700;
    margin:0;
    line-height:1;
    color:#fff;
   }

   .booking-meta{
    color:rgba(255,255,255,0.72);
    margin:6px 0 0;
    font-size:13px;
   }

   .booking-right .btn{
    min-width:150px;
    white-space:nowrap;
   }

   /* Homepage body responsive */

   @media(max-width:1200px){
    .doctors-section{
        padding:42px 0 20px;
    }

    .doctors-section + .doctors-section{
        padding-top:26px;
    }

    .choose-section{
        padding:42px 0;
    }

    .stats-section .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .stats-section .stat-card{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.14);
        padding:14px 12px;
    }

    .stats-section .stat-card:nth-child(odd){
        border-right:1px solid rgba(255,255,255,0.14);
    }

    .stats-section .stat-card:nth-last-child(-n+2){
        border-bottom:none;
    }

    .services-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .choose-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .choose-intro h2{
        font-size:42px;
    }
   }

   @media(max-width:992px){
    .doctors-section{
        padding:38px 0 18px;
    }

    .doctors-section + .doctors-section{
        padding-top:24px;
    }

    .choose-section{
        padding:36px 0;
    }

    .section-heading-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .booking-panel{
        flex-direction:column;
        align-items:flex-start;
        padding:24px 22px;
    }

    .booking-right{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .booking-contact{
        text-align:left;
    }

    .booking-phone{
        font-size:30px;
    }

    .cards-carousel{
        padding:0 36px;
    }

    .section-footer-link{
        padding-right:36px;
    }
   }

   @media(max-width:768px){
    .doctors-section{
        padding:32px 0 16px;
    }

    .doctors-section + .doctors-section{
        padding-top:20px;
    }

    .choose-section{
        padding:32px 0;
    }

    .stats-section .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-section .stat-card,
    .stats-section .stat-card:nth-child(odd){
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.14);
    }

    .stats-section .stat-card:last-child{
        border-bottom:none;
    }

    .services-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

    .choose-intro h2{
        font-size:36px;
    }

    .booking-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .booking-copy h2{
        font-size:28px;
    }

    .carousel-nav{
        width:32px;
        height:32px;
        font-size:11px;
    }

    .section-heading-row h2{
        font-size:32px;
    }
   }

   @media(max-width:576px){
    .doctors-section{
        padding:28px 0 14px;
    }

    .doctors-section + .doctors-section{
        padding-top:18px;
    }

    .choose-section{
        padding:28px 0;
    }

    .stats-section .stats-panel{
        padding:20px 16px;
    }

    .stats-section .stat-card h3{
        font-size:26px;
    }

    .booking-panel{
        padding:22px 18px;
    }

    .booking-phone-icon{
        width:56px;
        height:56px;
        font-size:20px;
    }

    .booking-phone{
        font-size:26px;
    }

    .cards-carousel{
        padding:0 32px;
    }

    .section-footer-link{
        padding-right:32px;
        margin-top:12px;
    }
   }

   @media(max-width:480px){
    .choose-intro h2{
        font-size:32px;
    }

    .features-grid{
        gap:18px;
    }
   }

/* =========================================
   SUPPORT
========================================= */

.support-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:24px;
}

.support-card{
    background:var(--ivory);
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:var(--transition);
}

.support-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.support-card img{
    height:240px;
    object-fit:cover;
}

.support-card h4{
    text-align:center;
    padding:20px;
    font-size:16px;
    color:var(--primary);
}

/* =========================================
   ECOSYSTEM
========================================= */

.ecosystem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.ecosystem-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    height:520px;
}

.ecosystem-card img{
    height:100%;
    object-fit:cover;
}

.ecosystem-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(6,19,38,0.95), rgba(6,19,38,0.15));
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.ecosystem-overlay i{
    color:var(--gold);
    font-size:44px;
    margin-bottom:20px;
}

.ecosystem-overlay h3{
    color:#fff;
    font-size:42px;
    font-family:var(--heading-font);
    margin-bottom:16px;
}

.ecosystem-overlay p{
    color:#ececec;
    line-height:1.9;
    margin-bottom:22px;
}

.ecosystem-overlay a{
    color:var(--gold);
    font-weight:600;
}

/* =========================================
   WHY SECTION
========================================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:24px;
}

.why-item{
    text-align:center;
}

.why-item i{
    width:70px;
    height:70px;
    border-radius:50%;
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    color:var(--gold);
    font-size:26px;
    background:#fff;
}

.why-item h4{
    font-size:15px;
    line-height:1.8;
    color:var(--primary);
}

/* =========================================
   MEMBERSHIP
========================================= */

.membership-section{
    padding-bottom:40px;
}

.membership-container{
    background:var(--ivory);
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    border:1px solid var(--border);
}

.membership-content{
    padding:40px;
}

.membership-content h2{
    font-family:var(--heading-font);
    font-size:52px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:26px;
}

.membership-content p{
    line-height:2;
    color:#555;
    margin-bottom:36px;
}

.membership-image img{
    height:100%;
    object-fit:cover;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
    align-items: stretch;
}

.testimonial-card{
    background:var(--ivory);
    border:1px solid var(--border);
    padding:30px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:280px;
    width:100%;
}

.stars{
    color:var(--gold);
    margin-bottom:20px;
    font-size:14px;
}

.testimonial-card p{
    line-height:2;
    color:#555;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top: auto;
}

.testimonial-user img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    color:var(--primary);
    margin-bottom:4px;
}

.testimonial-user span{
    font-size:14px;
    color:#777;
}

/* =========================================
   BIG CTA
========================================= */

.big-cta{
    height:420px;
    position:relative;
    background:
    linear-gradient(to right, rgba(6,19,38,0.95), rgba(6,19,38,0.2)),
    url('assets/images/big-cta.jpeg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.big-cta-content{
    position:relative;
    z-index:2;
}

.big-cta h2{
    color:#fff;
    font-family:var(--heading-font);
    font-size:66px;
    line-height:1;
    max-width:620px;
    margin-bottom:20px;
}

.big-cta p{
    color:#f0f0f0;
    font-size:18px;
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta{
    padding:60px 0;
}

.final-cta-container{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    background:var(--ivory);
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
}

.final-cta-content{
    padding:70px;
}

.final-cta-content h2{
    font-family:var(--heading-font);
    font-size:54px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:24px;
}

.final-cta-content p{
    line-height:2;
    margin-bottom:36px;
    color:#555;
}

.final-buttons{
    display:flex;
    gap:18px;
}

.btn-whatsapp{
    border:1px solid #25D366;
    color:#25D366;
    background:#fff;
}

.btn-whatsapp:hover{
    background:#25D366;
    color:#fff;
}

.final-cta-image img{
    height:100%;
    object-fit:cover;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:var(--primary);
    padding-top:40px;
}

/* Footer Logo */

.footer-logo{
    margin-bottom: 18px;
}

.caringsquad-logo-img{
    width:210px;
    max-width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
    gap:15px;
    padding-bottom:35px;
}

.footer-brand p{
    color:#cfcfcf;
    line-height:1;
    margin:20px 0;
    max-width:300px;
}

.social-icons{
    display:flex;
    gap:14px;
}

.social-icons a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:var(--transition);
}

.social-icons a:hover{
    background:var(--gold);
    border-color:var(--gold);
}

.footer-links h4,
.footer-contact h4{
    color:#fff;
    margin-bottom:20px;
    font-size:14px;
}

.footer-links ul li,
.footer-contact ul li{
    margin-bottom:10px;
}

.admin-footer-link{
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.admin-footer-link:hover{
    color: rgba(255,255,255,0.75);
}

.footer-links a,
.footer-contact li{
    color:#cfcfcf;
    line-height:1.8;
    font-size:14px;
}

.footer-contact i{
    color:var(--gold);
    margin-right:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px 0;
    text-align:center;
}

.footer-bottom p{
    color:#bdbdbd;
    font-size:14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .support-grid,
    .why-grid,
    .testimonial-grid{
    grid-template-columns: repeat(2,1fr);
}

    .ecosystem-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-section .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .choose-grid{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .navbar{
        display:none;
    }

    .mobile-menu{
        display:flex;
    }

    .hero-content h1{
        font-size:62px;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .support-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .booking-panel{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-heading-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .booking-right{
        align-items:flex-start;
    }

    .booking-contact{
        text-align:left;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cards-row{
        gap:12px;
    }

    .profile-card{
        min-width:200px;
    }

    .doctor-list-grid.profile-cards-grid .profile-card{
        min-width:0 !important;
    }

}

@media(max-width:768px){

    .section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:38px;
    }

    .hero{
        min-height:100vh;
        height:auto;
        padding:120px 0 0;
    }

    .home-page .hero .hero-container{
        padding-bottom:40px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .support-grid,
    .trust-grid,
    .why-grid,
    .testimonial-grid,
    .stats-section .stats-grid{
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid{
        grid-template-columns:1fr;
    }

    .cards-row{
        gap:12px;
    }

    .profile-card{
        min-width:100%;
    }

    .doctor-list-grid.profile-cards-grid .profile-card{
        min-width:0 !important;
    }

    .choose-grid{
        grid-template-columns:1fr;
    }

    .booking-panel{
        padding:30px;
    }

    .booking-right{
        align-items:flex-start;
    }

    .booking-contact{
        text-align:left;
    }

    .booking-phone{
        font-size:36px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .big-cta h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .membership-content{
        padding:25px;
    }

    .membership-content h2{
        font-size:34px;
        line-height:1.15;
        word-break:break-word;
    }

    .membership-content p{
        font-size:15px;
        line-height:1.8;
    }

}

/* ===========================================================================================================================
   ABOUT HERO - PREMIUM CINEMATIC STYLE
=========================================================================================================================== */

.about-hero{
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    align-items: center;

    background-image:
    linear-gradient(
        to right,
        rgba(248,244,238,0.96) 22%,
        rgba(248,244,238,0.78) 36%,
        rgba(248,244,238,0.18) 52%,
        rgba(248,244,238,0.02) 66%
    ),
    url("assets/images/about-hero.jpeg");

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

/* =========================================
   HERO CONTENT
========================================= */

.about-hero-grid{
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 92vh;
}

.about-hero-content{
    max-width: 620px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.about-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--primary);
    margin-bottom: 30px;
}

/* IMPORTANT CHANGE */
.about-hero-content h1 span{
    color: var(--gold);
}

/* Remove Divider */
.gold-divider{
    display: none;
}

/* Paragraph */
.about-hero-content p{
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 2;
    color: #474747;
    max-width: 560px;
    margin-bottom: 50px;
}

/* =========================================
   FEATURES
========================================= */

.about-hero-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
    max-width: 720px;
}

/* Single Item */
.hero-feature{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;

    min-height: 140px;
}

/* Icon */
.hero-feature i{
    color: var(--gold);
    font-size: 38px;
    margin-bottom: 18px;
    line-height: 1;
}

/* Text */
.hero-feature span{
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--primary);

    max-width: 140px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .about-hero-content h1{
        font-size: 76px;
    }

}

@media(max-width:992px){

    .about-hero{
        min-height: auto;
        padding: 140px 0 110px;

        /* IMPORTANT CHANGE */
        background-position: 72% center;
    }

    .about-hero-grid{
        min-height: auto;
    }

    .about-hero-content h1{
        font-size: 62px;
    }

    .about-hero-content p{
        font-size: 18px;
    }

    .about-hero-features{
        grid-template-columns: repeat(2,1fr);
        gap: 24px;
    }

}

@media(max-width:768px){

    .about-hero{

        padding: 120px 0 90px;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.92),
            rgba(248,244,238,0.82)
        ),
        url("assets/images/about-hero.jpeg");

        background-position: center;
    }

    .about-hero-content{
        max-width: 100%;
    }

    .about-hero-content h1{
        font-size: 48px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .about-hero-content p{
        font-size: 16px;
        line-height: 1.9;
    }

    .about-hero-features{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-feature{
        min-height: auto;
    }

    .hero-buttons{
        flex-direction: column;
    }

}

/* =========================================
   MISSION & STORY SECTION
========================================= */

.mission-story{
    padding: 40px 0;
}

.mission-story-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Cards */

.mission-card,
.story-card{
    background: #FFFDF9;
    border: 1px solid #E8DED0;
    border-radius: 18px;
    overflow: hidden;
    padding: 25px;
    height: 100%;
}

/* Headings */

.mission-card h2,
.story-card h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    color: #061326;
    margin-bottom: 8px;
}

/* Divider */

.gold-divider{
    width: 90px;
    height: 2px;
    background: #C89B4D;
    margin: 0 auto 34px;
    position: relative;
}

.gold-divider::after{
    content: "";
    width: 10px;
    height: 10px;
    background: #C89B4D;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -4px;
}

/* Paragraph */

.story-card p,
.mission-card p{
    font-size: 16px;
    line-height: 2;
    color: #4f4f4f;
    margin-bottom: 18px;
}

/* Highlight Text */

.mission-card h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 1.25;
    color: #B8893F;
    font-weight: 500;
    margin: 24px 0;
}

/* =========================================
   VALUES GRID
========================================= */

.values-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 28px;
    margin-top: 50px;
}

/* Single Value */

.value-item{
    text-align: center;
}

/* Icon */

.value-item i{
    color: #C89B4D;
    font-size: 34px;
    margin-bottom: 18px;
}

/* Heading */

.value-item h4{
    font-size: 18px;
    color: #061326;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Text */

.value-item p{
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* =========================================
   STORY IMAGE
========================================= */

.story-card img{
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 28px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .mission-story-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .mission-card,
    .story-card{
        padding: 34px;
    }

    .mission-card h2,
    .story-card h2{
        font-size: 36px;
    }

    .mission-card h3{
        font-size: 30px;
    }

    .values-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:576px){

    .values-grid{
        grid-template-columns: 1fr;
    }

}

/* =========================================
   JOURNEY
========================================= */

.journey-section{
    padding-bottom: 60px;
}

.timeline{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline::before{
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--gold);
}

.timeline-item{
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-item i{
    width: 80px;
    height: 80px;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 30px;
}

.timeline-item h3{
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-item p{
    color: #666;
    font-size: 15px;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
}

.stat-box{
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 35px 20px;
    text-align: center;
    border-radius: 18px;
}

.stat-box h3{
    font-family: var(--heading-font);
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-box p{
    color: var(--primary);
    font-size: 15px;
}

/* =========================================
   DIFFERENT SECTION
========================================= */

.different-section{
    position: relative;
    padding: 60px 0;
    background:
    linear-gradient(rgba(6,19,38,0.88), rgba(6,19,38,0.88)),
    url("assets/images/different-bg.jpeg") center/cover no-repeat;
}

.white-title h2{
    color: white;
}

.different-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    margin-top: 30px;
}

.different-item{
    text-align: center;
}

.different-item i{
    color: var(--gold);
    font-size: 36px;
    margin-bottom: 18px;
}

.different-item h4{
    color: white;
    line-height: 1.7;
}

.different-text{
    text-align: center;
    color: #ddd;
    margin-top: 30px;
    font-size: 18px;
}

/* =========================================
   ABOUT FINAL CTA
========================================= */

.about-final-cta{
    padding: 60px 0;
}

.about-final-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ivory);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-final-content{
    padding: 70px;
}

.about-final-content h2{
    font-family: var(--heading-font);
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 26px;
    color: var(--primary);
}

.about-final-content p{
    line-height: 2;
    color: #555;
    margin-bottom: 36px;
}

.about-final-image img{
    height: 100%;
    object-fit: cover;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .about-hero-grid,
    .mission-story-grid,
    .about-final-grid{
        grid-template-columns: 1fr;
    }

    .leaders-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .different-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:992px){

    .about-hero-content h1{
        font-size: 52px;
    }

    .about-hero-content h2{
        font-size: 42px;
    }

    .mission-card h3{
        font-size: 34px;
    }

    .about-hero-features,
    .values-grid,
    .timeline,
    .stats-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-hero{
        padding: 40px 0;
    }

    .about-hero-grid{
        gap: 40px;
    }

    .about-hero-content h1{
        font-size: 42px;
    }

    .about-hero-content h2{
        font-size: 34px;
    }

    .mission-card,
    .story-card,
    .leadership-grid,
    .about-final-content{
        padding: 35px;
    }

    .values-grid,
    .timeline,
    .stats-grid,
    .leaders-grid,
    .different-grid,
    .about-hero-features{
        grid-template-columns: 1fr;
    }

    .timeline::before{
        display: none;
    }

    .about-final-content h2{
        font-size: 40px;
    }

    .different-section{
        padding: 80px 0;
    }

}

/* =========================================
   SCROLL ANIMATION
========================================= */

.hidden-item{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.show-item{
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================================================================================================
   CARE HERO
=========================================================================================================================== */

.care-hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
    linear-gradient(
        to right,
        rgba(248,244,238,0.97) 24%,
        rgba(248,244,238,0.88) 38%,
        rgba(248,244,238,0.42) 52%,
        rgba(248,244,238,0.05) 70%
    ),
    url("assets/images/care-hero.jpeg");

    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
}

/* CONTENT */

.care-hero-grid{
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.care-hero-content{
    max-width: 620px;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

/* TAG */

.hero-tag{
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-size: 18px;
}

/* HEADING */

.care-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.95;
    color: var(--primary);
    margin-bottom: 34px;
    margin-top: 70px;
    letter-spacing: -2px;
}

/* PARAGRAPH */

.care-hero-content p{
    font-size: 18px;
    line-height: 2;
    color: #4f4f4f;
    margin-bottom: 18px;
    max-width: 560px;
}

/* FEATURES */

.care-features{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 34px;
    margin-top: 30px;
    max-width: 720px;
}

/* ITEM */

.care-feature{
    text-align: center;
}

/* ICON */

.care-feature i{
    color: var(--gold);
    font-size: 36px;
    margin-bottom: 16px;
}

/* TEXT */

.care-feature span{
    display: block;
    font-size: 15px;
    line-height: 1.9;
    color: var(--primary);
    font-weight: 500;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .care-hero-content h1{
        font-size: 70px;
    }

}

@media(max-width:992px){

    .care-hero{
        min-height: auto;
        padding: 140px 0 100px;

        /* IMPORTANT */
        background-position: 78% center;
    }

    .care-hero-grid{
        min-height: auto;
    }

    .care-hero-content h1{
        font-size: 58px;
    }

    .care-features{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .care-hero{

        padding: 120px 0 90px;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.94),
            rgba(248,244,238,0.84)
        ),
        url("assets/images/care-hero.jpeg");

        background-position: center;
    }

    .care-hero-content h1{
        font-size: 46px;
        line-height: 1;
    }

    .care-features{
        grid-template-columns: 1fr;
    }

}

/* =========================================
   CARE SERVICES
========================================= */

.care-services-section{
    padding: 60px 0;
}

.care-services-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 22px;
}

.care-service-card{
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.care-service-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.care-service-card img{
    height: 260px;
    object-fit: cover;
}

.service-icon{
    width: 74px;
    height: 74px;
    background: white;
    border-radius: 50%;
    border: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-top: -36px;

    position: relative;
    z-index: 2;
}

.service-icon i{
    color: var(--gold);
    font-size: 28px;
}

.service-content{
    padding: 20px 24px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3{
    font-family: var(--heading-font);
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.1;
}

.service-content p{
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-content a{
    color: var(--gold);
    font-weight: 600;
    margin-top: auto;
}

.care-btn-center{
    text-align: center;
    margin-top: 36px;
}

/* =========================================
   WHY CARE
========================================= */

.why-care-section{
    padding-bottom: 60px;
}

.why-care-grid{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--ivory);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.why-care-image img{
    height: 100%;
    object-fit: cover;
}

.why-care-content{
    padding: 50px;
}

.left-title{
    text-align: left;
}

.left-title::after{
    left: 0;
    transform: none;
}

.why-care-features{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-care-item{
    text-align: center;
}

.why-care-item i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 16px;
}

.why-care-item h4{
    font-size: 15px;
    line-height: 1.8;
    color: var(--primary);
}

/* =========================================
   PROCESS
========================================= */

.process-section{
    padding-bottom: 60px;
}

.process-grid{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--ivory);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.process-content{
    padding: 50px;
}

.process-steps{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px;
    margin-top: 50px;
}

.process-step{
    text-align: center;
    position: relative;
}

.step-icon{
    width: 78px;
    height: 78px;
    background: var(--primary);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 18px;
}

.step-icon i{
    color: white;
    font-size: 28px;
}

.process-step h4{
    font-size: 15px;
    line-height: 1.7;
    color: var(--primary);
}

.process-image img{
    height: 100%;
    object-fit: cover;
}

/* =========================================
   CTA
========================================= */

.care-cta{
    padding: 60px 0;
    background:
    linear-gradient(
        to right,
        rgba(6,19,38,0.94),
        rgba(6,19,38,0.35)
    ),
    url("assets/images/about-hero.jpeg") center/cover no-repeat;
}

.care-cta-content{
    max-width: 640px;
}

.care-cta-content h2{
    font-family: var(--heading-font);
    font-size: 72px;
    line-height: 1;
    color: white;
    margin-bottom: 28px;
}

.care-cta-content p{
    color: #f0f0f0;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px){

    .care-services-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:1200px){

    .why-care-grid,
    .process-grid{
        grid-template-columns: 1fr;
    }

    .why-care-features,
    .process-steps{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:992px){

    .care-hero{
        min-height: auto;
        padding: 140px 0 100px;
        background-position: 72% center;
    }

    .care-hero-grid{
        min-height: auto;
    }

    .care-hero-content h1{
        font-size: 60px;
    }

    .care-features{
        grid-template-columns: repeat(2,1fr);
    }

    .care-services-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .care-hero{
        padding: 120px 0 90px;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.92),
            rgba(248,244,238,0.84)
        ),
        url("assets/images/care-hero.jpeg");

        background-position: center;
    }

    .care-hero-content h1{
        font-size: 46px;
    }

    .care-features,
    .care-services-grid,
    .why-care-features,
    .process-steps{
        grid-template-columns: 1fr;
    }

    .why-care-content,
    .process-content{
        padding: 36px;
    }

    .care-cta-content h2{
        font-size: 44px;
    }

    .hero-buttons{
        flex-direction: column;
    }

}

/* ===================================================================================================================================
   TRAVEL COMPANION PAGE
================================================================================================================================== */

/* =========================================
   TRAVEL HERO
========================================= */

.travel-hero{
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
    linear-gradient(
        to right,
        rgba(248,244,238,0.97) 22%,
        rgba(248,244,238,0.84) 38%,
        rgba(248,244,238,0.24) 54%,
        rgba(248,244,238,0.04) 72%
    ),
    url("assets/images/city-hero.jpeg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.travel-hero-grid{
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.travel-hero-content{
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-tag{
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-size: 18px;
}

.travel-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.96;
    color: var(--primary);
    margin-bottom: 30px;
    margin-top: 70px;
    letter-spacing: -2px;
}

.travel-hero-content h1 span{
    color: var(--gold);
}

.travel-hero-content p{
    font-size: 18px;
    line-height: 2;
    color: #505050;
    margin-bottom: 18px;
}

.travel-features{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    margin-top: 45px;
    margin-bottom: 42px;
}

.travel-feature{
    text-align: center;
}

.travel-feature i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 14px;
}

.travel-feature span{
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
}

.travel-note{
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 26px;
    max-width: 620px;
}

.travel-note i{
    color: var(--gold);
    margin-top: 4px;
}

.travel-note span{
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

/* =========================================
   TRUST SECTION
========================================= */

.travel-trust-section{
    margin-top: -55px;
    position: relative;
    z-index: 5;
}

.travel-trust-box{
    background:
    linear-gradient(
        90deg,
        #071326,
        #081d3d
    );

    border-radius: 20px;
    padding: 55px 50px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.travel-trust-box h2{
    font-family: var(--heading-font);
    font-size: 46px;
    color: white;
    margin-bottom: 14px;
}

.travel-trust-box p{
    color: rgba(255,255,255,0.82);
    margin-bottom: 48px;
    font-size: 16px;
}

.travel-trust-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 28px;
}

.travel-trust-item{
    text-align: center;
    position: relative;
}

.travel-trust-item::after{
    content: "";
    position: absolute;
    top: 10px;
    right: -14px;
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.12);
}

.travel-trust-item:last-child::after{
    display: none;
}

.travel-trust-item i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 16px;
}

.travel-trust-item span{
    display: block;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================
   JOURNEY TYPES
========================================= */

.journey-types-section{
    padding: 60px 0;
}

.section-subtitle{
    text-align: center;
    margin-top: 16px;
    color: #555;
    font-size: 17px;
}

.journey-types-grid{
    display: grid;
    grid-template-columns: repeat(6, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 30px;
    align-items: start;
}

.journey-type-card{
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 290px;
    margin: auto;
}

.journey-type-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.journey-type-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.journey-type-card h4{
    font-size: 15px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 600;
    padding: 18px 12px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   ECOSYSTEM
========================================= */

.travel-ecosystem-section{
    padding-bottom: 60px;
}

.travel-ecosystem-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 22px;
}

.travel-ecosystem-card{
    background: white;
    border-radius: 18px;
    overflow: hidden;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.travel-ecosystem-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.travel-ecosystem-card img{
    height: 210px;
    object-fit: cover;
}

.ecosystem-content{
    padding: 24px;
}

.ecosystem-content h3{
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.ecosystem-content p{
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

.travel-plan-box{
    background:
    linear-gradient(
        rgba(6,19,38,0.95),
        rgba(6,19,38,0.95)
    ),
    url("assets/images/travel-plan-bg.jpeg");

    background-size: cover;
    background-position: center;

    border-radius: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 30px;
}

.travel-plan-box i{
    color: var(--gold);
    font-size: 54px;
    margin-bottom: 28px;
}

.travel-plan-box h3{
    color: white;
    font-family: var(--heading-font);
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* =========================================
   BIG CTA
========================================= */

.travel-big-cta{
    background-image:
    linear-gradient(
        to right,
        rgba(6,19,38,0.95),
        rgba(6,19,38,0.42)
    ),
    url("assets/images/different-bg.jpeg");
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px){

    .journey-types-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .travel-ecosystem-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:1200px){

    .travel-trust-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:992px){

    .travel-hero{
        min-height: auto;
        padding: 140px 0 100px;
        background-position: 72% center;
    }

    .travel-hero-grid{
        min-height: auto;
    }

    .travel-hero-content h1{
        font-size: 58px;
    }

    .travel-features{
        grid-template-columns: repeat(2,1fr);
    }

    .travel-ecosystem-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .travel-hero{

        padding: 120px 0 90px;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.94),
            rgba(248,244,238,0.88)
        ),
        url("assets/images/travel-hero.jpeg");

        background-position: center;
    }

    .travel-hero-content h1{
        font-size: 44px;
        line-height: 1;
    }

    .travel-features,
    .travel-trust-grid,
    .journey-types-grid,
    .travel-ecosystem-grid{
        grid-template-columns: 1fr;
    }

    .travel-trust-box{
        padding: 40px 28px;
    }

    .travel-trust-item::after{
        display: none;
    }

    .travel-plan-box h3{
        font-size: 34px;
    }

}

/* ===========================================================================================================================================
   COMPANION PAGE
=========================================================================================================================================== */

/* =========================================
   HERO
========================================= */

.companion-hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
    linear-gradient(
        to right,
        rgba(248,244,238,0.97) 18%,
        rgba(248,244,238,0.86) 34%,
        rgba(248,244,238,0.38) 52%,
        rgba(248,244,238,0.05) 72%
    ),
    url("assets/images/companion-hero.jpeg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.companion-hero-grid{
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.companion-hero-content{
    max-width: 610px;
}

.companion-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.96;
    color: var(--primary);
    margin-bottom: 28px;
    margin-top: 50px;
    letter-spacing: -1px;
}

.companion-hero-content p{
    font-size: 18px;
    line-height: 2;
    color: #4f4f4f;
    margin-bottom: 36px;
}

.companion-features{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    margin-top: 44px;
}

.companion-feature{
    text-align: center;
}

.companion-feature i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 14px;
}

.companion-feature span{
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
}

/* =========================================
   SERVICES
========================================= */

.companion-services-section{
    padding: 60px 0;
}

/* =========================================
   DIFFERENCE SECTION
========================================= */

.companion-difference-section{
    padding-bottom: 35px;
}

.companion-difference-grid{
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
}

.difference-left,
.difference-right{
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.difference-left{
    padding: 25px;
}

.difference-right{
    padding: 25px;
}

.difference-left h2,
.difference-right h2{
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 12px;
}

.difference-left-content{
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 30px;
    align-items: center;
}

.difference-points{
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.difference-point{
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.difference-point i{
    color: var(--gold);
    font-size: 28px;
    margin-top: 3px;
}

.difference-point span{
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

.difference-left-content img{
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.difference-box-grid{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0;
}

.difference-box{
    display: flex;
    gap: 20px;
    padding: 34px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.difference-box:nth-child(2n){
    border-right: none;
}

.difference-box:nth-last-child(-n+2){
    border-bottom: none;
}

.difference-box i{
    color: var(--gold);
    font-size: 32px;
    margin-top: 4px;
}

.difference-box h4{
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}

.difference-box p{
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

/* =========================================
   PROCESS SECTION
========================================= */

.care-process-section{
    padding-bottom: 60px;
}

.care-process-box{
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.45fr 0.7fr;
}

.process-left{
    padding: 44px;
}

.left-title{
    text-align: left;
    margin-bottom: 40px;
}

.process-grid{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.process-step{
    text-align: center;
    flex: 1;
}

.step-icon{
    width: 88px;
    height: 88px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}

.step-icon i{
    color: white;
    font-size: 34px;
}

.step-number{
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin: auto;
    margin-top: -13px;
    position: relative;
    z-index: 3;
}

.process-step h4{
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 14px;
    color: var(--primary);
}

.process-step p{
    font-size: 13px;
    line-height: 1.9;
    color: #555;
}

.process-arrow{
    font-size: 34px;
    color: var(--gold);
    margin-top: 28px;
}

.process-image img{
    height: 100%;
    object-fit: cover;
}

/* =========================================
   CTA
========================================= */

.companion-cta{
    position: relative;
    overflow: hidden;

    background-image:
    linear-gradient(
        to right,
        rgba(5,18,37,0.96),
        rgba(5,18,37,0.36)
    ),
    url("assets/images/companion-cta.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.companion-cta-content{
    min-height: 420px;
    display: flex;
    align-items: center;
}

.companion-cta-content h2{
    font-family: var(--heading-font);
    font-size: 64px;
    line-height: 1;
    color: white;
    margin-bottom: 22px;
    max-width: 720px;
}

.companion-cta-content p{
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    margin-bottom: 36px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px){

    .care-services-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:1200px){

    .companion-difference-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:992px){

    .companion-hero{
        min-height: auto;
        padding: 140px 0 90px;
    }

    .companion-hero-grid{
        min-height: auto;
    }

    .companion-hero-content h1{
        font-size: 58px;
    }

    .companion-features{
        grid-template-columns: repeat(2,1fr);
    }

    .care-services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .care-process-box{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .companion-hero{

        padding: 120px 0 80px;

        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.95),
            rgba(248,244,238,0.88)
        ),
        url("assets/images/companion-hero.jpeg");

        background-position: center;
    }

    .companion-hero-content h1{
        font-size: 42px;
        line-height: 1;
    }

    .companion-features{
        grid-template-columns: 1fr;
    }

    .care-services-grid{
        grid-template-columns: 1fr;
    }

    .difference-left-content{
        grid-template-columns: 1fr;
    }

    .difference-box-grid{
        grid-template-columns: 1fr;
    }

    .difference-box{
        border-right: none;
    }

    .process-grid{
        flex-direction: column;
    }

    .process-arrow{
        display: none;
    }

    .companion-cta-content h2{
        font-size: 42px;
    }

}

/* ===========================================================================================================================================
   CITY GUARDIAN PAGE
=========================================================================================================================================== */

/* =========================================
   HERO
========================================= */

.city-guardian-hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
    linear-gradient(
        to right,
        rgba(248,244,238,0.97) 18%,
        rgba(248,244,238,0.86) 34%,
        rgba(248,244,238,0.35) 52%,
        rgba(248,244,238,0.04) 72%
    ),
    url("assets/images/cityG.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.city-hero-grid{
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.city-hero-content{
    max-width: 610px;
}

.city-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.95;
    color: var(--primary);
    margin-bottom: 26px;
    margin-top: 40px;
    letter-spacing: -1px;
}

.city-hero-content h1 span{
    color: var(--gold);
}

.city-hero-content p{
    font-size: 18px;
    line-height: 2;
    color: #4d4d4d;
    margin-bottom: 34px;
}

.city-features{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.city-feature{
    text-align: center;
}

.city-feature i{
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 14px;
}

.city-feature span{
    display: block;
    font-size: 14px;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
}

.travel-trust-section{
    margin-top: 25px;
}

/* =========================================
   LOCAL PRESENCE
========================================= */

.local-presence-section{
    padding-bottom: 60px;
}

.local-presence-grid{
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 26px;
    align-items: stretch;
}

.local-left{
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 42px;
}

.local-left h2{
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 34px;
}

.presence-cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.presence-card{
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    padding: 34px 24px;
}

.presence-card i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 18px;
}

.presence-card h4{
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 14px;
}

.presence-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.local-image img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.travel-ecosystem-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.travel-ecosystem-card{
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.travel-ecosystem-card img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.ecosystem-content{
    padding: 18px;
}

/* =========================================
   BUTTON CENTER
========================================= */

.guardian-btn-center{
    text-align: center;
    margin-top: 36px;
}

/* =========================================
   CITY CTA
========================================= */

.city-cta{
    background-image:
    linear-gradient(
        to right,
        rgba(5,18,37,0.96),
        rgba(5,18,37,0.45)
    ),
    url("assets/images/city-guaardian-cta.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px){

    .journey-types-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .travel-ecosystem-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:1200px){

    .local-presence-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:992px){

    .city-guardian-hero{
        min-height: auto;
        padding:120px 20px 80px;
    }

    .city-hero-content{
    max-width:100%;
    width:100%;
}

.city-hero-content p{
    font-size:18px;
    line-height:1.8;
    text-align:left;
}

    .city-hero-grid{
        min-height: auto;
    }

    .city-hero-content h1{
        font-size: 58px;
    }

    .city-features{
        grid-template-columns: repeat(2,1fr);
    }

    .presence-cards{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .city-guardian-hero{

        padding: 120px;
        background-image:
        linear-gradient(
            to bottom,
            rgba(248,244,238,0.95),
            rgba(248,244,238,0.88)
        ),
        url("assets/images/city-hero.jpeg");

        background-position: center;
    }

    .city-hero-content h1{
        font-size: 44px;
        line-height: 1;
    }

    .city-features{
        grid-template-columns: 1fr;
    }

    .journey-types-grid{
        grid-template-columns: 1fr;
    }

    .travel-ecosystem-grid{
        grid-template-columns: 1fr;
    }

    .local-left{
        padding: 30px 24px;
    }

    .local-left h2{
        font-size: 36px;
    }

}

/* ===========================================================================================================================================
   CONSULT A DOCTOR PAGE
=========================================================================================================================================== */

/* =========================================
   HERO
========================================= */

.doctor-hero{
     background-image: linear-gradient(
        to right,
        rgba(248,244,238,0.96) 18%,
        rgba(248,244,238,0.88) 34%,
        rgba(248,244,238,0.42) 52%,
        rgba(248,244,238,0.06) 72%
    ),
    url("assets/images/doctor-hero.jpeg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.doctor-hero-grid{
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    align-items: center;
    min-height: 92vh;
}

.doctor-hero-content{
    color: var(--primary);
}

.hero-tag{
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.doctor-hero-content h1{
    font-family: var(--heading-font);
    font-size: 82px;
    line-height: 0.92;
    margin-bottom: 28px;
    color: var(--primary);
    letter-spacing: -2px;
}

.doctor-hero-content h1 span{
    color: var(--gold);
}

.doctor-hero-content p{
    font-size: 18px;
    line-height: 2;
    color: #4f4f4f;
    margin-bottom: 34px;
    max-width: 620px;
}

.doctor-mini-features{
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 36px;
}

.doctor-mini-features div{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.doctor-mini-features i{
    color: var(--gold);
}

.doctor-hero-image{
    position: relative;
}

.doctor-hero-image img{
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

.doctor-stats-box{
    position: absolute;
    top: 30px;
    right: -20px;
    width: 220px;
    background: rgba(7,19,38,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 28px;
}

.doctor-stat{
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.doctor-stat:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.doctor-stat h3{
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 8px;
}

.doctor-stat p{
    color: rgba(255,255,255,0.84);
    line-height: 1.7;
    font-size: 14px;
}

/* =========================================
   TRUST STRIP
========================================= */

.doctor-trust-strip{
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.doctor-trust-box{
    background: white;
    border-radius: 22px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.trust-left{
    display: flex;
    align-items: center;
    gap: 24px;
}

.trust-left i{
    color: var(--gold);
    font-size: 48px;
}

.trust-left h3{
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-left p{
    color: #666;
    line-height: 1.8;
}

/* =========================================
   SPECIALITIES
========================================= */

.doctor-speciality-section{
    padding: 60px 0;
}

.doctor-speciality-grid{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 18px;
    margin-top: 50px;
}

.speciality-card{
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    padding: 28px 14px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}

.speciality-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.speciality-card i{
    color: var(--gold);
    font-size: 34px;
    margin-bottom: 16px;
    margin-bottom: auto;
    margin-top: 10px;
}

.speciality-card span{
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
}

/* MORE BUTTON CARD */

.speciality-card.more-card{
    background: var(--primary);
    cursor: pointer;
}

.speciality-card.more-card i,
.speciality-card.more-card span{
    color: white;
}

/* =========================================
   DOCTOR LIST
========================================= */

.doctor-list-section{
    padding-bottom: 50px;
}

/* =========================================
   DOCTOR GRID
========================================= */

.doctor-list-grid{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.doctor-card{
    flex: 0 0 calc((100% - 172px) / 4);
    min-width: calc((100% - 172px) / 4);
    min-height: 430px;
    height: auto;
}

.doctor-category-title{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 10px;
}

.doctor-category-title h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #04142b;
    font-weight: 600;
    margin-top: 30px;
}

/* HIDE SCROLLBAR */

.doctor-list-grid::-webkit-scrollbar{
    height: 8px;
}

.doctor-list-grid::-webkit-scrollbar-thumb{
    background: #F8F4EE;
    border-radius: 20px;
}

/* =========================================
   CARD
========================================= */

.doctor-card{
    background: white;
    border-radius: 18px;
    border: 1px solid #eee2d3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.doctor-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(5, 18, 37, 0.1);
}

/* =========================================
   IMAGE
========================================= */

.doctor-image{
    width: 100%;
    height: 400px;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
    position: relative;
}

.doctor-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   DETAILS
========================================= */

.doctor-details{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.doctor-speciality{
    color: #c99645;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* =========================================
   DESCRIPTION
========================================= */

.doctor-description{
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* =========================================
   LANGUAGE + CITY
========================================= */

.doctor-extra{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #555;
    font-size: 14px;
}

.doctor-extra span{
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-extra i{
    color: #c99645;
}

/* =========================================
   RIGHT SIDE
========================================= */

.doctor-action{
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.consultation-fee{
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.fee-price{
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.consultation-type{
    color: #c99645;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.available-time{
    font-size: 14px;
    color: #04142b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.available-time span{
    color: #0c63e7;
    font-weight: 600;
}

/* =========================================
   BUTTONS
========================================= */

.book-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(to right,#c99645,#d8a856);
    color:#fff;

    height:38px;
    width:80%;
    font-size:12px;

    border-radius:10px;
    font-size:13px;
    font-weight:600;

    transition:.3s;
}
.book-btn:hover{
    opacity: 0.9;
}

.profile-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    color: #04142b;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.profile-btn:hover{
    background: #04142b;
    color: #fff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px){

    .doctor-card{
        flex: 0 0 280px;
        min-width: 280px;
    }

}

/* =========================================
   TESTIMONIAL
========================================= */

.doctor-testimonial-section{
    padding-bottom: 60px;
}

/* =========================================
   FINAL CTA
========================================= */

.doctor-final-cta{
    padding-bottom: 110px;
}

.doctor-final-box{
    background:
    linear-gradient(
        to right,
        rgba(5,18,37,0.96),
        rgba(5,18,37,0.42)
    ),
    url("assets/images/doctor-cta.jpeg");

    background-size: cover;
    background-position: center;

    border-radius: 24px;

    padding: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.doctor-final-content h2{
    color: white;
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1;
    margin-bottom: 22px;
}

.doctor-final-content p{
    color: rgba(255,255,255,0.86);
    line-height: 2;
    max-width: 520px;
}

.doctor-header-btn{
    padding: 14px 24px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .doctor-speciality-grid{
        grid-template-columns: repeat(4,1fr);
    }

    .doctor-list-grid{
        grid-template-columns: repeat(3,1fr);
        gap: 24px;
    }

    .doctor-card img{
        height: 320px;
    }

}

@media(max-width:1200px){

    .doctor-hero-grid,
    .doctor-join-box{
        grid-template-columns: 1fr;
    }

    .doctor-process-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

@media(max-width:768px){

    .doctor-hero-content h1{
        font-size: 44px;
        line-height: 1;
    }

    .doctor-speciality-grid,
    .doctor-process-grid,
    .doctor-join-grid{
        grid-template-columns: 1fr;
    }

    .doctor-list-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }

    .doctor-card img{
        height: 260px;
    }

    .doctor-card-content{
        padding: 18px;
    }

    .doctor-card-content h3{
        font-size: 18px;
    }

    .doctor-meta h4{
        font-size: 22px;
    }

    .doctor-trust-box,
    .doctor-final-box{
        flex-direction: column;
        align-items: flex-start;
    }

    .doctor-join-box,
    .doctor-final-box{
        padding: 36px;
    }

    .doctor-join-left h2,
    .doctor-final-content h2{
        font-size: 40px;
    }

}

/* ================================================================================================================================
   BOOKING HERO
================================================================================================================================ */

.booking-hero{
    padding: 110px 0 150px;

    position: relative;

    background:
    linear-gradient(
        to right,
        rgba(255,248,240,0.92) 0%,
        rgba(255,248,240,0.72) 32%,
        rgba(255,248,240,0.20) 55%,
        rgba(255,248,240,0.05) 75%
    ),
    url("assets/images/booking-hero.jpeg");

    background-size: cover;
    background-position: center;
}

.booking-hero-content{
    max-width: 760px;
    color: var(--primary);
}

.hero-breadcrumb{
    display: inline-block;
    margin-bottom: 26px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a64f;
}

.booking-hero-content h1{
    font-size: 82px;
    line-height: 0.95;
    letter-spacing: -2px;
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
    color: #071633;
    margin-bottom: 34px;
}

.booking-hero-content h1 span{
    color: #d4a64f;
    font-weight: 500;
}

.booking-hero-content p{
    font-size: 20px;
    line-height: 1.9;
    color: #4f5565;
    max-width: 760px;
}

/* =========================================
   SEARCH BAR
========================================= */

.doctor-search-section{
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.doctor-search-bar{
    background: white;
    border-radius: 18px;
    padding: 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 220px;
    gap: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.search-group{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-group label{
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.search-group input,
.search-group select{
    height: 58px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.search-btn{
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 28px;
}

.search-btn:hover{
    background: var(--gold);
}

.search-btn i{
    margin-left: 8px;
}

/* =========================================
   MAIN SECTION
========================================= */

.booking-main{
    padding: 70px 0 100px;
}

.booking-layout{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

/* =========================================
   FILTER SIDEBAR
========================================= */

.filter-sidebar{
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    position: sticky;
    top: 120px;
}

.filter-header{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}

.filter-header h3{
    font-size: 20px;
    color: var(--primary);
}

.filter-header a{
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.filter-block{
    margin-bottom: 35px;
}

.filter-block h4{
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 18px;
}

.filter-block ul{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-block ul li{
    font-size: 15px;
    color: #555;
    cursor: pointer;
    transition: var(--transition);
}

.filter-block ul li:hover{
    color: var(--gold);
}

.filter-block li{
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-btn-wrap{
    margin-top: 10px;
}

.apply-filter-btn{
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: var(--gold);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.apply-filter-btn:hover{
    background: var(--primary);
}

/* =========================================
   DOCTOR LIST
========================================= */

.doctor-list-area{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.doctor-list-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-list-top h3{
    font-size: 22px;
    color: var(--primary);
}

/* =========================================
   PAGINATION
========================================= */

.pagination{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.pagination a{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover{
    background: var(--gold);
    color: white;
}

.active-page{
    background: var(--primary) !important;
    color: white !important;
}

/* ===========================
   BOOKING / EXPERT CONSULTATION CARDS
=========================== */

.booking-main .profile-card{
    width:100%;
    min-width:0 !important;
    max-height:none;
    min-height:0;
    height:auto;
    margin:0;
    padding:0;
}

.booking-main .doctor-list-grid.profile-cards-grid{
    width:100%;
}

.booking-main .doctor-list-grid.profile-cards-grid .profile-card-image{
    height:165px;
}

.no-doctors-found{
    color:var(--primary);
    font-size:22px;
    font-weight:500;
    padding:40px 0;
    text-align:center;
}

/* Legacy horizontal booking card styles (unused) */
.booking-main .doctor-image{
    height: 185px;
}

.booking-main .doctor-name{
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.booking-main .doctor-speciality{
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 500;
}

.booking-main .fee-price{
    font-size: 28px;
}

/* =========================================
   BOOKING PAGE - Reduce gap between fees
   and consultation type
========================================= */

.booking-main .consultation-fees-box{
    margin-bottom: 8px;
}

.booking-main .fee-row{
    padding: 8px 0;
    margin: 0;
}

.booking-main .detail-row{
    padding: 8px 0;
    margin-top: 0;
}

.booking-main .book-btn{
    margin-top: 12px;
    height:40px;
    font-size:16px;
}

/* =========================================
   BOOKING PAGE - Experience & Language Left Align
========================================= */

.booking-main .doctor-info{
    align-items: flex-start;
    justify-content: flex-start;
}

.booking-main .doctor-meta{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    gap:30px;
    margin-top:10px;
    width:auto;
}

.booking-main .doctor-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    .booking-layout{
        grid-template-columns: 1fr;
    }

    .doctor-search-bar{
        grid-template-columns: 1fr;
    }

    .search-btn{
        margin-top: 0;
        height: 56px;
    }

}

@media(max-width:768px){

    .booking-hero-content h1{
        font-size: 46px;
    }

    .doctor-card{
        padding: 18px;
    }

}

@media (max-width:768px){

    .doctor-card{
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
}

.doctor-card img{
    width:100%;
    height:auto;
    object-fit:contain;
}

.doctor-list-grid{
    gap:12px;
    padding:0 10px;
}

    .doctor-card-body{
        padding:12px;
    }

    .doctor-card .btn{
        width:100%;
    }

}

/* ===========================================================================================================================
   JOIN US PAGE
=========================================================================================================================== */

/* =========================================
   JOIN HERO
========================================= */

.join-hero{
    position: relative;
    height: 520px;
    min-height: 520px;
    padding: 0;
    overflow: hidden;

    background:
    linear-gradient(
        to right,
        rgba(255,248,240,0.96) 0%,
        rgba(255,248,240,0.88) 28%,
        rgba(255,248,240,0.55) 42%,
        rgba(255,248,240,0.10) 58%,
        rgba(255,248,240,0.00) 70%
    ),
    url("assets/images/join-hero.jpeg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.join-hero-content{
    position: absolute;
    left: 60px;
    bottom: 60px;
    z-index: 2;
}

.hero-breadcrumb{
    display: inline-block;
    font-size: 14px;
    color: rgba(5,18,37,0.75);
    margin-bottom: 26px;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons{
    display: flex;
    gap: 18px;
    align-items: center;
}

.btn-secondary{
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover{
    background: #0b2344;
    transform:translateY(-2px);
    color: var(--white);
}

.btn-secondary i{
    margin-left: 8px;
}

/* =========================================
   PLATFORM BUILT FOR EXPERTS
========================================= */

.join-platform-section{
    background: #ffffff;
    padding: 60px 0;
    margin: 0;
}

.join-platform-list{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    align-items: stretch;
}

.join-platform-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 14px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(5, 18, 37, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.join-platform-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(5, 18, 37, 0.1);
}

.join-platform-card i{
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(200, 155, 77, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    margin: 0 auto;
}

.join-platform-card h3{
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.35;
}

/* =========================================
   BENEFITS
========================================= */

.join-benefits-section{
    background: #ffffff;
    padding: 60px 0;
}

.join-benefits-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 30px;
    align-items: stretch;
}

.join-benefit-card{
    background: #ffffff;
    border: 1px solid rgba(5, 18, 37, 0.06);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 28px rgba(5, 18, 37, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.join-benefit-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 18, 37, 0.12);
}

.join-benefit-card i{
    display: block;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--gold);
}

.join-benefit-card h3{
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--primary);
}

.join-benefit-card p{
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* =========================================
   CURRENTLY INVITING EXPERTS
========================================= */

.join-invite-section{
    background: var(--cream);
    padding: 60px 0;
}

.join-invite-grid{
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.join-invite-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(5, 18, 37, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.join-invite-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(5, 18, 37, 0.1);
}

.join-invite-card i{
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
}

.join-invite-card h3{
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.join-invite-card span{
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
}

/* =========================================
   SELECTION JOURNEY
========================================= */

.join-process-section{
    background: #ffffff;
    padding: 60px 0;
}

.join-journey{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 0;
}

.journey-step{
    flex: 1;
    text-align: center;
    max-width: 180px;
}

.journey-icon{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 155, 77, 0.45);
    background: #ffffff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon i{
    font-size: 26px;
    color: var(--primary);
}

.journey-step h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.journey-step p{
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.journey-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
    color: rgba(5, 18, 37, 0.25);
    font-size: 14px;
    flex-shrink: 0;
}

/* =========================================
   TESTIMONIALS
========================================= */

.join-testimonials{
    padding: 60px 0;
    background: var(--cream);
}

.testimonial-box{
    background:
    linear-gradient(
        to right,
        rgba(2,14,35,0.98),
        rgba(2,14,35,0.92)
    );
    border-radius: 30px;
    padding: 48px 40px;
    margin: 0;
}

.join-testimonials .white-title{
    margin-bottom: 30px;
}

.join-testimonials .white-title h2{
    color: #ffffff;
}

.join-testimonials .white-title::after{
    background: var(--gold);
}

.join-testimonials .testimonial-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.join-testimonials .testimonial-card{
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.join-testimonials .testimonial-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.testimonial-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.testimonial-top img{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0ebe3;
}

.testimonial-top i{
    color: var(--gold);
    font-size: 22px;
}

.join-testimonials .testimonial-card p{
    color: #5f6672;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    flex: 1;
}

.join-testimonials .testimonial-user{
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: auto;
}

.join-testimonials .testimonial-user h4{
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.join-testimonials .testimonial-user span{
    color: #7b8290;
    font-size: 13px;
}

/* =========================================
   COMPARISON
========================================= */

.join-compare-section{
    background: #ffffff;
    padding: 60px 0;
}

.join-compare-wrap{
    margin-top: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(5, 18, 37, 0.06);
    overflow: hidden;
}

.join-compare-table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.join-compare-table thead th{
    background: var(--primary);
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 18px 22px;
    letter-spacing: 0.2px;
}

.join-compare-table thead th:first-child{
    text-align: left;
}

.join-compare-table tbody td{
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    border-top: 1px solid #ececec;
    border-right: 1px solid #ececec;
    text-align: center;
    vertical-align: middle;
    background: #ffffff;
}

.join-compare-table tbody td:last-child{
    border-right: none;
}

.join-compare-table tbody td:first-child{
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.join-compare-table tbody tr:last-child td{
    border-bottom: none;
}

/* =========================================
   FAQ
========================================= */

.join-faq-section{
    background: #ffffff;
    padding: 60px 0;
}

.join-faq-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.join-faq-item{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 6px 20px rgba(5, 18, 37, 0.04);
    overflow: hidden;
}

.join-faq-item summary{
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    line-height: 1.5;
}

.join-faq-item summary::-webkit-details-marker{
    display: none;
}

.join-faq-item summary::after{
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 12px;
    transition: transform 0.25s ease;
}

.join-faq-item[open] summary::after{
    transform: translateY(-50%) rotate(180deg);
}

.join-faq-item p{
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* =========================================
   FINAL CTA
========================================= */

.join-final-cta{
    padding: 0 0 60px;
    background: #ffffff;
}

.join-final-box{
    background: var(--primary);
    border-radius: 24px;
    padding: 48px 50px;
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 16px 48px rgba(5, 18, 37, 0.18);
}

.join-final-content{
    display: flex;
    align-items: center;
    gap: 24px;
}

.join-final-icon{
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(200, 155, 77, 0.35);
}

.join-final-icon i{
    font-size: 34px;
    color: #ffffff;
}

.join-final-text h2{
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 12px;
}

.join-final-text p{
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.join-final-actions{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.join-final-actions .btn{
    min-width: 260px;
    padding: 18px 32px;
    font-size: 16px;
}

.join-final-phone{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.join-final-phone i{
    color: var(--gold);
}

/* =========================================
   JOIN PAGE RESPONSIVE
========================================= */

@media(max-width:1200px){

    .join-benefits-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .join-invite-grid{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .join-invite-card{
        padding: 24px 14px;
    }

    .join-invite-card i{
        font-size: 24px;
    }

    .join-invite-card h3{
        font-size: 15px;
    }

    .join-invite-card span{
        font-size: 12px;
    }

    .join-journey{
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 12px;
    }

    .journey-step{
        max-width: 200px;
    }

    .journey-arrow:nth-child(8),
    .journey-arrow:nth-child(12){
        display: none;
    }

}

@media(max-width:992px){

    .join-benefits-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .join-invite-grid{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .join-platform-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .join-platform-card{
        padding: 22px 12px;
    }

    .join-testimonials .testimonial-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .join-faq-grid{
        grid-template-columns: 1fr;
    }

    .join-final-box{
        grid-template-columns: 1fr;
        padding: 42px 36px;
        gap: 32px;
    }

    .join-final-actions{
        align-items: stretch;
    }

    .join-final-actions .btn{
        width: 100%;
        min-width: 0;
    }

    .join-final-phone{
        justify-content: center;
    }

}

@media(max-width:768px){

    .join-platform-section{
        padding: 50px 0;
        margin: 0;
    }

    .join-benefits-section,
    .join-invite-section,
    .join-process-section,
    .join-testimonials,
    .join-compare-section,
    .join-faq-section{
        padding: 50px 0;
    }

    .join-final-cta{
        padding-bottom: 50px;
    }

    .join-benefits-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .join-invite-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .join-platform-list{
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .join-platform-card{
        padding: 20px 16px;
        gap: 12px;
    }

    .join-platform-card h3{
        font-size: 15px;
    }

    .join-journey{
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .journey-step{
        max-width: 280px;
    }

    .journey-arrow{
        padding-top: 0;
        transform: rotate(90deg);
    }

    .testimonial-box{
        padding: 36px 22px;
    }

    .join-testimonials .testimonial-grid{
        grid-template-columns: 1fr;
    }

    .join-final-content{
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .join-final-text h2{
        font-size: 30px;
    }

    .join-final-box{
        padding: 36px 24px;
        border-radius: 20px;
    }

    .join-final-icon{
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .join-final-icon i{
        font-size: 28px;
    }

    .join-compare-wrap{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .join-compare-table{
        min-width: 640px;
        table-layout: auto;
    }

    .join-compare-table thead th,
    .join-compare-table tbody td{
        padding: 16px 18px;
        font-size: 13px;
    }

}

@media(max-width:992px){

    .join-hero{
        height: 450px;
        min-height: 450px;
    }

    .join-hero-content{
        left: 40px;
        bottom: 40px;
    }

}

@media(max-width:768px){

    .join-hero{
        height: auto;
        min-height: 360px;
        padding: 0;
    }

    .join-hero-content{
        left: 20px;
        right: 20px;
        bottom: 28px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: stretch;
    }

}

/* =====================================
   EXPERT-CONSULTATION.PHP CARD ONLY
===================================== */

/* DOCTOR PAGE CARD ONLY */

.doctor-card-content .doctor-page-name{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 3px;
}

.doctor-card-content .doctor-page-degree{
    font-size: 12px;
    color: #000;
    line-height: 1.4;
    margin-bottom: 3px;
}

.doctor-card-content .doctor-page-specialization{
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 6px;
}

.doctor-card-content p{
    color:#000;
    font-size:12px;
}

.doctor-card-content h4{
    color:#000;
    font-size:12px;
}

.doctor-meta{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom: 8px;
}

.doctor-meta p{
    margin:0;
    color:#000;
    font-size:12px;
}

.experience,
.languages{
    text-align:left;
}

.doctor-meta h4{
    margin-top:4px;
    color:#000;
    font-size:14px;
    font-weight:700;
}

/* Doctor page card button only */

.doctor-page-card .btn{
    height: 30px;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 8px;
    margin-top: 7px;
}

/* ==========================
   Consultation Section
========================== */

.consultation-wrapper{
    margin-bottom:6px;
}

.consultation-text{
    font-size:12px;
    line-height:1.6;
    color:#000;

    max-height:42px;
    overflow:hidden;
    position:relative;

    transition:0.4s ease;
}

.consultation-text.expanded{
    max-height:500px;
}

/* gradient now sits BELOW text */
.consultation-fade{
    height:28px;
    margin-top:-12px;

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1) 80%
    );
}

.consultation-wrapper.expanded .consultation-fade{
    margin-top:5px;
    background:none;
    height:auto;
}

.view-more-btn{
    background:transparent;
    border:none;

    color:#c99645;
    font-size:12px;
    font-weight:700;

    cursor:pointer;
    padding:0;
}

.view-more-btn:hover{
    text-decoration:underline;
}

/* View More below cards */

.view-more-wrapper{
    display:flex;
    justify-content:flex-end;
    margin-top:20px;
}

.view-more-btn-section{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    color:#c89d4f;
    text-decoration:none;
    font-weight:600;

    transition:all .3s ease;
}

/* =====================================================
   GLOBAL RESPONSIVE SYSTEM
   ADD THIS AT VERY BOTTOM OF universal.css
===================================================== */

/* ---------- LARGE LAPTOPS ---------- */
@media (max-width: 1400px){

    .container{
        width:95%;
    }

}

/* ---------- LAPTOP ---------- */
@media (max-width: 1200px){

    .container{
        width: 100%;
    }

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1{
        font-size:clamp(42px,5vw,70px);
    }

    .membership-content,
    .final-cta-content,
    .about-final-content,
    .why-care-content,
    .process-content{
        padding:40px;
    }

}

/* ---------- TABLET ---------- */
@media (max-width: 992px){

    .container{
        width:95%;
    }

    .nav-links,
    .header-right{
        display:none;
    }

    .mobile-menu{
        display:block;
    }

    .hero,
    .about-hero,
    .care-hero,
    .travel-hero,
    .companion-hero,
    .city-guardian-hero{
        min-height:auto;
        padding:120px 0 80px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1{
        font-size:48px;
        line-height:1.1;
    }

    .trust-grid,
    .support-grid,
    .why-grid,
    .values-grid,
    .timeline,
    .stats-grid,
    .care-features,
    .travel-features,
    .city-features,
    .companion-features{
        grid-template-columns:repeat(2,1fr);
    }

    .ecosystem-grid,
    .different-grid,
    .travel-ecosystem-grid,
    .care-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .membership-container,
    .final-cta-container,
    .about-final-grid,
    .process-grid,
    .why-care-grid,
    .doctor-hero-grid,
    .local-presence-grid,
    .mission-story-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ---------- MOBILE ---------- */
@media (max-width: 768px){

    .container{
        width:100%;
        padding:0 15px;
    }

    .section{
        padding:60px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:32px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1{
        font-size:38px;
        line-height:1.1;
    }

    .hero-content p,
    .about-hero-content p,
    .care-hero-content p,
    .travel-hero-content p,
    .companion-hero-content p,
    .city-hero-content p,
    .doctor-hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .btn{
        width:100%;
    }

    .hero-buttons,
    .final-buttons{
        flex-direction:column;
    }

    .trust-grid,
    .support-grid,
    .why-grid,
    .testimonial-grid,
    .values-grid,
    .timeline,
    .stats-grid,
    .different-grid,
    .travel-trust-grid,
    .travel-features,
    .travel-ecosystem-grid,
    .care-features,
    .care-services-grid,
    .city-features,
    .companion-features,
    .presence-cards{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .membership-content,
    .final-cta-content,
    .about-final-content,
    .why-care-content,
    .process-content,
    .mission-card,
    .story-card,
    .local-left{
        padding:30px;
    }

    .doctor-card{
        min-width:100%;
        flex:0 0 100%;
    }

    .doctor-stat{
        text-align:center;
    }

    .doctor-stats-box{
        position:static;
        width:100%;
        margin-top:20px;
    }

}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px){

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:28px;
    }

    .btn{
        padding:14px 20px;
        font-size:14px;
    }

    .membership-content,
    .final-cta-content,
    .about-final-content,
    .why-care-content,
    .process-content{
        padding:20px;
    }

}

@media(max-width:768px){

    .ecosystem-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .ecosystem-card{
        width:100% !important;
        height:auto !important;
        min-height:500px;
    }

}

@media (max-width:768px){

    .final-cta-content{
        padding:30px 20px;
    }

    .final-cta-content h2{
        font-size:42px;
        line-height:1;
        word-break:break-word;
    }

    .final-cta-content p{
        font-size:15px;
    }

    .final-buttons{
        flex-direction:column;
        gap:12px;
    }

    .final-buttons .btn{
        width:100%;
    }

}

@media (max-width:768px){

    .city-guardian-grid{
        grid-template-columns:1fr;
    }

    .city-guardian-content{
        width:100%;
        max-width:100%;
        padding:20px;
    }

    .city-guardian-content h1{
        font-size:44px;
        line-height:1;
    }

    .city-guardian-content p{
        font-size:16px;
        line-height:1.8;
    }

}

@media (max-width:768px){

    .nav-container{
        height:70px;
    }

    .site-logo{
        height:45px;
        width:auto;
        object-fit:contain;
    }

    .header-phone{
        font-size:12px;
    }

}

@media(max-width:768px){

    html,
    body{
        overflow-x:hidden;
        width:100%;
    }

    img,
    video,
    iframe,
    svg{
        max-width:100%;
        height:auto;
    }

    table{
        display:block;
        width:100%;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

}

/* ===========================================================================================================================
   BLOG PAGE
=========================================================================================================================== */

/* =========================================
   BLOG HERO
========================================= */

.blog-hero{
    min-height:600px;
    max-height:650px;

    background:
    linear-gradient(
        to right,
        rgba(255,248,240,0.95) 0%,
        rgba(255,248,240,0.90) 25%,
        rgba(255,248,240,0.55) 45%,
        rgba(255,248,240,0.15) 65%,
        rgba(255,248,240,0.00) 100%
    ),
    url('assets/images/hero2.jpeg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.blog-hero .container{
    max-width:1400px;
}

.blog-hero-content{
    max-width:650px;
}

.blog-main{
    padding:20px 0;
    padding-top: 40px;
    background:#faf8f4;
}

.blog-layout{
    display:grid;
    grid-template-columns:3fr 320px;
    gap:40px;
    align-items:start;
}

/* =========================================
   CATEGORY TABS
========================================= */

.category-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.tab-btn{
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    background:#fff;
    color:#07172B;
    border:1px solid #e5e5e5;
    transition:.3s;
}

.tab-btn:hover,
.tab-btn.active{
    background:#B8872B;
    color:#fff;
}

/* =========================================
   SEARCH
========================================= */

.blog-search{
    position:relative;
    margin-bottom:35px;
}

.blog-search input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 65px 0 20px;
    font-size:15px;
}

.blog-search button{
    position:absolute;
    right:8px;
    top:8px;
    width:42px;
    height:42px;
    border:none;
    border-radius:10px;
    background:#07172B;
    color:#fff;
    cursor:pointer;
}

/* =========================================
   BLOG GRID
========================================= */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(240px, 320px));
    gap:25px;
}

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-6px);
}

.blog-card-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.blog-card-content{
    padding: 16px;
    min-height:200px;
}

.blog-category{
    color:#B8872B;
    font-size:14px;
    font-weight:600;
}

.blog-card-content h3{
    margin:6px 0;
    font-size:16px;
    line-height:1.3;
}

.blog-card-content p{
    margin-bottom:15px;
    color:#666;
    line-height:1.6;
    font-size:14px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
    font-size:12px;
    color:#777;
    
}

.read-more{
    color:#07172B;
    font-size: 14px;
    font-weight:600;
    text-decoration:none;

}

.read-more:hover{
    color:#B8872B;
}

/* =========================================
   SIDEBAR
========================================= */

.blog-right{
    position:sticky;
    top:100px;
}

.sidebar-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.sidebar-card h3{
    margin-bottom:20px;
}

.popular-post{
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.popular-post:last-child{
    border-bottom:none;
}

.popular-post a{
    text-decoration:none;
    color:#07172B;
    line-height:1.6;
    font-weight:500;
}

.sidebar-categories{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-categories li{
    margin-bottom:12px;
}

.sidebar-categories a{
    text-decoration:none;
    color:#444;
}

.sidebar-categories a:hover{
    color:#B8872B;
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter-box input{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    margin-top:15px;
}

.newsletter-box button{
    width:100%;
    margin-top:12px;
    height:50px;
    border:none;
    background:#B8872B;
    color:#fff;
    border-radius:12px;
    cursor:pointer;
}

/* =========================================
   PAGINATION
========================================= */

.blog-pagination-section{
    padding:20px 0 70px;
}

.blog-pagination{
    display:flex;
    justify-content:center;
    gap:10px;
}

.page-btn{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    text-decoration:none;
    background:#fff;
    color:#07172B;
    border:1px solid #eee;
}

.page-btn.active{
    background:#B8872B;
    color:#fff;
}

/* =========================================
   CTA
========================================= */

.cta-section{
    padding:60px 0;
}

.cta-box{
    background:#07172B;
    color:#fff;
    text-align:center;
    padding:70px;
    border-radius:24px;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    padding:16px 34px;
    background:#B8872B;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
}

/* =========================================
   NO BLOGS
========================================= */

.no-blogs{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
}

/* =========================================
   BLOG DETAIL PAGE
========================================= */

.blog-detail-hero{
    padding:140px 0 50px;
    background:#faf8f4;
}

.blog-back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
    color:#07172B;
    text-decoration:none;
    font-weight:600;
}

.blog-back-link:hover{
    color:#B8872B;
}

.blog-detail-hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    line-height:1.15;
    margin:12px 0 24px;
    max-width:900px;
}

.blog-detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    color:#666;
    font-size:14px;
}

.blog-detail-excerpt{
    max-width:760px;
    margin-bottom:24px;
    font-size:18px;
    line-height:1.7;
    color:#555;
}

.blog-detail-category{
    display:inline-block;
    text-decoration:none;
}

.blog-detail-main{
    padding-top:20px;
}

.blog-detail-image{
    margin-bottom:30px;
    border-radius:22px;
    overflow:hidden;
}

.blog-detail-image img{
    width:100%;
    max-height:480px;
    object-fit:cover;
    display:block;
}

.blog-detail-content{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    line-height:1.8;
    color:#444;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol{
    margin-bottom:18px;
}

.blog-detail-content h2,
.blog-detail-content h3{
    margin:28px 0 14px;
    color:#07172B;
}

.blog-detail-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:20px 0;
}

.blog-detail-content a{
    color:#B8872B;
}

.blog-related-posts{
    margin-top:40px;
}

.blog-related-posts h3{
    margin-bottom:22px;
    font-size:28px;
}

.blog-related-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
}

.blog-related-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.blog-related-image img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.blog-related-content{
    padding:18px;
}

.blog-related-content h4{
    margin:8px 0 12px;
    font-size:16px;
    line-height:1.4;
}

.blog-related-content h4 a{
    color:#07172B;
    text-decoration:none;
}

.blog-related-content h4 a:hover{
    color:#B8872B;
}

.sidebar-empty{
    color:#777;
    line-height:1.6;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .blog-layout{
        grid-template-columns:1fr;
    }

    .featured-blog-card{
        grid-template-columns:1fr;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-detail-hero h1{
        font-size:36px;
    }

    .blog-related-grid{
        grid-template-columns:1fr;
    }

    .featured-blog-content{
        padding:30px;
    }

    .featured-blog-content h2{
        font-size:32px;
    }

    .cta-box{
        padding:40px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }
}

/*======================================================================================================================================================
CONTACT HERO
======================================================================================================================================================*/

.contact-hero{
    position:relative;
    min-height:540px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:110px 0 70px;
    background:
    linear-gradient(
        90deg,
        rgba(255,248,240,.92) 0%,
        rgba(255,248,240,.85) 40%,
        rgba(255,248,240,.45) 70%,
        rgba(255,248,240,.15) 100%
    ),
    url("assets/images/contact-hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.page-hero-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:60px;
    min-height:420px;
}

.page-hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    line-height:1.1;
    color:#07172B;
    margin-bottom:18px;
    margin-top:-30px;
}

.page-hero-content h1 span{
    display:block;
    color:#B8872B;
}

.page-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.page-hero-image img{
    width:100%;
    max-width:650px;
    display:block;
}

/*==================================================
GET IN TOUCH SECTION
==================================================*/

.contact-section{
    padding:60px 0;
    background:#ffffff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:45px;
    align-items:start;  
}

/*==================================================
CONTACT FORM CARD
==================================================*/

.contact-form-card{
    background:#fff;
    border-radius:28px;
    padding:50px;
    border:1px solid #eee6db;
    box-shadow:0 20px 55px rgba(0,0,0,.06);
    transition:.35s;
}

.contact-form-card:hover{
    transform:translateY(-5px);
    box-shadow:0 28px 70px rgba(0,0,0,.10);
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    color:#07172B;
    margin-bottom:12px;
    font-weight:700;
}

.section-heading p{
    font-size:16px;
    line-height:28px;
    color:#666;
    max-width:520px;
}

/*==================================================
FORM GRID
==================================================*/

.contact-form{
    width:100%;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:10px;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.form-group label{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#07172B;
    margin-bottom:14px;
}

.form-group label span{
    color:#d62828;
}

/*==================================================
INPUT BOX
==================================================*/

.input-box{
    position:relative;
    display:flex;
    align-items:center;
}

.input-box i{
    position:absolute;
    left:18px;
    font-size:16px;
    color:#B8872B;
    z-index:2;
}

.input-box input,
.input-box select{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 20px 0 52px;
    background:#fff;
    font-size:15px;
    font-family:'Montserrat',sans-serif;
    color:#222;
    transition:.30s;
    outline:none;
}

.input-box input::placeholder{
    color:#999;
}

.input-box input:focus,
.input-box select:focus{
    border-color:#B8872B;
    box-shadow:0 0 0 4px rgba(184,135,43,.12);
}

.textarea-box{
    align-items:flex-start;
}

.textarea-box i{
    position:absolute;
    top:20px;
    left:18px;
    z-index:2;
}

/*==================================================
TEXTAREA
==================================================*/

.form-group textarea{
    width:100%;
    min-height:85px;
    resize:none;
    border:1px solid #ddd;
    border-radius:14px;
    padding:18px 20px 18px 52px; 
    font-size:15px;
    line-height:24px;
    font-family:'Montserrat',sans-serif;
    transition:.30s;
    outline:none;
}

.form-group textarea::placeholder{
    color:#999;
}

.form-group textarea:focus{
    border-color:#B8872B;
    box-shadow:0 0 0 4px rgba(184,135,43,.12);
}

/*==================================================
SUBMIT BUTTON
==================================================*/

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:35px;
    background:#B8872B;
    color:#fff;
    border:none;
    border-radius:60px;
    padding:16px 38px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    text-decoration:none;
}

.contact-btn:hover{
    background:#07172B;
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(7,23,43,.25);
}

.contact-btn i{
    transition:.35s;
}

.contact-btn:hover i{
    transform:translateX(6px);
}

/*==================================================
HELP CARD
==================================================*/

.help-card{
    position:sticky;
    top:90px;
    align-self:start;
    margin-top: 0; 
    background:linear-gradient(135deg,#07172B 0%,#0A1A33 100%);
    border-radius:28px;
    padding:45px 35px;
    box-shadow:0 22px 55px rgba(7,23,43,.25);
}

.help-card>*{
    position:relative;
    z-index:2;
}

.help-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    color:#fff;
    text-align:center;
    margin-bottom:25px;
}

.help-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:0 auto 25px;
    background:#B8872B;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 30px rgba(184,135,43,.35);
}

.help-icon i{
    font-size:34px;
    color:#fff;
}

.help-card h2{
    font-size:34px;
    font-weight:700;
    text-align:center;
    margin-bottom:12px;
    color:#fff;
}

.help-card p{
    text-align:center;
    color:rgba(255,255,255,.80);
    line-height:28px;
    margin-bottom:35px;
    font-size:15px;
}

.help-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.help-card ul li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:15px;
}

.help-card ul li:last-child{
    border-bottom:none;
}

.help-card ul li i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(184,135,43,.18);
    color:#E8C777;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
}

.call-btn{
    width:100%;
    margin-top:35px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:#B8872B;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:600;
    transition:.35s;
}

.call-btn:hover{
    background:#fff;
    color:#07172B;
    transform:translateY(-3px);
}

.call-btn i{
    transition:.35s;
}

.call-btn:hover i{
    transform:rotate(-15deg);
}

/*==================================================
WHY CHOOSE CARING SQUAD
==================================================*/

.why-contact-section{
    padding:60px 0;
    background:#FFF8F0;
    position:relative;
    overflow:hidden;
}

.why-contact-section .container{
    position:relative;
    z-index:2;
}

/*=========================================
HEADING
=========================================*/

.why-heading{
    text-align:center;
    margin-bottom:70px;
}

.why-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    font-weight:700;
    color:#07172B;
    margin-bottom:22px;
    text-transform:uppercase;
    letter-spacing:1px;
}

/*=========================================
HEADING DIVIDER
=========================================*/

.heading-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.heading-divider span{
    width:80px;
    height:2px;
    background:#B8872B;
}

.heading-divider i{
    color:#B8872B;
    font-size:18px;
}

/*=========================================
GRID
=========================================*/

.why-contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================================
CARD
=========================================*/

.why-contact-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    border:1px solid #EEE5D9;
    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.why-contact-card::before{
    content:"";
    position:absolute;
    width:120%;
    height:6px;
    background:#B8872B;
    left:-10%;
    top:0;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.why-contact-card:hover::before{
    transform:scaleX(1);
}

.why-contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/*=========================================
ICON
=========================================*/

.why-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#F6EBDD;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 28px;
    transition:.35s;
}

.why-icon i{
    font-size:34px;
    color:#B8872B;
    transition:.35s;
}

.why-contact-card:hover .why-icon{
    background:#B8872B;
    transform:rotateY(180deg);
}

.why-contact-card:hover .why-icon i{
    color:#fff;
    transform:rotateY(180deg);
}

/*=========================================
TEXT
=========================================*/

.why-contact-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#07172B;
    line-height:1.3;
    margin-bottom:18px;
    font-weight:700;
}

.why-contact-card p{
    font-size:15px;
    color:#666;
    line-height:28px;
}

/*=========================================
HOVER
=========================================*/

.why-contact-card:hover h3{
    color:#B8872B;
}

.why-contact-card:hover p{
    color:#444;
}

/*==================================================
CONTACT CTA
==================================================*/

.contact-cta{
    padding:60px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.contact-cta .container{
    position:relative;
    z-index:2;
}

.contact-cta-wrapper{
    display:grid;
    grid-template-columns:460px 1fr;
    align-items:center;
    gap:70px;
    background:#07172B;
    border-radius:35px;
    padding:60px;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 60px rgba(7,23,43,.18);
}

.contact-cta-image{
    position:relative;
    z-index:2;
}

.contact-cta-image img{
    width:100%;
    display:block;
    border-radius:24px;
}

.contact-cta-content{
    position:relative;
    z-index:2;
}

.contact-cta-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    line-height:1.15;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.contact-cta-content p{
    color:rgba(255,255,255,.82);
    font-size:16px;
    line-height:30px;
    margin-bottom:35px;
    max-width:600px;
}

.contact-cta-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.cta-call-btn,
.cta-contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    font-size:15px;
    transition:.35s;
}

.cta-call-btn{
    background:#B8872B;
    color:#fff;
}

.cta-call-btn:hover{
    background:#fff;
    color:#07172B;
    transform:translateY(-4px);
}

.cta-contact-btn{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
    background:transparent;
}

.cta-contact-btn:hover{
    background:#fff;
    color:#07172B;
    border-color:#fff;
    transform:translateY(-4px);
}

.cta-call-btn i,
.cta-contact-btn i{
    transition:.35s;
}

.cta-call-btn:hover i,
.cta-contact-btn:hover i{
    transform:translateX(5px);
}

/*==================================================
RESPONSIVE CSS
==================================================*/

/*=========================================
Large Desktop
=========================================*/

@media (max-width:1400px){

    .page-hero-content h1{
    font-size:58px;
   }

    .contact-cta-content h2{
        font-size:48px;
    }

}

/*=========================================
Laptop
=========================================*/

@media (max-width:1200px){

    .contact-hero-wrapper{
        grid-template-columns:1fr 430px;
        gap:50px;
    }

    .contact-wrapper{
        grid-template-columns:1.7fr 1fr;
        gap:35px;
    }

    .contact-form-card{
        padding:40px;
    }

    .contact-cta-wrapper{
        grid-template-columns:380px 1fr;
        padding:45px;
        gap:45px;
    }

    .contact-hero-content h1{
        font-size:52px;
    }

    .contact-cta-content h2{
        font-size:44px;
    }

    .why-contact-grid{
        gap:25px;
    }

}

/*=========================================
Tablet
=========================================*/

@media (max-width:992px){

    .contact-hero{
        padding:80px 0;
    }

    .contact-hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-hero-content{
        max-width:100%;
    }

    .breadcrumb{
        justify-content:center;
    }

    .contact-hero-image{
        margin-top:40px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .help-card{
        position:relative;
        top:0;
    }

    .form-grid{
        margin-bottom:8px;
    }

    .form-group.full-width{
        grid-column:auto;
    }

    .why-contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-cta-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-cta-image{
        max-width:420px;
        margin:auto;
    }

    .contact-cta-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .contact-cta-buttons{
        justify-content:center;
    }

}

/*=========================================
Mobile
=========================================*/

@media (max-width:768px){

    .contact-hero{
        padding:70px 0 60px;
    }

    .hero-tag{
        font-size:12px;
        padding:8px 18px;
    }

    .contact-hero-content h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:40px;
    }

     .contact-wrapper{
        display:block !important;
    }

    .contact-form-card{
        margin-bottom:35px;
    }

    .help-card{
        position:static !important;
        top:auto !important;
        margin-top:0 !important;
    }

    .contact-form-card:hover,
.help-card:hover{
    transform:none !important;
}

    .help-card h2{
        font-size:30px;
    }

    .help-icon{
        width:75px;
        height:75px;
    }

    .help-icon i{
        font-size:28px;
    }

    .why-heading h2{
        font-size:42px;
    }

    .why-contact-grid{
        grid-template-columns:1fr;
    }

    .why-contact-card{
        padding:35px 25px;
    }

    .contact-cta-wrapper{
        padding:35px 30px;
        border-radius:25px;
    }

    .contact-cta-content h2{
        font-size:38px;
    }

    .contact-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-call-btn,
    .cta-contact-btn{
        width:100%;
    }

}

/*=========================================
Small Mobile
=========================================*/

@media (max-width:576px){

    .contact-section,
    .why-contact-section,
    .contact-cta{
        padding:70px 0;
    }

    .contact-hero-content h1{
        font-size:34px;
        line-height:1.2;
    }

    .section-heading h2{
        font-size:34px;
    }

    .why-heading h2{
        font-size:34px;
    }

    .contact-cta-content h2{
        font-size:32px;
    }

    .contact-form-card{
        padding:25px;
    }

    .help-card{
        padding:30px 20px;
    }

    .contact-btn{
        width:100%;
    }

    .breadcrumb{
        gap:8px;
        font-size:13px;
    }

    .heading-divider span{
        width:45px;
    }

    .why-contact-card h3{
        font-size:26px;
    }

    .contact-cta-wrapper{
        padding:30px 22px;
    }

}

/*==================================================
CONTACT PAGE FINAL POLISH
==================================================*/

/* Smooth Animation */

.contact-hero,
.contact-section,
.why-contact-section,
.contact-cta{
    animation:none;
}

/*----------------------------------
Image Hover
----------------------------------*/

.contact-hero-image img,
.contact-cta-image img{
    transition:.45s ease;
}

.contact-hero-image:hover img,
.contact-cta-image:hover img{
    transform:scale(1.03);
}

/*----------------------------------
Input Transition
----------------------------------*/

.input-box input,
.input-box select,
.form-group textarea{
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .25s ease;
}

.input-box input:hover,
.input-box select:hover,
.form-group textarea:hover{
    border-color:#B8872B;
}

.input-box input:focus,
.input-box select:focus,
.form-group textarea:focus{
    transform:translateY(-2px);
}

/*----------------------------------
Buttons
----------------------------------*/

.contact-btn,
.call-btn,
.cta-call-btn,
.cta-contact-btn{
    position:relative;
    overflow:hidden;
}

.contact-btn::before,
.call-btn::before,
.cta-call-btn::before,
.cta-contact-btn::before{

    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.15);
    transition:.5s;

}

.contact-btn:hover::before,
.call-btn:hover::before,
.cta-call-btn:hover::before,
.cta-contact-btn:hover::before{

    left:100%;

}

/*----------------------------------
Cards
----------------------------------*/

.contact-form-card,
.help-card,
.why-contact-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.contact-form-card:hover,
.help-card:hover,
.why-contact-card:hover{

    transform:none;
    box-shadow:none;

}

/*----------------------------------
Icons
----------------------------------*/

.help-icon,
.why-icon{

    transition:.35s ease;

}

.help-card:hover .help-icon{

    transform:none;

}

/*----------------------------------
Lists
----------------------------------*/

.help-card ul li{

    transition:.3s;

}

.help-card ul li:hover{

    padding-left:0;

}

/*----------------------------------
Headings
----------------------------------*/

.section-heading h2,
.why-heading h2,
.contact-cta-content h2{

    letter-spacing:.5px;

}

/*----------------------------------
Selection
----------------------------------*/

.contact-section ::selection,
.contact-hero ::selection,
.why-contact-section ::selection,
.contact-cta ::selection{

    background:#B8872B;
    color:#fff;

}

/*----------------------------------
Scrollbar (Chrome)
----------------------------------*/

.contact-section ::-webkit-scrollbar{

    width:8px;

}

.contact-section ::-webkit-scrollbar-thumb{

    background:#B8872B;
    border-radius:50px;

}

/*----------------------------------
Anchor
----------------------------------*/

.contact-section a,
.contact-cta a{

    text-decoration:none;

}

/*----------------------------------
Images
----------------------------------*/

.contact-hero img,
.contact-cta img{

    max-width:100%;
    display:block;

}

/*----------------------------------
Utility
----------------------------------*/

.contact-wrapper>*,
.contact-cta-wrapper>*,
.why-contact-card{

    position:relative;
    z-index:2;

}

.contact-form-card,
.help-card,
.why-contact-card,
.contact-cta-wrapper{

    overflow:hidden;

}

/*----------------------------------
Performance
----------------------------------*/

.contact-form-card,
.help-card,
.why-contact-card,
.contact-btn,
.call-btn,
.cta-call-btn,
.cta-contact-btn,
.contact-hero-image img,
.contact-cta-image img{

    will-change:transform;

}

/* =====================================================
   SITE-WIDE RESPONSIVE COMPLETION
   Mobile / Tablet fixes — desktop layout unchanged
===================================================== */

/* ---------- MOBILE NAVIGATION (992px and below) ---------- */
@media (max-width:992px){

    .header{
        position:sticky;
    }

    .nav-container{
        position:relative;
        height:70px;
        gap:10px;
        padding-right:0;
    }

    .logo{
        flex-shrink:0;
        max-width:42%;
    }

    .header-phone{
        display:flex;
        align-items:center;
        gap:6px;
        margin-left:auto;
        margin-right:4px;
        font-size:11px;
        min-width:0;
        max-width:calc(100% - 120px);
    }

    .header-phone span{
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .header-right{
        display:flex;
        align-items:center;
        margin-left:auto;
        min-width:0;
    }

    .header-right .header-phone{
        margin-left:0;
        margin-right:4px;
    }

    .mobile-menu{
        display:flex;
        position:static;
        transform:none;
        flex-shrink:0;
    }
}

/* ---------- TOUCH-FRIENDLY CONTROLS ---------- */
@media (max-width:992px){

    .btn,
    button,
    input[type="submit"],
    input[type="button"],
    .apply-filter-btn,
    .book-btn,
    .contact-btn,
    .call-btn,
    .cta-btn,
    .cta-call-btn,
    .cta-contact-btn,
    .page-btn,
    .tab-btn,
    .blog-search button,
    .newsletter-box button,
    .search-btn,
    .view-more-btn-section{
        min-height:44px;
    }

    .social-icons a{
        min-width:44px;
        min-height:44px;
    }

}

/* ---------- TABLET GRIDS (768px – 992px) ---------- */
@media (max-width:992px){

    .blog-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .blog-right{
        position:static;
    }

    .blog-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .blog-hero{
        min-height:480px;
        max-height:none;
        padding:120px 0 80px;
    }

    .blog-detail-hero{
        padding:120px 0 40px;
    }

    .blog-detail-hero h1{
        font-size:42px;
    }

    .booking-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .filter-sidebar{
        position:static;
        width:100%;
    }

    .doctor-list-area{
        width:100%;
    }

    .about-hero-grid,
    .care-hero-grid,
    .companion-hero-grid,
    .travel-hero-grid,
    .city-hero-grid{
        grid-template-columns:1fr;
    }

    .expert-grid,
    .doctor-page-grid,
    .doctor-speciality-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

}

/* ---------- MOBILE (768px and below) ---------- */
@media (max-width:768px){

    .container{
        width:100%;
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:clamp(28px, 6vw, 32px);
    }
    .hero,
    .about-hero,
    .care-hero,
    .travel-hero,
    .companion-hero,
    .city-guardian-hero,
    .booking-hero,
    .doctor-hero,
    .contact-hero{
        min-height:auto;
        padding:100px 0 70px;
        display:flex;
        align-items:center;
    }

    .join-hero{
        height: auto;
        min-height: 360px;
        padding: 0;
        display: block;
        align-items: initial;
    }

    .join-hero-content{
        left: 20px;
        right: 20px;
        bottom: 28px;
    }

    .hero-container,
    .hero .container,
    .about-hero .container,
    .care-hero .container,
    .travel-hero .container,
    .companion-hero .container,
    .city-guardian-hero .container,
    .booking-hero .container,
    .doctor-hero .container,
    .contact-hero .container{
        width:100%;
    }

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1,
    .join-hero-content h1,
    .booking-hero-content h1,
    .contact-hero-content h1{
        font-size:clamp(28px, 8vw, 36px);
        line-height:1.15;
        word-wrap:break-word;
        overflow-wrap:break-word;
    }

    .hero-content h3{
        font-size:clamp(16px, 4.5vw, 22px);
        line-height:1.4;
    }

    .site-logo{
        height:45px;
        width:auto;
        object-fit:contain;
    }

    /* Hero sections */
    .hero-content p,
    .about-hero-content p,
    .care-hero-content p,
    .travel-hero-content p,
    .companion-hero-content p,
    .city-hero-content p,
    .doctor-hero-content p,
    .join-hero-content p,
    .booking-hero-content p{
        font-size:15px;
        line-height:1.8;
        max-width:100%;
    }

    .hero-buttons,
    .final-buttons,
    .join-final-actions{
        flex-direction:column;
        width:100%;
        gap:12px;
    }

    .hero-buttons .btn,
    .final-buttons .btn,
    .join-final-actions .btn{
        width:100%;
    }

    /* Grids — single column */
    .trust-grid,
    .support-grid,
    .why-grid,
    .testimonial-grid,
    .ecosystem-grid,
    .values-grid,
    .stats-grid,
    .different-grid,
    .care-features,
    .care-services-grid,
    .travel-features,
    .travel-ecosystem-grid,
    .city-features,
    .companion-features,
    .presence-cards,
    .journey-types-grid,
    .expert-grid,
    .doctor-page-grid,
    .doctor-speciality-grid,
    .why-contact-grid,
    .blog-grid,
    .blog-related-grid,
    .mission-story-grid,
    .about-final-grid,
    .contact-hero-wrapper,
    .contact-wrapper,
    .contact-cta-wrapper,
    .featured-blog-card{
        grid-template-columns:1fr;
    }

    .category-tabs{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .tab-btn{
        flex:1 1 auto;
        text-align:center;
        min-width:calc(50% - 10px);
    }

    /* Cards */
    .support-card,
    .ecosystem-card,
    .testimonial-card,
    .why-item,
    .blog-card,
    .doctor-card,
    .booking-main .doctor-card,
    .join-benefit-card,
    .why-contact-card,
    .blog-related-card{
        width:100%;
        max-width:100%;
    }

    .ecosystem-card{
        min-height:auto;
    }

    /* Forms — full width */
    .blog-search,
    .blog-search input,
    .newsletter-box input,
    .newsletter-box button,
    .doctor-search-bar,
    .doctor-search-bar input,
    .doctor-search-bar select,
    .search-btn,
    .input-box input,
    .input-box select,
    .input-box textarea,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .contact-form-card,
    .help-card,
    .filter-sidebar,
    .apply-filter-btn{
        width:100%;
        max-width:100%;
    }

    .form-grid,
    .doctor-search-bar{
        grid-template-columns:1fr;
        gap:12px;
    }

    .blog-detail-content{
        padding:25px 20px;
    }

    .blog-detail-hero h1{
        font-size:32px;
    }

    .blog-detail-excerpt{
        font-size:16px;
    }

    .blog-hero{
        min-height:420px;
        padding:110px 0 60px;
    }

    .blog-hero .about-hero-content h1,
    .blog-hero h1{
        font-size:36px;
    }

    /* Footer */
    .footer{
        padding-top:50px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .footer-brand p{
        margin-left:auto;
        margin-right:auto;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-links ul,
    .footer-contact ul{
        padding:0;
    }

    /* Tables & pagination */
    .pagination,
    .blog-pagination{
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .page-btn{
        min-width:44px;
    }

    .doctor-list-grid{
        flex-direction:column;
        overflow-x:visible;
        padding:0;
    }

    .doctor-list-grid .doctor-card{
        min-width:100%;
        max-width:100%;
        flex:0 0 100%;
    }

    /* Membership / CTA */
    .membership-container,
    .final-cta-container,
    .membership-content,
    .final-cta-content,
    .cta-box{
        padding:30px 20px;
    }

    .big-cta h2,
    .cta-box h2,
    .final-cta-content h2{
        font-size:32px;
        line-height:1.15;
    }

    /* Prevent horizontal scroll sitewide */
    .booking-main .doctor-card,
    .doctor-search-bar,
    .filter-sidebar,
    .pagination-wrap,
    .blog-layout,
    .blog-detail-content,
    .contact-form-card,
    .featured-blog-card{
        max-width:100%;
    }

    /* Prevent overflow from long content */
    .blog-detail-content,
    .blog-card-content,
    .doctor-card-content,
    .consultation-text{
        overflow-wrap:break-word;
        word-wrap:break-word;
    }

    .blog-detail-content img{
        max-width:100%;
        height:auto;
    }

}

/* ---------- SMALL MOBILE (576px and below) ---------- */
@media (max-width:576px){

    .nav-container{
        height:64px;
        gap:8px;
    }

    .navbar{
        top:64px;
        max-height:calc(100vh - 64px);
    }

    .site-logo{
        height:45px;
        width:auto;
        object-fit:contain;
    }

    .header-phone{
        font-size:10px;
        gap:4px;
        max-width:calc(100% - 100px);
    }

    .hero-content h1,
    .about-hero-content h1,
    .care-hero-content h1,
    .travel-hero-content h1,
    .companion-hero-content h1,
    .city-hero-content h1,
    .doctor-hero-content h1,
    .join-hero-content h1,
    .booking-hero-content h1,
    .contact-hero-content h1,
    .blog-detail-hero h1{
        font-size:clamp(26px, 7.5vw, 28px);
    }

    .tab-btn{
        min-width:100%;
    }

    .membership-content,
    .final-cta-content,
    .contact-form-card,
    .help-card{
        padding:22px 16px;
    }

    .btn{
        padding:14px 18px;
        font-size:14px;
    }

}

/* ---------- SMALL MOBILE (480px and below) ---------- */
@media (max-width:480px){

    .container{
        padding-left:12px;
        padding-right:12px;
    }

    .section{
        padding:50px 0;
    }

    .blog-card-image img{
        height:200px;
    }

    .blog-detail-image img{
        max-height:260px;
    }

}

/* ---------- EXTRA SMALL (430px and below) ---------- */
@media (max-width:430px){

    .header-phone span{
        font-size:9px;
    }

    .logo{
        max-width:38%;
    }

}

/* =====================================================
   CONTACT PAGE MOBILE OVERLAP FIX
   (Only Mobile)
===================================================== */
@media (max-width:768px){

    /* Stack form and help card */
    .contact-grid{
        display:flex !important;
        flex-direction:column !important;
        gap:30px !important;
        align-items:stretch;
    }

    /* Keep form above */
    .contact-form-card{
        margin-bottom:30px !important;
        position:relative !important;
        z-index:2 !important;
    }

    /* Extra space below submit button */
    .contact-form-card form{
        padding-bottom:25px !important;
    }

    .contact-btn{
        display:block;
        width:100%;
        margin-bottom:35px !important;
        position:relative !important;
        z-index:5 !important;
    }

    /* Reset help card positioning */
    .help-card{
        position:relative !important;
        top:auto !important;
        right:auto !important;
        left:auto !important;
        bottom:auto !important;
        transform:none !important;
        margin-top:0 !important;
        width:100% !important;
        z-index:1 !important;
    }

}