:root {
    --primary-dark: #373D3F;
    --accent-red: #E63946;
    --accent-blue: #00A8E8;
    --bg-soft: #F7F9FB;
    --white: #ffffff;
    --text-body: #5f6c72;
    --radius-premium: 22px;
    --radius-standard: 16px;
    --nav-height: 110px;
    --nav-height-shrunk: 70px;
    --primary: #0A58CA;
    --secondary: #6EA8FE;
    --accent: #0dcaf0;
    --dark: #0f172a;
    --light-gray: #f8fafc;
    --text-muted: #64748b;
    --gradient-blue: linear-gradient(135deg, #0A58CA 0%, #6EA8FE 100%);
    --gradient-soft: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    --dark-blue: #0077b6;
    --light-blue: #eaf8ff;

    /* --primary-dark: #0F1628; */
    --dark-navy: #1B1F3B;
    --brand-blue: #00A8E8;
    --brand-blue-light: #33BBFF;
    --brand-red: #E63946;
    --brand-red-light: #FF5A65;
    --soft-white: #F8FAFC;
    --light-border: #E2E8F0;
    --text-dark: #0F172A;
    --text-body: #374151;
    --text-muted: #64748B;
    --text-light: rgba(255, 255, 255, 0.75);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-card: 24px;
    --radius-pill: 999px;
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --clinic-gradient: linear-gradient(135deg,
            #00131d 0%,
            #003b57 35%,
            #005f8e 65%,
            #0077b6 85%,
            #00a8e8 100%);

    /* --blue-bg-soft: linear-gradient(180deg, #f6fcff, #eaf8ff, #dff4ff);
    --blue-card-light: linear-gradient(145deg, #ffffff, #f2fbff, #e7f7ff); */
    --blue-primary-gradient: linear-gradient(135deg, #33c4ff, #00A8E8, #0094cc);
    /* --blue-medical-soft: linear-gradient(135deg, #eaf8ff, #d4f1ff, #bdeaff);
    --blue-glow: linear-gradient(135deg, rgba(0, 168, 232, .18), rgba(0, 168, 232, .05));
    --blue-hero-light: linear-gradient(135deg, #ffffff, #f3fbff, #e6f7ff, #d9f3ff); */

    --footer-gradient-light: linear-gradient(135deg, #0077b6, #00a8e8, #90e0ef);
    --footer-gradient-dark: linear-gradient(135deg, #001f2f, #005f8e, #00a8e8);

    --gradient-light: linear-gradient(135deg, #00A8E8 0%, #80d0ff 100%);
    --gradient-dark: linear-gradient(135deg, #003b57 0%, #00A8E8 100%);


}


/* ---- GLOBAL RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: #fff;
    overflow-x: hidden;
}

/* h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); } */
a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- UTILITY ---- */
/* .section-pad { padding: 10px 0; } */
.bg-light-soft {
    background-color: var(--soft-white);
}

.text-gray-400 {
    color: rgba(255, 255, 255, 0.55) !important;
}

.text-accent-blue {
    color: var(--brand-blue);
}

.text-accent-red {
    color: var(--brand-red);
}

.text-blue {
    color: var(--brand-blue);
}

.text-red {
    color: var(--brand-red);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: rgba(0, 168, 232, 0.1);
    border: 1px solid rgba(0, 168, 232, 0.25);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 8px;
}

.section-label.light {
    color: var(--brand-blue-light);
    background: rgba(0, 168, 232, 0.12);
    border-color: rgba(0, 168, 232, 0.25);
}

.section-title {
    /* font-size: clamp(2rem, 4vw, 2.8rem); */
     font-size: 3rem;
    line-height: 1.2;
    /* margin-bottom: 16px; */
}

.section-para {
    color: var(--text-muted);
    line-height: 1.8;
}

.section-sub-para {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

@media (max-width:992px) {
    .section-title {
    /* font-size: clamp(2rem, 4vw, 2.8rem); */
    font-size: 2.8rem;
}
}

@media (max-width:576px) {
    .section-title {
    /* font-size: clamp(2rem, 4vw, 2.8rem); */
    font-size: 2.1rem;
}
    
}

html {
    overflow-x: hidden;
}

body {
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Lexend', 'Poppins', sans-serif;
    font-weight: bold;
}

h3,
h4,
h5,
h6 {
    font-family: 'Lexend', 'Poppins', sans-serif;
    font-weight: 700;
}

.text-red {
    color: var(--accent-red);
}

.bg-soft {
    background-color: var(--bg-soft);
}

.bg-dark-custom {
    background-color: var(--primary-dark);
}

.rounded-premium {
    border-radius: var(--radius-premium);
}



body.menu-open {
    overflow: hidden;
    /* Prevents background scrolling when menu is open */
}

/* --- NAVBAR BASE --- */
.navbar {
    height: var(--nav-height);
    transition: var(--transition);
    background: transparent;
    z-index: 3000;
    /* Must be higher than overlay to keep hamburger visible */
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar.scrolled {
    height: var(--nav-height-shrunk);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- BRANDING --- */
.brand-logo {
    background: var(--accent-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.brand-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-dark);
    text-decoration: none;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* --- DESKTOP NAV --- */
.nav-link-custom {
    position: relative;
    padding: 10px 15px;
    color: var(--primary-dark) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

.btn-cta {
    background: var(--accent-blue);
    color: white !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.2);
    transition: 0.3s;
    text-decoration: none;
    /* margin-left: 15px; */
}

.btn-cta:hover {
      background: linear-gradient(135deg, #0077b6, #00A8E8);
      color: white;
    /* transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.4); */
}

/* --- HAMBURGER --- */
#menuToggle {
    cursor: pointer;
    padding: 10px;
    z-index: 3001;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hamburger Animation */
#menuToggle.active .line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

#menuToggle.active .line:nth-child(2) {
    opacity: 0;
}

#menuToggle.active .line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}


@media (max-width:1200px) {
.nav-link-custom {
    padding: 10px 11px;

}

    
}


/* ================= FIXED MOBILE MENU SPACING ================= */

.mobile-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: white;
    z-index: 2000;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.4s;
}

.mobile-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Change 3: Slightly tighter gap between links for a cleaner look */
    gap: 20px;
    width: 100%;
}

/* Adjust the link font to match your screenshot more closely */
.overlay-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Lexend', sans-serif;
}

.btn-mobile-cta {
    /* margin-top: 20px;     */
    background: var(--accent-blue);
    color: white !important;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 991px) {
    .navbar {
        height: var(--nav-height-shrunk);
    }

    .d-lg-block {
        display: none !important;
    }
}

@media (min-width: 992px) {
    #menuToggle {
        display: none;
    }
}


/* --- NAVBAR --- */
/* .navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 1000;
    padding: 0;
}

.navbar.scrolled {
    height: var(--nav-height-shrunk);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-logo {
    background: var(--accent-blue) !important;
    color: white;
    border-radius: 10px;
}

.brand-main {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 0.5;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.brand-sub {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-custom {
    position: relative;
    padding: 10px 15px;
    color: var(--primary-dark) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cta {
    background: var(--accent-blue);
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.3);
    border: none;
    transition: 0.4s;
    text-decoration: none;
}


.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 10px;
}


.mobile-overlay{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: white;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .5s cubic-bezier(.77,0,.18,1), opacity .4s;
    color: black;
}

.mobile-overlay.active{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


.overlay-nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: 100%;
}


.overlay-link{
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: .5px;
    transition: .3s;
}

.overlay-link:hover{
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.btn-mobile-cta{
    margin-top: 15px;
    background: var(--accent-blue);
    color: white !important;
    padding: 16px 26px;
    border-radius: 14px;
}

.navbar{
    z-index:1000;
}
.mobile-overlay{
    z-index:2000;
}

body.menu-open{
    overflow: hidden;
    height: 100vh;
} */



/* ===== MOBILE MENU ===== */
/* .mobile-overlay{
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.77,0,.18,1), opacity .4s;
}

.mobile-overlay.active{
    transform: translateY(0);
    opacity: 1;
} */

/* body.menu-open{
    overflow: hidden;
} */


/* .nav-toggle-wrapper.active .line:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle-wrapper.active .line:nth-child(2){
    opacity:0;
}
.nav-toggle-wrapper.active .line:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}
.line{
    transition:.4s;
} */



/* @media(max-width:991px){
    .navbar-nav-custom{
        display:none !important;
    }
}


@media(min-width:992px){
    #menuToggle{
        display:none;
    }
} */




/* .overlay-nav{
    text-align:center;
    gap:28px;
}

.overlay-link{
    font-size:1.8rem;
    font-weight:700;
    transition:.3s;
}

.overlay-link:hover{
    color:var(--accent-blue);
    transform:translateY(-2px);
}


.btn-mobile-cta {
    background: var(--accent-blue);
    color: white !important;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
} */

/* ================= HERO BASE ================= */

.hero-section {
    position: relative;
    /* min-height: 100svh; */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
    padding: 150px 0 90px;
}

/* container spacing */
.hero-container {
    position: relative;
    z-index: 2;
}

/* heading */
.hero-text h1 {
    /* font-size: clamp(2.2rem, 4vw, 4rem) !important; */
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: bold;
    color: #0a2540;
}

/* paragraph */
.hero-text p {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    color: #5b6b7b;
    max-width: 540px;
}

/* badge */
.badge-premium {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 168, 232, 0.1);
    color: var(--accent-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: .4px;
}

/* image */
.hero-img {
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
    transition: transform .5s ease;
}

.hero-img:hover {
    transform: translateY(-8px) scale(1.02);
}



/* ================= BUTTONS ================= */

.btn-primary-custom {
    background: linear-gradient(135deg, #00A8E8, #0077b6);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 168, 232, .35);
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    transition: all .3s ease;
    font-size: 16px;
    text-align: center;
}

.btn-primary-custom:hover {
    /* transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 168, 232, .45); */
    /* box-shadow: 0 18px 45px rgba(0, 168, 232, .55); */
    color: #fff;
}

/* secondary */
.btn-book {
    background: #fff;
    color: #0a2540;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 700;
    border: 2px solid black;
    transition: all .3s ease;
    font-size: 16px;
    text-align: center;
}

.btn-book:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

@media (min-width: 992px) and (max-width: 1199.98px) { 

    .hero-section {
        padding: 120px 0 40px;
        text-align: center;
    }
 }

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .hero-section {
        padding: 110px 0 40px;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .hero-section {
        padding: 100px 0 30px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .badge-premium {
        font-size: 0.75rem;
        padding: 8px 14px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-primary-custom {
        padding: 10px 15px;
        font-size: 14px;
    }

    .btn-book {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* .hero-img {
        margin-top: 20px;
        max-width: 100%;
    } */
}






/* --- HERO --- */
/* .hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.badge-premium {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(0, 168, 232, 0.1);
    color: var(--accent-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #00A8E8, #0077b6);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 168, 232, .35);
    padding: 15px 20px;
    border-radius: 14px;
    text-align: center;
} */


/* .btn-primary-custom:hover {
    box-shadow: 0 18px 45px rgba(0, 168, 232, .55);
    color: #fff;
}


.btn-book {
    padding: 15px 20px;
    text-align: center;
    border-radius: 14px;
    border: 2px solid #00A8E8;
    color: #00A8E8;
    background: transparent;
    transition: all0.5s ease-in-out;
}

.btn-book:hover {
    background: #00A8E8;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 168, 232, .35);
}

.book-heading {
    color: var(--accent-blue);
}

.hero-img:hover {
    transform: scale(1.02);
} */

/* .btn-primary-custom {
    background: var(--accent-blue);
    color: white;
    padding: 15px 35px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-block;
} */

/* .btn-outline-custom {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
} */



/* About Section */
.award-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.about-icon-box {
    background: white;
    padding: 25px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-icon-box i {
    font-size: 2rem;
}

.about-icon-box h5 {
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* Book Button */
.know-btn {
    background: var(--brand-blue-light);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    transition: var(--transition);
}

.know-btn:hover {
    background: var(--brand-blue-light);
    color: #fff;
    transform: translateY(-2px);
    /* box-shadow: 0 10px 30px rgba(230,57,70,0.45); */
}



/* ================================================================
   ABOUT
================================================================ */
/* .about-section {
    background: #fff;
}

.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-main-img {
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;
    height: 480px;
    box-shadow: var(--card-shadow-hover);
} */

.about-img-accent {
    position: absolute;
    /* top: -16px; */
    /* left: -16px; */
    /* right: 40px; */
    /* bottom: 40px; */
    top: -10px;
    left: -10px;
    right: 0px;
    bottom: 0px;
    border: 2px solid var(--brand-blue);
    border-radius: calc(var(--radius-card) + 4px);
    opacity: 0.2;
    pointer-events: none;
}

.about-award-badge {
    position: absolute;
    /* bottom: 28px; */
    /* right: -20px; */
    bottom: 20px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-award-badge i {
    font-size: 28px;
    color: var(--accent-blue);
}

.about-award-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.about-award-badge small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.pillar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    background: var(--soft-white);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    padding: 18px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.pillar-card i {
    font-size: 22px;
    color: var(--brand-blue);
}

.pillar-card:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 168, 232, 0.3);
}

.pillar-card:hover i {
    color: #fff;
}



/* ===================== MOBILE RESPONSIVE ===================== */

@media (max-width: 576px) {}





/* ================================================================
   DOCTORS
================================================================ */
.doctors-section {
    overflow: visible;
}

.doctor-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.doctor-card.blue-accent {
    border-top: 4px solid var(--brand-blue);
}

.doctor-card.red-accent {
    border-top: 4px solid var(--brand-red);
}

.doctor-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-img {
    transform: scale(1.04);
}

.doctor-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 22, 40, 0.7) 0%, transparent 60%);
}

.doctor-specialty-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    color: #fff;
}

.doctor-specialty-badge.blue {
    background: var(--brand-blue);
}

.doctor-specialty-badge.red {
    background: var(--brand-red);
}

.doctor-body {
    padding: 28px;
    position: relative;
}

.doctor-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    position: absolute;
    top: -26px;
    right: 28px;
}

.doctor-icon.blue {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
}

.doctor-icon.red {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.doctor-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    padding-top: 12px;
}

.doctor-qual {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.doctor-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.5;
}

.doctor-info-row i {
    margin-top: 2px;
    font-size: 14px;
    min-width: 16px;
}

.doctor-info-row a {
    color: var(--brand-blue);
    font-weight: 600;
}

.doctor-info-row a:hover {
    color: var(--brand-red);
}

.btn-doctor-blue {
    background: rgba(0, 168, 232, 0.1);
    color: var(--brand-blue);
    border: 1.5px solid rgba(0, 168, 232, 0.25);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    width: 100%;
    transition: var(--transition);
}

.btn-doctor-blue:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.4);
    transform: translateY(-2px);
}

.btn-doctor-red {
    background: rgba(230, 57, 70, 0.08);
    color: var(--brand-red);
    border: 1.5px solid rgba(230, 57, 70, 0.2);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    width: 100%;
    transition: var(--transition);
}

.btn-doctor-red:hover {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
    transform: translateY(-2px);
}




/* 5. Service Cards */
.service-card {
    color: white;
    padding: 20px;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    transition: 0.4s;
    height: 100%;
    border-radius: 16px;
    /* background: var(--gradient-blue); */
    background: var(--accent-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-14px);
    /* background: var(--gradient-blue); */
}

.service-title {
    font-size: 45px;
}

.service-card p {
    text-align: center;
}

/* .service-card:hover h4,
        .service-card:hover p,
        .service-card:hover .service-link {
            color: white !important;
        } */

.service-icon {
    font-size: 40px;
    color: white;
    /* color: var(--primary); */
    /* margin-bottom: 25px; */
    transition: 0.3s;
}

/* .service-card:hover .service-icon {
            color: white;
        } */

.service-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
}

/* 7. Appointment Form */
.appointment-form-card {
    max-width: 600px;
    background: white;
    border-radius: var(--radius-lg);
    color: var(--dark);
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid #e2e8f0;
}

.cta-banner {
    background: linear-gradient(rgba(10, 88, 202, 0.9), rgba(10, 88, 202, 0.9)), url('https://images.unsplash.com/photo-1445527815219-ecbfec67492e?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
}

@media (max-width: 992px) {

    .service-title {
        font-size: 42px;
    }

}

@media (max-width: 576px) {

    .service-title {
        font-size: 30px;
    }

}


/* ===== Section Background ===== */
.treatment-process-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #001f2f, #00A8E8, #004e70);
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Soft medical glow */
.treatment-process-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.35), transparent 70%);
    top: -120px;
    right: -120px;
}

/* Headings */
.tp-title {
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 15px;
}

.tp-subtitle {
    max-width: 700px;
    margin: auto;
    color: #e6f7ff;
    font-size: 17px;
}

/* ===== Timeline Layout ===== */
.tp-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    /* margin-top: 70px; */
}

/* Center line */
.tp-timeline::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: .3;
}

