@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================
   PREMIUM COLOR SYSTEM & DESIGN TOKENS
   ========================================== */
:root {
    --teal: #00a896;
    --teal-light: #00d4aa;
    --teal-dark: #008779;
    --navy: #0f172a;
    --navy-light: #1e293b;
    --light-bg: #f8fafc;
    --surface: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --border: #e2e8f0;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --gold: #f59e0b;
    --rose: #f43f5e;
    --gradient-primary: linear-gradient(135deg, var(--teal) 0%, #008779 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c8c82 100%);
    --gradient-text: linear-gradient(135deg, var(--navy) 30%, var(--teal) 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

html {
    scroll-behavior: smooth;
}


body {
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated background mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(0, 168, 150, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(15, 23, 42, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 168, 150, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.text-teal {
    color: var(--teal);
}

/* ==========================================
   TOP BAR — PREMIUM GRADIENT
   ========================================== */
.top-bar {
    background: linear-gradient(90deg, #0f2d52 0%, #1a3d67 50%, #0c8c82 100%);
    color: #f8fbff;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right, rgba(0, 168, 150, 0.18), transparent 12%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

/* Animated shimmer on top bar */
.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer-topbar 6s ease-in-out infinite;
}

@keyframes shimmer-topbar {
    0% { left: -150%; }
    100% { left: 150%; }
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.top-bar-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top-bar-inner span a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.top-bar-inner span a:hover {
    color: #cbd5e1;
}

.top-btn {
    color: var(--navy);
    background: linear-gradient(90deg, #ffffff, #eef8ff);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.top-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(255, 255, 255, 0.18);
}

/* ==========================================
   HEADER — GLASSMORPHISM FLOATING NAV
   ========================================== */
.main-header {
    background: transparent;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    backdrop-filter: none;
    transition: var(--transition-smooth);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-pill);
    padding: 8px 12px 8px 20px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.02),
        0 10px 30px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: var(--radius-pill);
    padding: 4px;
    border: 1px solid rgba(15, 23, 42, 0.02);
}

.main-menu a {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
}

.main-menu a:hover,
.main-menu a.active {
    color: #ffffff;
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

.main-menu a::after {
    display: none;
}

/* ==========================================
   BUTTONS — PREMIUM STYLING
   ========================================== */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: var(--transition-smooth);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 168, 150, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy) 0%, #27456d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid var(--teal);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(0, 168, 150, 0.25);
    transform: translateY(-2px);
}

/* Custom Logo */
.custom-logo {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

/* ==========================================
   HERO VIDEO BANNER — CINEMATIC
   ========================================== */
.hero-section {
    background: linear-gradient(rgba(26, 42, 71, 0.8), rgba(0, 168, 150, 0.8)), url('https://via.placeholder.com/1920x800') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 0 0 50% 50% / 0 0 15% 15%;
    margin-bottom: 50px;
}

.inner-hero {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-bottom: 5px solid var(--teal);
}

.hero-video-banner {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    margin-bottom: 70px;
    border-radius: 0 0 42px 42px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    background:
        linear-gradient(90deg, rgba(3, 17, 38, 0.88), rgba(3, 17, 38, 0.42), rgba(0, 168, 150, 0.18)),
        radial-gradient(circle at top right, rgba(0, 168, 150, 0.18), transparent 18%);
}

.hero-video-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
        linear-gradient(90deg, rgba(3, 17, 38, 0.88) 0%, rgba(3, 17, 38, 0.58) 45%, rgba(0, 168, 150, 0.12) 100%);
    z-index: 0;
}

.hero-video-banner::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    width: 82%;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.22), transparent 68%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay-content {
    max-width: 640px;
    color: #ffffff;
    padding: 38px 36px;
    margin-left: 6%;
    background: linear-gradient(135deg, rgba(3, 17, 38, 0.82), rgba(3, 17, 38, 0.58));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-overlay-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--teal), #0d8f8a);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(0, 168, 150, 0.28);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 6px 16px rgba(0, 168, 150, 0.28); }
    50% { box-shadow: 0 6px 24px rgba(0, 168, 150, 0.45); }
}

.hero-overlay-content h1 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-overlay-content p {
    font-size: 18px;
    color: #eef6ff;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary:last-child {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.78);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-actions .btn-primary:last-child:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

/* ==========================================
   WAVE SECTION DIVIDER
   ========================================== */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.wave-divider.flip {
    transform: rotate(180deg);
}

/* ==========================================
   STATS SECTION — ANIMATED GRADIENT
   ========================================== */
.stats-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: stats-glow 4s ease-in-out infinite alternate;
}

@keyframes stats-glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.stat-box {
    padding: 32px 18px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stat-box h3 {
    font-size: 36px;
    color: var(--teal-light);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

.stat-box .stat-icon {
    font-size: 28px;
    color: rgba(0, 212, 170, 0.3);
    margin-bottom: 12px;
    display: block;
}

/* ==========================================
   SECTION HEADINGS — GRADIENT TEXT
   ========================================== */
.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-heading p {
    max-width: 600px;
    margin: 12px auto 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================
   LAYOUT GRIDS
   ========================================== */
.doctors-grid,
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* ==========================================
   CARDS — GLASSMORPHISM + HOVER EFFECTS
   ========================================== */
.doc-card,
.service-block {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.02),
        0 10px 20px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    padding-bottom: 20px;
    position: relative;
}

.doc-card::before,
.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.doc-card:hover::before,
.service-block:hover::before {
    opacity: 1;
}

.doc-card:hover,
.service-block:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 38px rgba(15, 23, 42, 0.12),
        0 2px 8px rgba(0, 168, 150, 0.06);
    border-color: rgba(0, 168, 150, 0.25);
}

.doc-card::after,
.service-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    border: 2.5px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.doc-card:hover::after,
.service-block:hover::after {
    border-color: rgba(0, 168, 150, 0.3);
}

.doc-img-placeholder {
    height: 200px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ced4da;
}

/* ==========================================
   ABOUT / INTRO SECTION
   ========================================== */
.billing-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    margin-bottom: 50px;
}

.billing-form,
.billing-ledger {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(0, 168, 150, 0.12),
        0 2px 4px rgba(0, 168, 150, 0.05);
}

/* ==========================================
   FOOTER — PREMIUM PANEL DESIGN
   ========================================== */
.main-footer {
    background: linear-gradient(180deg, #f7fbfd 0%, #eef7f7 100%);
    color: #17304d;
    padding: 54px 0 18px;
    border-top: 4px solid var(--teal);
    position: relative;
}

.footer-bottom {
    text-align: center;
    padding: 22px 0 0;
    color: #607089;
    font-size: 14px;
}

/* Inner page banners */
.service-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
    border-radius: 0 0 45px 45px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 39, 0.72), rgba(8, 18, 39, 0.38));
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(900px, 100%);
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.banner-text {
    color: #dce7f3;
    font-size: 18px;
    max-width: 700px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.service-banner-inner {
    max-width: 920px;
}

.service-badge {
    display: inline-block;
    background: rgba(0, 168, 150, 0.9);
    color: #fff;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.service-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ==========================================
   FOOTER PANEL & GRID
   ========================================== */
.footer-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid #e5eef5;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 28px;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e7eef7;
}

.footer-top-label {
    display: block;
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-top-phone {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.footer-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 168, 150, 0.18);
    transition: var(--transition-smooth);
}

.footer-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 168, 150, 0.25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.footer-col {
    padding-right: 10px;
}

.footer-brand {
    padding-right: 22px;
}

.footer-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-col h3 {
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col li,
.footer-col span {
    color: #5d6d85;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col a {
    color: #5d6d85;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-brand p {
    max-width: 360px;
    margin-bottom: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef7f7;
    color: var(--navy);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 168, 150, 0.3);
}

.footer-contact-list,
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-list li i {
    margin-top: 5px;
    color: var(--teal);
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.about-banner {
    margin-bottom: 70px;
}

.about-overlay {
    background: linear-gradient(90deg, rgba(5, 16, 35, 0.78), rgba(5, 16, 35, 0.48));
}

.about-banner-content {
    max-width: 900px;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 168, 150, 0.92);
    color: #fff;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-story-section {
    margin-bottom: 70px;
}

.about-grid {
    align-items: center;
    gap: 50px;
}

.about-text-block {
    padding-right: 18px;
}

.about-text-block h2 {
    color: var(--navy);
    font-size: 36px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-text-block p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image-card {
    background: var(--surface);
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.about-image-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
}

.section-tag {
    display: inline-block;
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-goals-section {
    background: var(--light-bg);
    padding: 70px 0;
    margin-bottom: 70px;
}

.about-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.about-goal-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--teal);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
}

.about-goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
}

.about-goal-card h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 18px;
}

.about-goal-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.about-leadership-section {
    background: white;
    padding: 70px 0;
    margin-bottom: 70px;
    border-top: 1px solid #eee;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.leader-card {
    text-align: center;
    max-width: 260px;
}

.leader-card img {
    height: 220px;
    width: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 4px solid #eef2ff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

.leader-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(0, 168, 150, 0.15);
}

.leader-card h3 {
    color: var(--navy);
    margin-bottom: 6px;
}

.leader-card p {
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-banner {
    margin-bottom: 70px;
}

.contact-overlay {
    background: linear-gradient(90deg, rgba(5, 16, 35, 0.78), rgba(5, 16, 35, 0.46));
}

.contact-banner-content {
    max-width: 900px;
}

.contact-badge {
    display: inline-block;
    background: rgba(0, 168, 150, 0.92);
    color: #fff;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-section {
    margin-bottom: 70px;
}

.contact-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card,
.booking-form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    padding: 32px;
}

.contact-card-header h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 168, 150, 0.08);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-item a {
    color: var(--teal);
    font-weight: 700;
}

.booking-form-card h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
}