/* Step */
.tp-step {
    width: 24%;
    position: relative;
    text-align: center;
}

/* Card Glassmorphism */
.tp-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 22px;
    transition: all .35s ease;
    height: 100%;
}

.tp-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 168, 232, .35);
}

/* Icon Circle */
.tp-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #00A8E8, #0076a8);
    box-shadow: 0 10px 25px rgba(0, 168, 232, .6);
}

/* Text */
.tp-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.tp-card p {
    font-size: 15px;
    color: #d9f3ff;
}

/* ===== Mobile Responsive Vertical Timeline ===== */
@media(max-width:991px) {

    .tp-timeline {
        flex-direction: column;
        gap: 35px;
    }

    .tp-timeline::before {
        left: 50%;
        width: 3px;
        height: 100%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, #fff, transparent);
    }

    .tp-step {
        width: 100%;
    }
}


@media (max-width:576px) {

    .treatment-process-section {
        padding: 70px 0;
    }

    .tp-title {
        font-size: 38px;
    }


}

/* Floating background container */
.tp-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content above animation */
.treatment-process-section .container {
    position: relative;
    z-index: 2;
}


/* Bubbles */
.bubble {
    position: absolute;
    bottom: -120px;
    /* background:radial-gradient(circle, rgba(0,168,232,.25), rgba(255,255,255,.05)); */
    border-radius: 50%;
    animation: floatUp linear infinite;
    /* backdrop-filter: blur(3px); */
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .55) 18%, rgba(255, 255, 255, .25) 35%, rgba(0, 168, 232, .12) 60%, rgba(0, 168, 232, .05) 75%, transparent 80%);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .8),
        inset 0 0 35px rgba(0, 168, 232, .25),
        0 8px 25px rgba(0, 168, 232, .18);

    backdrop-filter: blur(6px);
}