.map-section {
    margin-bottom: 70px;
}

.map-box {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #eee;
}

/* ==========================================
   HERO OVERLAPPING QUICK ACTION CARDS
   ========================================== */
.quick-actions-section {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 50px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.quick-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.quick-card.emergency::after { background: linear-gradient(180deg, #ef4444, #dc2626); }
.quick-card.appointment::after { background: var(--gradient-primary); }
.quick-card.tpa::after { background: linear-gradient(180deg, var(--navy), #334155); }

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.85);
}

.quick-card:active {
    transform: translateY(-2px) scale(0.985);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.quick-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.quick-card:hover .quick-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.quick-card.emergency .quick-card-icon { color: #ef4444; }
.quick-card.appointment .quick-card-icon { color: var(--teal); }
.quick-card.tpa .quick-card-icon { color: var(--navy); }

.quick-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.quick-card-link {
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.quick-card.emergency .quick-card-link { color: #ef4444; }
.quick-card.appointment .quick-card-link { color: var(--teal); }
.quick-card.tpa .quick-card-link { color: var(--navy); }

.quick-card:hover .quick-card-link {
    gap: 10px;
}

/* ==========================================
   DOCTORS SPECIALTY TABS FILTER
   ========================================== */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: -15px auto 40px;
    max-width: 900px;
}

.filter-btn {
    background-color: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    font-family: 'Outfit', sans-serif;
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

/* Doctor card filtering animations */
.doc-card {
    transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s ease;
}

.doc-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

/* ==========================================
   PREMIUM TESTIMONIAL CARDS
   ========================================== */
.testimonial-card-premium {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.testimonial-card-premium::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 42px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    pointer-events: none;
}

.testimonial-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 168, 150, 0.2);
}

.rating-stars {
    color: #fbbf24;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.rating-stars i {
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.patient-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.patient-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 168, 150, 0.15);
    transition: var(--transition-smooth);
}

.testimonial-card-premium:hover .patient-profile img {
    border-color: var(--teal);
    transform: scale(1.08);
}

.patient-meta h4 {
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 700;
}

.patient-meta span {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
}

/* ==========================================
   TPA PARTNERS — ANIMATED MARQUEE
   ========================================== */
.tpa-marquee-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.tpa-marquee-container::before,
.tpa-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.tpa-marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-bg), transparent);
}

.tpa-marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--light-bg));
}