.b1 {
    width: 120px;
    height: 120px;
    left: 10%;
    animation-duration: 22s;
}

.b2 {
    width: 70px;
    height: 70px;
    left: 25%;
    animation-duration: 18s;
}

.b3 {
    width: 150px;
    height: 150px;
    left: 55%;
    animation-duration: 26s;
}

.b4 {
    width: 90px;
    height: 90px;
    left: 75%;
    animation-duration: 20s;
}

.b5 {
    width: 60px;
    height: 60px;
    left: 40%;
    animation-duration: 16s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    15% {
        opacity: .5;
    }

    50% {
        transform: translateY(-500px) translateX(30px);
    }

    100% {
        transform: translateY(-1000px) translateX(-40px);
        opacity: 0;
    }
}


.bubble::after {
    content: "";
    position: absolute;
    width: 35%;
    height: 35%;
    top: 18%;
    left: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .9), transparent 70%);
    filter: blur(1px);
}

/* Tooth icons */
.tooth {
    position: absolute;
    font-size: 28px;
    opacity: .18;
    animation: toothFloat linear infinite;
}

.t1 {
    left: 15%;
    bottom: -30px;
    animation-duration: 25s;
}

.t2 {
    left: 35%;
    bottom: -50px;
    animation-duration: 30s;
}