.tpa-marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.tpa-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tpa-badge {
    padding: 12px 24px;
    border: 2px solid rgba(0, 168, 150, 0.25);
    border-radius: var(--radius-pill);
    color: var(--navy);
    font-weight: 600;
    background: var(--surface);
    white-space: nowrap;
    transition: var(--transition-smooth);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tpa-badge:hover {
    border-color: var(--teal);
    background: rgba(0, 168, 150, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 150, 0.12);
}

/* ==========================================
   INTERACTIVE FAQ ACCORDION
   ========================================== */
.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
    border-color: var(--teal);
    box-shadow: 0 10px 20px rgba(0, 168, 150, 0.05);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-question h4 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--teal);
}

.faq-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
    background-color: var(--teal);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   PREMIUM SWIPER SLIDER DESIGN
   ========================================== */
.swiper {
    width: 100%;
    height: 500px;
    margin-bottom: 60px;
    border-radius: 0 0 5% 5%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--teal) !important;
}

.swiper-pagination-bullet-active {
    background: var(--teal) !important;
}

/* ==========================================
   INNER PAGES BANNER HEIGHT FIX
   ========================================== */
.hero-placeholder-section .design-placeholder {
    height: 500px !important;
}

/* ==========================================
   PREMIUM SERVICE CARDS
   ========================================== */