.t3 {
    left: 45%;
    bottom: -70px;
    animation-duration: 22s;
}

.t4 {
    left: 65%;
    bottom: -80px;
    animation-duration: 20s;
}

.t5 {
    left: 85%;
    bottom: -90px;
    animation-duration: 16s;
}


@keyframes toothFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: .25;
    }

    50% {
        transform: translateY(-450px) rotate(180deg);
    }

    100% {
        transform: translateY(-900px) rotate(360deg);
        opacity: 0;
    }
}


.tp-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 18px;
    /* background:linear-gradient(135deg,#00A8E8,#0076a8); */
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .55) 18%, rgba(255, 255, 255, .25) 35%, rgba(0, 168, 232, .12) 60%, rgba(0, 168, 232, .05) 75%, transparent 80%);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .8),
        inset 0 0 35px rgba(0, 168, 232, .25),
        0 8px 25px rgba(0, 168, 232, .18);

    backdrop-filter: blur(6px);
    /* box-shadow:0 10px 25px rgba(0,168,232,.35); */
    transition: .4s;
}

.tp-card:hover .tp-icon {
    transform: scale(1.15) rotate(8deg);
}


/* .clinic-gallery {
    background: linear-gradient(135deg, #eaf4ff, #ffffff, #e6f2ff);
    padding: 110px 0;
} */