.service-card-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(0, 168, 150, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), #8de4d7);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 38px rgba(0, 168, 150, 0.14);
    border-color: var(--teal);
}

.service-card-premium h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.service-card-premium p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
    flex: 1;
}

/* Premium Circular Icons */
.service-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(0, 168, 150, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--teal);
    transition: var(--transition-smooth);
}

.service-card-premium:hover .service-icon-wrapper {
    background: var(--teal);
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 168, 150, 0.3);
}

/* Small Feature List inside Cards */
.service-features {
    margin-top: 15px;
    text-align: left;
    padding-top: 15px;
    border-top: 1px solid #eef3f7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--teal);
    margin-right: 5px;
}

/* Glassmorphism Tech Boxes */
.tech-box-premium {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 100%;
}

.tech-box-premium:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--teal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tech-icon {
    font-size: 40px;
    color: var(--teal);
    margin-bottom: 15px;
    opacity: 0.8;
    transition: 0.3s;
}

.tech-box-premium:hover .tech-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Patient Process Steps */
.step-box {
    text-align: center;
    padding: 28px 22px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 168, 150, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    min-height: 100%;
    transition: var(--transition-smooth);
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 168, 150, 0.3);
}

/* ==========================================
   CUSTOM MODAL & ALERT STYLES
   ========================================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: var(--surface);
    width: 90%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.custom-modal-overlay.active .custom-modal {
    transform: translateY(0) scale(1);
}

.custom-modal h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.custom-modal p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.custom-modal input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.custom-modal input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.modal-actions .btn-primary {
    border: none;
    cursor: pointer;
    padding: 10px 18px;
}

/* Custom Alert Toast */
.custom-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--surface);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    border-left: 4px solid var(--teal);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-alert.active {
    transform: translateX(0);
}

.custom-alert.error {
    border-left-color: #ef4444;
}

.custom-alert-message {
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   FLOATING SUPPORT WIDGET & SCROLL TO TOP
   ========================================== */
.floating-support-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.support-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.support-trigger:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.support-trigger.emergency {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    animation: pulse-emergency 2s ease-in-out infinite;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(239, 68, 68, 0.6); }
}

.support-trigger.emergency:hover {
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.55);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 150, 0.3);
}

/* ==========================================
   MOBILE DRAWER NAVIGATION
   ========================================== */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--surface);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
    z-index: 1050;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.active {
    right: 0;
}

.nav-drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-drawer-menu a {
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(20px);
    opacity: 0;
}

.nav-drawer.active .nav-drawer-menu a {
    transform: translateX(0);
    opacity: 1;
}

.nav-drawer.active .nav-drawer-menu a:nth-child(1) { transition-delay: 0.1s; }
.nav-drawer.active .nav-drawer-menu a:nth-child(2) { transition-delay: 0.15s; }
.nav-drawer.active .nav-drawer-menu a:nth-child(3) { transition-delay: 0.2s; }
.nav-drawer.active .nav-drawer-menu a:nth-child(4) { transition-delay: 0.25s; }

.nav-drawer-menu a:hover,
.nav-drawer-menu a.active {
    background-color: rgba(0, 168, 150, 0.08);
    color: var(--teal);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-cta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================
   FLOATING CTA BANNER (Scroll-triggered)
   ========================================== */
.floating-cta-banner {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta-banner.active {
    bottom: 90px;
}

.floating-cta-banner .cta-text {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.floating-cta-banner .cta-text span {
    color: var(--teal-light);
}

.floating-cta-banner .cta-actions {
    display: flex;
    gap: 8px;
}

.floating-cta-banner .cta-actions a {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.floating-cta-banner .cta-book {
    background: var(--gradient-primary);
    color: white;
}

.floating-cta-banner .cta-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3);
}

.floating-cta-banner .cta-call {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-cta-banner .cta-call:hover {
    background: rgba(255, 255, 255, 0.2);
}

.floating-cta-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.2s;
}

.floating-cta-close:hover {
    color: white;
}

/* ==========================================
   PREMIUM PARTICLE BACKGROUND
   ========================================== */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above particles */
.top-bar,
.main-header,
section,
.main-footer {
    position: relative;
    z-index: 1;
}

/* ==========================================
   PREMIUM INTERACTIONS & ANIMATIONS
   ========================================== */

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, #00d2c4 50%, var(--navy) 100%);
    width: 0%;
    z-index: 99999;
    transition: width 0.1s ease;
}

/* Ripple effect */
.ripple-btn {
    position: relative !important;
    overflow: hidden !important;
}

.ripple-span {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-anim 0.6s ease-out;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.4);
}