/* ensure pagination never escapes section */
.clinicGallerySwiper {
    padding: 0px 0 50px;
    position: relative
}

/* CENTER FOCUS */
.swiper-slide {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    transition: .6s
}

.swiper-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px
}

.swiper-slide {
    opacity: .35;
    transform: scale(.82)
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: .7;
    transform: scale(.92)
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1)
}

.swiper-slide-active img {
    box-shadow: 0 30px 90px rgba(13, 110, 253, .45)
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 110, 253, .65), transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: .35s
}

.swiper-slide-active:hover .overlay {
    opacity: 1
}

.overlay span {
    color: #fff;
    background: rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
    padding: 8px 26px;
    border-radius: 40px;
    margin-bottom: 22px
}

/* ARROWS */
.clinic-prev,
.clinic-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, .75); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: var(--light-blue); */
    background-color: var(--accent-blue) !important;
    color: #ffffff;
    font-size: 22px;
    z-index: 20;
    cursor: pointer;
    /* color: var(--accent-blue) !important; */
}

.clinic-prev {
    left: 10px
}

.clinic-next {
    right: 10px
}

/* HORIZONTAL INDICATORS INSIDE SLIDER */
.clinic-pagination {
    position: absolute;
    /* bottom: 12px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 10px; */
    z-index: 5
}

.clinic-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cfe2ff;
    opacity: 1;
    transition: .35s
}

.clinic-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: #0d6efd
}

/* LIGHTBOX — allow pan + scroll when zoomed */
/* .glightbox-container {
    backdrop-filter: blur(25px);
    background: rgba(10, 25, 60, .92) !important
} */

/* .gslide-media {
    overflow: auto !important
} */

.gslide-media img {
    /* max-width: none !important;
    max-height: none !important;
    width: auto;
    height: auto;
    margin: auto; */
    object-fit: cover;
    cursor: pointer;
    display: block;
    border-radius: 18px;
    box-shadow: 0 40px 140px rgba(0, 0, 0, .7);
    /* cursor: grab */
}

/* .gslide-media img:active {
    cursor: grabbing
} */

.gprev,
.gnext,
.gclose {
    background: rgba(255, 255, 255, .18) !important;
    /* border-radius: 50% !important; */
    backdrop-filter: blur(14px)
}

.gslide-description {
    display: none !important
}

/* .gallery img {
    border-radius: 14px;
    width: 100%;
    height: 230px;
    object-fit: cover;
    cursor: pointer
} */


/* Section Gradient */
/* .clinic-gallery{
    background:linear-gradient(135deg,#eaf4ff,#ffffff,#e6f2ff);
    position:relative;
}


.clinicGallerySwiper img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.5s ease;
}


.clinicGallerySwiper .swiper-slide{
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:.4s;
    
}
.clinicGallerySwiper .swiper-slide:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(13,110,253,.25);
}


.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(13,110,253,.75), transparent 70%);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    opacity:0;
    transition:.4s;
}
.overlay span{
    color:#fff;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(6px);
    padding:7px 22px;
    border-radius:40px;
    margin-bottom:20px;
    font-weight:500;
    letter-spacing:.5px;
}
.swiper-slide:hover img{ transform:scale(1.08); }
.swiper-slide:hover .overlay{ opacity:1; }



.clinic-pagination{
    position:absolute;
    bottom:10px !important;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
}

.clinic-pagination .swiper-pagination-bullet{
    background:#cfe2ff;
    opacity:1;
    width:8px;
    height:8px;
    transition:.3s;
}
.clinic-pagination .swiper-pagination-bullet-active{
    width:26px;
    border-radius:20px;
    background:#0d6efd;
}


.clinic-prev,
.clinic-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d6efd;
    font-size:20px;
    cursor:pointer;
    z-index:10;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.clinic-prev{ left:-15px; }
.clinic-next{ right:-15px; }

.clinic-prev:hover,
.clinic-next:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-50%) scale(1.1);
    box-shadow:0 12px 35px rgba(13,110,253,.45);
}



@media(max-width:768px){
    .clinic-prev,.clinic-next{
        width:38px;
        height:38px;
        font-size:16px;
    }
}



.clinicGallerySwiper .swiper-slide{
    transform: scale(.82);
    opacity:.45;
    filter: blur(1.5px);
    transition: all .7s cubic-bezier(.2,.8,.2,1);
}


.clinicGallerySwiper .swiper-slide-active{
    transform: scale(1);
    opacity:1;
    filter: blur(0);
    z-index:3;
}


.clinicGallerySwiper .swiper-slide-prev,
.clinicGallerySwiper .swiper-slide-next{
    transform: scale(.92);
    opacity:.75;
    filter: blur(.3px);
    z-index:2;
}


.clinicGallerySwiper .swiper-slide-active img{
    box-shadow:0 25px 70px rgba(13,110,253,.45);
}


.clinicGallerySwiper .swiper-wrapper{
    perspective:1200px;
} */



/* Responsive Adjustments */
@media (max-width: 991px) {
    /* .section-title {
                font-size: 2rem;
            } */

    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-image-container {
        display: none;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 40px;
        text-align: center;
    }

    .timeline-dot {
        margin: 0 auto;
    }
}


/* Section styling */
/* .why-us-section {
    position: relative;
    padding: 100px 0;
    background: var(--gradient-light);
    border-radius: 2rem;
    overflow: hidden;
} */

/* Gradient text */
.text-gradient {
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Section title */
.why-us-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #001f2f;
}