.ripple-span.dark-ripple {
    background-color: rgba(0, 168, 150, 0.25);
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 3D Tilt perspective */
.quick-card,
.doc-card,
.service-block {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Hero Text reveal */
.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: reveal-word-key 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    margin-right: 0.22em;
}

@keyframes reveal-word-key {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   HEALTH TIPS TOAST WIDGET
   ========================================== */
.health-tips-toast {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--teal);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    padding: 16px 20px;
    max-width: 320px;
    z-index: 998;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.health-tips-toast.active {
    transform: translateX(0);
    opacity: 1;
}

.health-tips-icon {
    font-size: 20px;
    color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

.health-tips-content h5 {
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-tips-content p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.health-tips-close {
    font-size: 12px;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    margin-top: 2px;
}

.health-tips-close:hover {
    color: var(--text-gray);
}

/* Custom Designer Placeholders */
.hero-placeholder-section {
    margin-bottom: 50px;
}

.design-placeholder {
    background: #e2e8f0;
    border: 3px dashed #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

.design-placeholder h2,
.design-placeholder h3 {
    margin: 0;
    color: #64748b;
}

/* ==========================================
   ENTRANCE ANIMATIONS (page-load)
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.5s ease-out forwards;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .hero-video-banner {
        height: 500px;
    }

    .hero-overlay-content {
        padding: 0 40px;
    }

    .hero-overlay-content h1 {
        font-size: 42px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billing-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text-block {
        padding-right: 0;
        text-align: center;
    }

    .about-image-card img {
        height: 380px;
    }

    .contact-panel-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .floating-cta-banner {
        width: calc(100% - 32px);
        padding: 12px 16px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .floating-cta-banner .cta-text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hamburger-btn {
        display: flex;
    }

    .main-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-col {
        padding-right: 0;
    }

    .footer-about p {
        max-width: 100%;
    }

    .top-bar {
        padding: 10px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-bar span {
        display: block;
        line-height: 1.6;
        font-size: 13px;
    }

    .top-btn {
        width: fit-content;
        margin: 0 auto;
    }

    .header-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .main-menu {
        width: 100%;
    }

    .main-menu ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-video-banner {
        height: 420px;
    }

    .hero-overlay {
        align-items: flex-end;
        padding: 0 12px 18px;
    }

    .hero-overlay-content {
        width: 100%;
        padding: 18px 16px;
        max-width: 100%;
        text-align: left;
        margin-left: 0;
    }

    .hero-overlay-content h1 {
        font-size: 32px;
    }

    .hero-overlay-content p {
        font-size: 15px;
    }

    .stats-section {
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-box {
        padding: 22px 10px;
    }

    .billing-grid {
        gap: 24px;
    }

    .intro-image img {
        height: 320px;
    }

    .grid-4 {
        gap: 16px;
    }

    .doc-card img {
        height: 220px;
    }

    .service-banner {
        height: 420px;
    }

    .banner-text {
        font-size: 16px;
    }

    .service-centres-section {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .service-journey-section {
        padding: 60px 0 !important;
        margin-bottom: 40px !important;
    }

    .service-journey-section .grid-4,
    .service-tech-section .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .service-tech-section {
        padding: 60px 0 !important;
        margin-bottom: 40px !important;
    }

    .about-banner {
        height: 460px;
        margin-bottom: 50px;
    }

    .about-text-block h2 {
        font-size: 30px;
    }

    .about-image-card img {
        height: 340px;
    }

    .about-goals-section,
    .about-leadership-section {
        padding: 55px 0;
    }

    .footer-panel {
        padding: 22px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-col {
        padding-right: 0;
    }

    .floating-cta-banner.active {
        bottom: 70px;
    }
}

@media (max-width: 600px) {
    .quick-actions-section {
        margin-top: -40px;
    }
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero-video-banner {
        height: 360px;
    }

    .footer-grid {
        gap: 22px;
    }

    .ask-us-box {
        padding: 20px;
    }

    .service-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-actions .btn-primary,
    .service-hero-actions .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .hero-overlay-content {
        padding: 16px 14px;
    }

    .hero-overlay-content h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stats-section {
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .intro-text h2 {
        font-size: 28px !important;
    }

    .intro-image img {
        height: 280px;
    }

    .service-banner {
        height: 360px;
    }

    .banner-content {
        padding: 0 16px;
    }

    .banner-title {
        font-size: 1.9rem;
    }

    .banner-text {
        font-size: 15px;
    }

    .service-centres-section {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .service-journey-section,
    .service-tech-section {
        padding: 50px 0 !important;
        margin-bottom: 30px !important;
    }

    .service-journey-section .grid-4,
    .service-tech-section .grid-4,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .service-card-premium,
    .tech-box-premium,
    .step-box {
        padding: 24px 16px;
    }

    .billing-form,
    .billing-ledger {
        padding: 24px 18px;
    }

    .footer-grid {
        gap: 24px;
    }

    .about-banner {
        height: 420px;
    }

    .about-banner-content {
        padding: 0 18px;
    }

    .about-badge {
        font-size: 11px;
    }

    .about-text-block h2 {
        font-size: 26px;
    }

    .about-image-card {
        padding: 10px;
    }

    .about-image-card img {
        height: 300px;
    }

    .about-goals-grid {
        grid-template-columns: 1fr;
    }

    .leader-card img {
        height: 190px;
        width: 190px;
    }

    .contact-banner {
        height: 420px;
    }

    .contact-banner-content {
        padding: 0 18px;
    }

    .contact-badge {
        font-size: 11px;
    }

    .contact-info-card,
    .booking-form-card {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .map-box {
        height: 320px;
    }

    .health-tips-toast {
        right: 16px;
        left: 16px;
        bottom: 100px;
        max-width: calc(100% - 32px);
    }

    .floating-cta-banner {
        border-radius: var(--radius-md);
    }

    .floating-cta-banner .cta-actions {
        width: 100%;
    }

    .floating-cta-banner .cta-actions a {
        flex: 1;
        text-align: center;
    }
}
/* ==========================================
   ULTRA-PREMIUM INNER PAGES UPGRADE
   ========================================== */

/* 1. Glassmorphism Booking Form (Contact Us) */
.booking-form-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 168, 150, 0.08), 0 0 0 1px rgba(0,168,150,0.05) inset !important;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.booking-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(0, 168, 150, 0.12), 0 0 0 1px rgba(0,168,150,0.1) inset !important;
}

/* Glowing Inputs */
.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1.5px solid rgba(0, 168, 150, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    background: #ffffff !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 4px rgba(0, 168, 150, 0.15), 0 10px 20px rgba(0, 168, 150, 0.1) !important;
    transform: translateY(-2px);
}

/* 2. Interactive Info Cards (Contact Us) */
.contact-info-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border: 1px solid rgba(0, 168, 150, 0.1) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04) !important;
}

.contact-item {
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 12px;
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(0, 168, 150, 0.03);
}

.contact-item:hover .contact-icon i {
    transform: scale(1.15) rotate(5deg);
    color: var(--teal);
    text-shadow: 0 5px 15px rgba(0, 168, 150, 0.4);
}

/* 3. About Us Page Upgrades */
.about-image-card img {
    border-radius: 16px !important;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease !important;
}

.about-image-card:hover img {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 35px 60px rgba(0, 168, 150, 0.2) !important;
}

.about-goal-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(0, 168, 150, 0.1) !important;
    border-top: 4px solid var(--teal) !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.about-goal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0,168,150,0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-goal-card:hover::before {
    transform: translateX(100%);
}

.about-goal-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 45px rgba(0, 168, 150, 0.15) !important;
    border-top-color: #008f80 !important;
}

.leader-card {
    background: white !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 168, 150, 0.08) !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.4s ease !important;
    overflow: hidden;
}

.leader-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.leader-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 30px 50px rgba(0, 168, 150, 0.12) !important;
    border-color: rgba(0, 168, 150, 0.3) !important;
}

.leader-card:hover img {
    transform: scale(1.08) !important;
}

/* 4. Service Page Enhancements */
.service-card-premium {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-card-premium:hover .service-icon-wrapper i {
    animation: iconPulse 1s ease infinite alternate;
    text-shadow: 0 0 15px rgba(0, 168, 150, 0.4);
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* 5. Glowing Background Orbs */
.contact-section::before,
.about-story-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.contact-section::after,
.about-story-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 92, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

.contact-section, .about-story-section {
    position: relative;
}

/* ==========================================
   FLAWLESS ULTRA-MOBILE RESPONSIVENESS
   ========================================== */

/* Fix horizontal scrolling */
/*html, body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}*/

/* Doctor Profile Flex Layout Classes */
.doctor-profile-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.doctor-profile-left {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    margin: 0 auto;
}
.doctor-profile-right {
    flex: 2;
    min-width: 280px;
}

@media (max-width: 768px) {
    .doctor-profile-flex {
        gap: 25px;
    }
    .doctor-profile-left, .doctor-profile-right {
        max-width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Scale down large headings */
    h1 { font-size: 28px !important; line-height: 1.2 !important; }
    h2 { font-size: 24px !important; line-height: 1.3 !important; }
    h3 { font-size: 20px !important; }
    
    /* Reduce thick padding inside cards */
    .service-card-premium,
    .tech-box-premium,
    .contact-info-card,
    .booking-form-card,
    .billing-form,
    .billing-ledger {
        padding: 20px 16px !important;
    }
    
    /* Grids strictly single column */
    .grid-4, .contact-panel-grid, .about-goals-grid, .leadership-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* Orbs resizing to prevent overflow */
    .contact-section::before,
    .about-story-section::before,
    .contact-section::after,
    .about-story-section::after {
        width: 300px !important;
        height: 300px !important;
        filter: blur(30px) !important;
    }
    
    /* Reduce section margins to save vertical space */
    section {
        margin-bottom: 40px !important;
    }
    
    /* Buttons full width on small mobile */
    .btn-primary, .btn-secondary, .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    /* Doctor profile right text */
    .doctor-profile-right p, .doctor-profile-right ul {
        font-size: 14px !important;
    }
}

@media (max-width: 380px) {
    h1 { font-size: 24px !important; }
    h2 { font-size: 22px !important; }
    .top-bar span { font-size: 12px; }
    .hero-video-banner { height: 320px; }
}