/* Feature cards */
.feature-card {
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(12px);
    padding: 20px 15px;
    border-radius: 1rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);

    transition: all .35s ease;
    position: relative;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

/* Icon squares */
.icon-square {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-square {
    background: #007bbf;
}

/* Images */
.rounded-custom {
    border-radius: 1.25rem;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rounded-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {

    .why-us-section .section-title {
        font-size: 2.80rem;
    }
}

/* Responsive tweaks */
@media (max-width: 576px) {

    .why-us-section .section-title {
        font-size: 2.40rem;
    }
}





/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section {
    /* background: linear-gradient(180deg, var(--primary-dark) 0%, #0D1020 100%); */
    /* background: linear-gradient(135deg, #005F8E 0%, #00A8E8 50%, #0077B6 100%); */
    /* background:
        radial-gradient(circle at 20% 30%, rgba(0,168,232,.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,168,232,.08), transparent 45%),
        linear-gradient(180deg,#0B1220,#0D1A35 60%,#080F1F); */
    /* background: linear-gradient(135deg, #001f2f, #00A8E8, #004e70); */
    /* background: linear-gradient(135deg,
            #00131d 0%,
            #003b57 35%,
            #005f8e 65%,
            #0077b6 85%,
            #00a8e8 100%);
    ; */
    /* background:linear-gradient(180deg,#020a11,#041923 45%,#020a11); */
    background: var(--clinic-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: var(--brand-gradient); */
    /* filter:blur(180px); */
    /* background: radial-gradient(ellipse at 20% 50%, rgba(0, 168, 232, 0.06) 0%, transparent 60%); */

}

.testimonial-swiper {
    /* padding-bottom: 52px !important; */
    padding-bottom: 50px !important;
}

.testimonial-card {
    /* background: linear-gradient(135deg, #1B2A4A 0%, #0D1A35 100%); */
    /* border: 1px solid rgba(0, 168, 232, 0.2); */
    border-radius: 24px;
    padding: 25px 32px;
    position: relative;
    /* box-shadow: 0 0 40px rgba(0, 168, 232, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.05); */
    transition: var(--transition);
    height: 100%;
    /* backdrop-filter:blur(14px);
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02));
    border:1px solid rgba(0,168,232,.25);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 20px 50px rgba(0,0,0,.35); */
    /* transition:.5s; */
    backdrop-filter: blur(14px);
    /* background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)); */
    border: 1px solid rgba(0, 168, 232, .25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .65);
}

.testimonial-card:hover {
    border-color: rgba(0, 168, 232, 0.4);
    box-shadow: 0 0 60px rgba(0, 168, 232, 0.12);
    transform: translateY(-4px);
}

.testi-quote {
    font-size: 40px;
    /* color: var(--brand-blue); */
    font-size: 42px;
    background: linear-gradient(135deg, #00A8E8, #4CC9F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .7;
    /* opacity: 0.4; */
    line-height: 1;
    margin-bottom: 16px;
}

.testi-stars {
    color: #FBBF24;
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

/* ===== STARS SHIMMER ===== */
.testi-stars i {
    color: #FBBF24;
    animation: starGlow 2s infinite alternate;
}

@keyframes starGlow {
    from {
        filter: drop-shadow(0 0 0px #FBBF24)
    }

    to {
        filter: drop-shadow(0 0 6px #FBBF24)
    }
}

.testi-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    font-style: italic;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.testi-avatar.blue {
    background: linear-gradient(135deg, var(--brand-blue), #0077B6);
}

.testi-avatar.red {
    background: linear-gradient(135deg, var(--brand-red), #C1121F);
}

.testi-author strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.testi-author span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 2px;
}

/* ===== PAGINATION ===== */
/* .testimonial-swiper .swiper-pagination{
    bottom:0 !important;
} */

/* Swiper overrides */
.testimonial-swiper .swiper-pagination-bullet {
    /* background: rgba(255, 255, 255, 0.2); */
    background: rgba(255, 255, 255, .25);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.testimonial-swiper .swiper-pagination-bullet-active {
    /* background: var(--brand-blue);
    width: 28px;
    border-radius: 4px; */
    width: 34px;
    border-radius: 6px;
    background: linear-gradient(90deg, #00A8E8, #4CC9F0);
    box-shadow: 0 0 12px rgba(0, 168, 232, .7);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--brand-blue) !important;
    /* background: rgba(0, 168, 232, 0.1);
    border: 1px solid rgba(0, 168, 232, 0.25); */
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(0, 168, 232, .25), rgba(255, 255, 255, .05));
    border: 1px solid rgba(0, 168, 232, .5);
    border-radius: 12px;
    width: 46px !important;
    height: 46px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(0, 168, 232, .5);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    /* font-size: 16px !important; */
    font-size: 18px !important;
    color: #fff;
}

/* ================================================================
   CTA
================================================================ */
/* .cta-section {
    background: linear-gradient(135deg, #005F8E 0%, #00A8E8 50%, #0077B6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-anim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #005F8E, #00A8E8, #0077B6);
    background-size: 200% 200%;
    animation: ctaGradient 6s ease infinite;
    opacity: 0.7;
}

@keyframes ctaGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-title span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.cta-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-bottom: 36px;
}

.btn-cta-white {
    background: #fff;
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    background: var(--soft-white);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
} */

/* ================================================================
   CONTACT
================================================================ */
.contact-section {
    background: #fff;
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-card);
    padding: 30px 25px;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.contact-input {
    border: 1.5px solid var(--light-border);
    border-radius: 12px;
    padding: 13px 18px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-dark) !important;
    transition: var(--transition);
    background: var(--soft-white);
}

::placeholder {
    color: var(--text-dark);
}

.contact-input:focus {
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
    outline: none;
}

.form-label {
    font-size: 14px !important;
    font-weight: 700;
    color: var(--text-muted);
    /* margin-bottom: 6px; */
}


/* Floating input styling */
.form-floating>.form-control,
.form-floating>.form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

/* Focus Effect */
.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: #00A8E8;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.25);
}

/* Floating Label Color */
.form-floating>label {
    /* color: rgba(255,255,255,0.65); */
}

/* When typing */
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: #00A8E8;
    font-weight: 500;
    font-size: 18px;
}

/* Placeholder hidden */
.form-control::placeholder {
    color: transparent;
}

/* Text color */
.contact-input {
    /* color: #fff; */
    color: #00A8E8;
}


/* .form-floating label {
    font-size: 16px !important;
} */

/* Dropdown arrow white */
/* .form-select {
    filter: brightness(0) invert(1);
} */

.contact-map-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--light-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.contact-map-wrap iframe {
    flex-shrink: 0;
}

.contact-info-panel {
    /* background: var(--clinic-gradient); */
    /* background: var(--blue-primary-gradient); */
    background: linear-gradient(135deg, #0077b6, #00A8E8);
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.ci-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    /* background: rgba(0, 168, 232, 0.15); */
    /* border: 1px solid rgba(0, 168, 232, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /* color: var(--brand-blue); */
    background-color: #ffffff;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.ci-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 3px;
}

.ci-item span,
.ci-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
}

.ci-item a:hover {
    color: var(--brand-blue);
}


.send-btn{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0077b6, #00A8E8);
    font-weight: 700;
    /* position: relative;
    overflow: hidden; */
    color: white !important;
    font-size: 20px;

}

/* .send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 168, 232, .4);
} */


@media (max-width: 767px) {

    .contact-form-card {
        padding: 28px 20px;
    }

}

@media(max-width:576px) {
    .contact-form-title {
        font-size: 1.7rem;
        margin-bottom: 16px;
    }
}



/* SECTION */
.premium-appointment {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

/* PARALLAX BG */
.parallax-bg {
    position: absolute;
    inset: 0;
    background: url('assets/img/clinic-bg-img.jpg') center/cover no-repeat fixed;
    filter: brightness(.35);
    background-position: center;
}

/* SOFT GRADIENT LIGHT */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 168, 232, .25), transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(0, 168, 232, .18), transparent 50%);
}

/* CENTER CONTENT */
.appointment-wrapper {
    /* max-width:780px; */
    max-width: 550px;
    margin: auto;
}

/* TYPOGRAPHY */
.trust-badge {
    background: rgba(0, 168, 232, .15);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
}

.main-title {
    font-size: 52px;
    font-weight: 700;
    /* margin: 25px 0 10px; */
}

.main-title span {
    color: var(--accent-blue);
}

.subtitle {
    opacity: .85;
    font-size: 18px;
    margin-bottom: 25px;
}

/* BENEFITS */
.benefits {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .9;
}

.benefits i {
    color: var(--accent-blue);
}

/* GLASS CARD */
.appointment-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

/* FLOATING INPUT */
.floating-input {
    position: relative;
    margin-bottom: 22px;
}

.floating-input input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: white;
}

.floating-input select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: black;
}


.floating-input label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: .25s;
    color: #c9dbe5;
}

.floating-input input:focus+label,
.floating-input input:valid+label,
.floating-input select:focus+label,
.floating-input select:valid+label {
    top: -5px;
    background: #03141f;
    padding: 0 6px;
    font-size: 12px;
    color: var(--accent-blue);
}

/* CTA BUTTON */
.cta-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0077b6, #00A8E8);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 20px;

}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 168, 232, .4);
}

.shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
    transition: .6s;
}



/* .cta-btn:hover .shine{ left:120%; } */

@media(max-width: 1200px) {
    .premium-appointment {
        min-height: 60vh;
    }
}

/* MOBILE */
@media(max-width:992px) {
    .premium-appointment {
        min-height: 70vh;
    }

    .main-title {
        font-size: 45px;
    }
}


@media(max-width: 576px) {
    .main-title {
        font-size: 27px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .appointment-card {
        padding: 25px 18px;

    }

    .book-title {
        font-size: 22px;
    }

    .cta-btn {
        padding: 12px;
        font-size: 16px;
    }

    .premium-appointment {
        min-height: 80vh;
    }
}



/* :root{
 --accent-blue:#00A8E8;
 --dark:#001a26;
 --soft:#f4fbff;
}


.appointment-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(120deg,#001a26 10%,#003b57 60%,#00a8e8 120%);
    color:white;
    overflow:hidden;
}


.appointment-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#00a8e8 0%,transparent 70%);
    top:-200px;
    right:-200px;
    opacity:.25;
}


.badge-text{
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:.5px;
}

.title{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
}
.title span{ color:var(--accent-blue); }

.subtitle{
    opacity:.8;
    line-height:1.7;
    margin-bottom:25px;
}


.features div{
    margin-bottom:10px;
    opacity:.95;
}
.features i{
    color:var(--accent-blue);
    margin-right:10px;
}


.booking-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    padding:45px 40px;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.15);
}

.form-title{
    font-weight:600;
    margin-bottom:25px;
}


.floating-input{
    position:relative;
    margin-bottom:25px;
}

.floating-input input,
.floating-input select{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:2px solid rgba(255,255,255,.4);
    padding:12px 0;
    color:white;
    outline:none;
}

.floating-input label{
    position:absolute;
    left:0;
    top:12px;
    font-size:14px;
    color:#cdefff;
    transition:.3s;
}

.floating-input input:focus + label,
.floating-input input:valid + label,
.floating-input select:focus + label,
.floating-input select:valid + label{
    top:-12px;
    font-size:12px;
    color:var(--accent-blue);
}


.btn-book{
    width:100%;
    padding:14px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#00a8e8,#0077b6);
    color:white;
    font-weight:600;
    letter-spacing:.5px;
    transition:.35s;
}

.btn-book:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,168,232,.45);
}


.success-msg{
    display:none;
    margin-top:15px;
    color:#8fffbe;
}


@media(max-width:991px){
.title{font-size:34px;}
.booking-card{margin-top:40px;}
} */


/* ================================================================
   FOOTER
================================================================ */
/* .site-footer {
    background: var(--primary-dark);
    position: relative;
}

.footer-top-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-blue), var(--brand-red), transparent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-brand .brand-icon-tooth,
.footer-brand .brand-icon-heart {
    font-size: 20px;
}

.footer-brand .brand-name {
    font-size: 20px;
    color: #fff;
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-blue);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fh-row:last-child {
    border-bottom: none;
}

.fh-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.fh-time {
    color: #4ADE80;
    font-weight: 600;
    font-size: 11px;
}

.fh-closed {
    color: #F87171;
    font-weight: 600;
    font-size: 11px;
}

.footer-emergency p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    margin-bottom: 8px;
}

.emergency-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 6px;
    transition: var(--transition);
}

.emergency-number:hover {
    color: var(--brand-red-light);
}

.emergency-number-sm {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 4px;
    transition: var(--transition);
}

.emergency-number-sm:hover {
    color: var(--brand-blue-light);
}

.emergency-note {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
} */



.footer-section {
    background: var(--footer-gradient-light);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* .footer-section .footer-logo {
    font-size: 28px;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, #00a8e8, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

.footer-social a.social-icon:hover {
    background: #fff;
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--accent-blue);
    /* text-decoration: underline; */
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--accent-blue);
}

.footer-contact li.text-accent i {
    color: #fff;
}

.footer-section hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section p {
    /* font-size: 0.85rem; */
    color: rgba(255, 255, 255, 0.7);
}

/* Dark mode version */
@media (prefers-color-scheme: dark) {
    .footer-section {
        background: var(--footer-gradient-dark);
        color: #ffffff;
    }

    .footer-links li a:hover {
        color: #90e0ef;
    }

    .footer-social a.social-icon:hover {
        color: #0077b6;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .footer-social {
        justify-content: start;
    }
}


/*---------------- LOADER ----------------*/
#siteLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999;
    overflow: hidden;
    inset: 0;
}

.loader-circle {
    width: 70px;
    height: 70px;
    border: 6px solid #d1d1d1;
    /* border-top-color: #0b1a36; */
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {

    .loader-circle {
        width: 55px;
        height: 55px;
        border-width: 5px;
    }
}



/* ================= Scroll To Top ================= */

/* Button Base */
.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 168, 232, .35);
    visibility: hidden;
    opacity: 0;
    transform: translateY(25px) scale(.9);
    transition: all .35s ease;
}

/* Visible */
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* DEFAULT PAGE MODE (BLUE) */
.scroll-top {
    background: linear-gradient(135deg, #0077b6, var(--accent-blue));
}

.scroll-top i {
    color: #fff;
    font-size: 32px;
}

/* FOOTER MODE (WHITE GLASS) */
.scroll-top.footer-mode {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.scroll-top.footer-mode i {
    color: var(--accent-blue);
}

/* Hover */
.scroll-top:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 18px 40px rgba(0, 168, 232, .55);
}

.disabled-link {
    pointer-events: none;
    cursor: not-allowed;
}

hr {
    /* margin: 0.5rem 0 !important; */
    margin-top: 0.5rem !important;
}

/* ================================================================
   BOOKING MODAL
================================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--soft-white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--brand-red);
    color: #fff;
}

.modal-header-area h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-header-area p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.modal-doctor-select {
    display: flex;
    gap: 14px;
}

.modal-doc-opt input {
    display: none;
}

.modal-doc-opt {
    flex: 1;
    cursor: pointer;
}

.modal-doc-card {
    border: 2px solid var(--light-border);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    transition: var(--transition);
}

.modal-doc-card i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.modal-doc-card span {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.modal-doc-card small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.modal-doc-card.blue-sel i {
    color: var(--brand-blue);
}

.modal-doc-opt input:checked~.modal-doc-card.blue-sel {
    border-color: var(--brand-blue);
    background: rgba(0, 168, 232, 0.06);
}

.modal-doc-card.red-sel i {
    color: var(--brand-red);
}

.modal-doc-opt input:checked~.modal-doc-card.red-sel {
    border-color: var(--brand-red);
    background: rgba(230, 57, 70, 0.06);
}

/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.08);
    }
}

/* ================================================================
   RESPONSIVE
================================================================ */


@media (max-width: 479px) {

    .modal-box {
        padding: 28px 20px;
    }

    .modal-doctor-select {
        flex-direction: column;
    }
}