/* ============================================================
   Chatterjee & Chatterjee Consultancy – Premium Hospital Theme
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --primary:        #0f4c81;        /* Deep Hospital Blue */
  --primary-light:  #f0f5fa;
  --secondary:      #0ea5a4;        /* Medical Cyan */
  --secondary-light:#e2fcfc;
  --tertiary:       #18b8b8;
  --accent:         #ef4444;        /* Alert Red */
  --dark:           #0f172a;        /* Slate 900 */
  --light:          #f8fafc;        /* Slate 50 */
  --white:          #ffffff;
  
  --text:           #334155;        /* Slate 700 */
  --text-dark:      #1e293b;        /* Slate 800 */
  --text-muted:     #64748b;        /* Slate 500 */
  --border:         #e2e8f0;        /* Slate 200 */
  
  --shadow-sm:      0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-main:    0 12px 40px rgba(15, 76, 129, 0.08); /* Soft blue shadow */
  --shadow-float:   0 20px 60px rgba(15, 76, 129, 0.12);
  
  --radius:         16px;
  --radius-lg:      24px;
  --radius-full:    999px;
  
  --transition:     all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  
  --font-body:      'Plus Jakarta Sans', sans-serif;
  --font-display:   'Outfit', sans-serif;
  --header-h:       90px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Page Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; background: var(--white); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility .6s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.medical-loader { display: flex; flex-direction: column; align-items: center; }
.pulse-wrapper { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.pulse-icon { font-size: 3.5rem; color: var(--secondary); z-index: 5; animation: cardiacPulse 1.4s ease-in-out infinite; }
.pulse-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: var(--secondary-light); opacity: 0; animation: heartRipple 2.2s ease-out infinite; }
.pulse-ring.delay-1 { animation-delay: 0.5s; }

.loader-text { text-align: center; }
.loader-text span { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.loader-text small { font-size: 0.8rem; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.15em; }

@keyframes cardiacPulse { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.15); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } }
@keyframes heartRipple { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--primary-light); }
.bg-blue { background: var(--primary); color: var(--white); }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover {
  background: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.btn-secondary {
  background: var(--secondary); color: var(--white);
}
.btn-secondary:hover {
  background: var(--tertiary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(14, 165, 164, 0.2);
}
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--white); transform: translateY(-2px);
}
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #dc2626; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.subtitle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ── Header / Navbar ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--header-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
  height: 80px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 44px; }
.site-logo-text .name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.site-logo-text .sub { font-size: 0.75rem; color: var(--secondary); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.site-nav-desktop { display: flex; gap: 8px; }
.site-nav-desktop a {
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: var(--transition);
}
.site-nav-desktop a:hover, .site-nav-desktop a.active { color: var(--secondary); background: var(--secondary-light); }

.site-nav { display: none; } /* Mobile nav hidden by default */

.header-right { display: flex; align-items: center; gap: 20px; }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; }
.header-contact .label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.header-contact .phone { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--primary); }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: var(--primary-light); border-radius: 50%; }
.hamburger span { width: 20px; height: 2px; background: var(--primary); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section (Ultra Premium Upgrade) ──────────────────── */
.premium-hero {
  padding: calc(var(--header-h) + 100px) 0 120px;
  background: radial-gradient(circle at 10% 20%, rgba(14, 165, 164, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(15, 76, 129, 0.05) 0%, transparent 40%),
              var(--white);
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; position: relative; z-index: 2; }

.subtitle-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(14, 165, 164, 0.1);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800; color: #1e293b;
  line-height: 1.05; margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-content h1 span { 
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p { font-size: 1.25rem; color: #64748b; margin-bottom: 48px; max-width: 540px; line-height: 1.6; }

.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; }
.hero-buttons .btn { padding: 18px 40px; font-size: 1.1rem; }

.hero-features { display: flex; gap: 40px; flex-wrap: wrap; }
.h-feature { 
  display: flex; align-items: center; gap: 16px; 
  padding: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.h-feature i { 
  width: 50px; height: 50px; border-radius: 14px; 
  background: rgba(14, 165, 164, 0.08); color: var(--secondary); 
  display: flex; align-items: center; justify-content: center; 
  font-size: 1.4rem; transition: all 0.4s;
}
.h-feature:hover { transform: translateY(-5px); }
.h-feature:hover i { background: var(--secondary); color: var(--white); box-shadow: 0 10px 25px rgba(14, 165, 164, 0.25); }

.h-feature div { 
  font-weight: 900; font-size: 1.25rem; color: var(--secondary); 
  line-height: 1; display: flex; flex-direction: column; gap: 4px;
}
.h-feature div span { 
  font-weight: 800; font-size: 0.75rem; color: #64748b; 
  text-transform: uppercase; letter-spacing: 1px; opacity: 0.8;
}

/* Visual Side */
.hero-visual-wrapper { position: relative; padding: 40px; }
.hero-img-box {
  width: 100%; height: 580px; border-radius: 40px; overflow: hidden;
  position: relative; z-index: 1; box-shadow: 0 40px 100px rgba(15,76,129,0.15);
  border: 8px solid var(--white);
}
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-visual-wrapper:hover .hero-img-box img { transform: scale(1.05); }

/* Decorative Glows */
.hero-glow {
    position: absolute; width: 140%; height: 140%; top: -20%; left: -20%;
    background: radial-gradient(circle at center, rgba(14, 165, 164, 0.15) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}

/* Float cards with animation */
.glass-card {
  position: absolute; z-index: 2;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6); padding: 18px 24px; border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 16px;
  animation: floatDrift 4s ease-in-out infinite alternate;
}
@keyframes floatDrift { from { transform: translateY(0); } to { transform: translateY(-15px); } }

.glass-card.top { top: 20px; left: -20px; animation-delay: 0s; }
.glass-card.bottom { bottom: 60px; right: -20px; animation-delay: 1.5s; }

.glass-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.glass-icon.green { background: #dcfce7; color: #16a34a; }
.glass-icon.blue { background: #dbeafe; color: #2563eb; }
.glass-text h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #1e293b; margin-bottom: 2px; }
.glass-text p { font-size: 0.8rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Appointment Form ─────────────────────────────────────── */
.appt-book-section { margin-top: -60px; position: relative; z-index: 10; }
.appt-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-main);
}
.appt-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 20px; align-items: flex-end; }
.input-col label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.input-group { position: relative; }
.input-group i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--secondary); }
.input-group select, .input-group input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
  height: 52px; padding: 0 16px 0 44px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--light);
  transition: var(--transition); appearance: none;
}
.input-group select:focus, .input-group input:focus { outline: none; border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 4px var(--secondary-light); }

/* ── About Split Section ──────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; overflow: visible; }
.about-images img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-main); }
.about-images .badge {
  position: absolute; bottom: 30px; left: -30px;
  background: var(--primary); color: var(--white);
  padding: 30px; border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 20px 40px rgba(15,76,129,0.3);
}
.about-images .badge h3 { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 5px; color: var(--secondary); }
.about-images .badge p { font-size: 0.9rem; font-weight: 600; }
.checklist { margin: 30px 0; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.checklist li i { width: 28px; height: 28px; border-radius: 50%; background: var(--secondary-light); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

/* ── Services Grid (Premium Clean Cards) ────────────────────── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.s-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(15,76,129,0.06); 
  border: 1px solid rgba(15,76,129,0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
  position: relative; overflow: hidden;
  z-index: 1;
  display: flex; flex-direction: column;
}
.s-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.4s ease;
}
.s-card:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 24px 48px rgba(15,76,129,0.12), 0 0 0 1px rgba(14,165,164,0.1); 
  border-color: rgba(14,165,164,0.4); 
}
.s-card:hover::after { opacity: 1; height: 6px; }

.s-icon { 
  display: inline-flex; align-items: center; justify-content: center; 
  width: 64px; height: 64px; background: rgba(14,165,164,0.1);
  color: var(--primary); border-radius: 16px;
  font-size: 1.8rem; margin-bottom: 24px; 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s;
}
.s-card:hover .s-icon { transform: scale(1.1) rotate(-5deg); background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(14,165,164,0.3); }

/* Watermark Icon */
.s-card .watermark { position: absolute; right: -24px; bottom: -24px; font-size: 10rem; color: var(--primary); opacity: 0.03; transition: all 0.5s ease; z-index: -1; pointer-events: none; }
.s-card:hover .watermark { transform: scale(1.1); opacity: 0.06; }

.s-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.4; transition: color 0.3s;}
.s-card p { line-height: 1.7; color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.s-link { font-weight: 700; color: var(--primary); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: auto; transition: all 0.3s;}
.s-card:hover h3 { color: var(--secondary); }
.s-card:hover .s-link { color: var(--secondary); gap: 14px; }

/* ── Doctors (Premium Arch Shapes) ────────────────────────── */
.doctor-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 30px; }
.d-card {
  background: transparent;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: all 0.4s ease;
}
.d-img { 
  position: relative; width: 100%; height: 380px; 
  background: var(--primary-light); overflow: hidden; 
  border-radius: 200px 200px 12px 12px; /* Arch shape */
  box-shadow: 0 15px 35px -10px rgba(15,76,129,0.1);
  display: flex; align-items: center; justify-content: center; 
  margin-bottom: 24px;
  border: 4px solid var(--white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.d-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.d-card:hover .d-img { transform: translateY(-10px); box-shadow: 0 25px 50px -15px rgba(15,76,129,0.2); border-color: var(--secondary-light); }
.d-card:hover .d-img img { transform: scale(1.06); }

.d-badge { 
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--primary); 
  font-size: 0.75rem; font-weight: 800; padding: 8px 20px; 
  border-radius: var(--radius-full); box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.d-info { display: flex; flex-direction: column; width: 100%; align-items: center; }
.d-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.d-info span { color: var(--secondary); font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 16px; }
.d-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; max-width: 280px; }
.d-info .btn { width: auto; min-width: 200px; display: inline-flex; justify-content: center; background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: var(--radius-full); padding: 12px 32px; font-weight: 700; transition: all 0.3s ease; }
.d-card:hover .d-info .btn { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(15,76,129,0.25); transform: translateY(-3px); }

/* ── Testimonials (Premium Glassmorphism) ─────────────────── */
.testimonial-box { background: linear-gradient(135deg, var(--primary) 0%, #0d4a8f 100%); color: var(--white); border-radius: var(--radius-lg); padding: 80px 60px; position: relative; overflow: hidden; }
.testimonial-box::before { content: '\f10d'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 40px; top: 40px; font-size: 12rem; color: rgba(255,255,255,0.05); }
.t-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.t-content h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; text-transform: capitalize;}
.t-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.t-slider { position: relative; }
.t-slide { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: none; }
.t-slide.active { display: block; animation: fadeInRight 0.5s ease forwards; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.t-slide .stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.t-slide p { font-size: 1.1rem; font-style: italic; line-height: 1.8; color: var(--white); margin-bottom: 24px; opacity: 0.95; }
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.2); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author .name { font-weight: 700; font-family: var(--font-display); color: var(--white); font-size: 1.1rem; }
.t-author .sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.t-controls { display: flex; gap: 12px; margin-top: 24px; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); cursor: pointer; border: 1px solid rgba(255,255,255,0.2); }
.t-btn:hover { background: var(--white); color: var(--primary); }

/* ── Footer ───────────────────────────────────────────────── */
.premium-footer { background: var(--dark); color: #94a3b8; padding: 100px 0 30px; font-size: 0.95rem; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.f-brand .logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.f-brand .icon { width: 44px; height: 44px; background: var(--secondary); border-radius: 12px; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.f-brand .title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.f-brand p { line-height: 1.8; margin-bottom: 24px; }
.f-social { display: flex; gap: 12px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.f-social a:hover { background: var(--secondary); border-color: var(--secondary); }
.f-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.f-col ul li { margin-bottom: 12px; }
.f-col ul a { color: #94a3b8; transition: var(--transition); }
.f-col ul a:hover { color: var(--secondary); padding-left: 6px; }
.f-contact li { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
.f-contact i { color: var(--secondary); margin-top: 4px; font-size: 1.1rem; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }

/* ── Floating Utilities ───────────────────────────────────── */
.float-wa { position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px; background: #25d366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 10px 30px rgba(37,211,102,0.3); z-index: 1000; transition: var(--transition); animation: waBounce 2.5s infinite; }
.float-wa:hover { transform: scale(1.1); }
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ── Form Error / Alert ───────────────────────────────────── */
.alert { padding: 16px 20px; border-radius: 12px; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.alert-success { background: #dcfce7; color: #16a34a; }
.alert-danger { background: #fee2e2; color: #dc2626; }
.field-error { color: var(--accent); font-size: 0.8rem; margin-top: 6px; display: none; }
.field-error.visible { display: block; }
.form-error { border-color: var(--accent) !important; }

/* ── Breadcrumb & Filters ─────────────────────────────────── */
.breadcrumb { font-size: 0.9rem; font-weight: 500; margin-bottom: 24px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--white); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb i { font-size: 0.6rem; margin: 0 8px; }

.dept-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.dept-filter-btn { background: var(--white); color: var(--text-muted); border: 2px solid var(--border); border-radius: var(--radius-full); padding: 12px 24px; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; cursor: pointer;}
.dept-filter-btn:hover { border-color: var(--secondary); color: var(--secondary); background: var(--secondary-light); }
.dept-filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 8px 20px rgba(15,76,129,0.25); }

/* ── Blog Grid ────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.05); border: 1px solid var(--border); transition: all 0.4s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15,76,129,0.12); border-color: transparent;}
.blog-card-img { height: 240px; overflow: hidden; background: var(--primary-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { color: var(--secondary); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; line-height: 1.4; color: var(--text-dark); margin-bottom: 12px; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-meta { margin-top: auto; border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.blog-meta i { color: var(--secondary); margin-right: 6px; }

/* ── Shared Grids (About & Contact) ───────────────────────── */
.about-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-intro-img { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(15,76,129,0.15); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mission-card { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--border); transition: transform 0.3s; }
.mission-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15,76,129,0.1); }
.mission-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
/* ══════════════════════════════════════════════════════════════
   LEADERSHIP SECTION – Premium Institutional Design
   ══════════════════════════════════════════════════════════════ */

.leadership-section {
  background: #f1f5f9;
  padding: 100px 0;
}

/* ── Section label above each tier ───────────────────────────── */
.leader-tier-label {
  text-align: center;
  margin-bottom: 48px;
}
.leader-tier-label span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 5px 18px; border-radius: 999px;
  margin-bottom: 14px;
}
.leader-tier-label h3 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--primary); margin: 0;
}

/* ══════════════════════════════════════════
   CHAIRMAN – Horizontal Split Card
   ══════════════════════════════════════════ */
.chairman-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.leader-spotlight {
  display: grid;
  grid-template-columns: 420px 1fr;
  width: 100%;
  max-width: 1080px;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 76, 129, 0.12);
  border: 1px solid rgba(15, 76, 129, 0.08);
  position: relative;
}

/* Left accent bar */
.leader-spotlight::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 4px 0 0 4px;
}

/* Photo fills the left column completely */
.spotlight-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.spotlight-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}
.leader-spotlight:hover .spotlight-photo img {
  transform: scale(1.04);
}

/* Right info panel */
.spotlight-info {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
}
.spotlight-role-badge i { color: var(--secondary); }

.spotlight-name {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--primary); line-height: 1.15;
  margin-bottom: 8px;
}

.spotlight-designation {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
}

.spotlight-divider {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  margin-bottom: 28px;
}

.spotlight-bio {
  font-size: 1rem; line-height: 1.85;
  color: #475569;
  margin-bottom: 32px;
}

.spotlight-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.spotlight-badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(15,76,129,0.12);
}

/* ══════════════════════════════════════════
   MEMBER / DIRECTOR CARDS – Grid Cards
   ══════════════════════════════════════════ */
.members-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
}
.members-grid .lc-card {
  flex: 0 1 340px;
  max-width: 340px;
}

.lc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(15, 76, 129, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(15, 76, 129, 0.15);
  border-color: rgba(14, 165, 164, 0.2);
}
.lc-card:hover::before { opacity: 1; }

/* Photo – fixed height, always shows face */
.lc-photo-area {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--primary-light);
  flex-shrink: 0;
}
.lc-photo-area img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}
.lc-card:hover .lc-photo-area img { transform: scale(1.06); }

/* Role chip on photo */
.lc-role-chip {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 76, 129, 0.92);
  color: #fff;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Text body */
.lc-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.lc-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px; line-height: 1.3;
}

.lc-designation {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.lc-divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0 auto 18px;
}

.lc-bio {
  font-size: 0.9rem; line-height: 1.8;
  color: #64748b;
  flex: 1;
  margin-bottom: 20px;
}

.lc-link {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 7px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  transition: color 0.3s ease;
}
.lc-link i { transition: transform 0.3s ease; font-size: 0.65rem; }
.lc-card:hover .lc-link { color: var(--secondary); }
.lc-card:hover .lc-link i { transform: translateX(5px); }

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .leader-spotlight { grid-template-columns: 1fr; }
  .spotlight-photo { min-height: 360px; position: relative; }
  .spotlight-photo img { position: relative; width: 100%; height: 360px; }
  .spotlight-info { padding: 36px 30px; }
  .spotlight-name { font-size: 1.7rem; }
  .members-grid .lc-card { flex-basis: 300px; }
}
@media (max-width: 560px) {
  .members-grid .lc-card { flex: 0 1 100%; max-width: 100%; }
  .lc-photo-area { height: 280px; }
}


/* ── Contact & Forms ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-card { background: linear-gradient(135deg, var(--primary) 0%, #1a6fab 100%); color: var(--white); border-radius: 24px; padding: 48px 40px; box-shadow: 0 20px 40px rgba(15,76,129,0.2); }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.contact-info-card p { opacity: 0.8; margin-bottom: 40px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.contact-item .icon { width: 48px; height: 48px; min-width: 48px; flex-shrink: 0; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--secondary-light); }
.contact-item .label { font-size: 0.8rem; font-weight: 500; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-item .value { font-weight: 600; font-size: 1.05rem; word-break: break-all; overflow-wrap: anywhere; min-width: 0; }
.contact-social { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); flex-shrink: 0; }
.contact-social a:hover { background: var(--secondary); border-color: var(--secondary); transform: translateY(-3px); }
.contact-form-card { background: var(--white); border-radius: 24px; padding: 48px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.contact-form-card p { color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 0.9rem; }
.form-control { width: 100%; border: 2px solid var(--border); border-radius: 12px; padding: 14px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--primary-light); transition: all 0.3s; }
.form-control:focus { outline: none; border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 4px var(--secondary-light); }
.textarea { height: 160px; resize: vertical; }

.appointment-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; position: relative; }
.appointment-info { position: sticky; top: 120px; }
.appointment-info h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.appointment-info > p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }
.appt-step { display: flex; gap: 24px; margin-bottom: 28px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 8px 20px rgba(14,165,164,0.25); }
.step-text h5 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
.step-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.appointment-form { background: var(--white); border-radius: 24px; padding: 48px; box-shadow: 0 15px 50px rgba(15,76,129,0.08); border: 1px solid var(--border); }
.btn-outline-white { background: transparent; color: var(--primary); border: 2px solid var(--primary); transition: all 0.3s; }
.btn-outline-white:hover { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(15,76,129,0.2); }

/* ── Success Page ─────────────────────────────────────────── */
.success-wrapper { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.success-card { background: var(--white); border-radius: 24px; padding: 60px 48px; box-shadow: 0 15px 40px rgba(15,76,129,0.1); max-width: 520px; border: 1px solid var(--border); }
.success-icon { width: 80px; height: 80px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #16a34a; margin: 0 auto 20px; }
.success-card h2 { font-family: var(--font-display); color: var(--text-dark); font-size: 1.8rem; margin-bottom: 10px; }
.success-card p { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

/* ── Careers ──────────────────────────────────────────────── */
.career-card { background: var(--white); border-radius: 20px; padding: 36px 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: all 0.3s ease; margin-bottom: 24px; }
.career-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,76,129,0.1); border-color: rgba(14,165,164,0.3); }
.career-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; font-weight: 800; color: var(--text-dark); }
.career-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.career-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.825rem; font-weight: 700; padding: 6px 16px; border-radius: var(--radius-full); }
.career-tag.dept { background: var(--primary-light); color: var(--primary); }
.career-tag.type { background: var(--secondary-light); color: var(--secondary); }
.career-tag { background: var(--light); color: var(--text-muted); }

/* ── AOS Fallbacks & Internal Helpers ─────────────────────── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate, [data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ── Page Intro Specifics (For interior pages) ─────────────── */
.page-hero { padding: 160px 0 80px; background: var(--primary); color: var(--white); text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 12px; }

/* ── Responsive Architecture ──────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-features { justify-content: center; }
  .about-split { grid-template-columns: 1fr; }
  .about-images { order: 2; margin-top: 40px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .doctor-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  /* ── Prevent ALL horizontal overflow on mobile ── */
  *, *::before, *::after { max-width: 100%; }
  body, main, section, header, footer, .container, .hero-grid,
  .premium-hero, .appt-book-section, .service-cards, .doctor-cards,
  .blog-grid, .f-grid, .about-split, .testimonial-box {
    overflow-x: hidden !important;
  }

  /* ── Header ── */
  .site-header { height: 75px !important; }
  .site-nav-desktop { display: none !important; }
  .site-logo-text .sub { display: block !important; font-size: 0.65rem; white-space: nowrap; }
  .site-logo-text .name { font-size: 1rem; }
  .site-logo img { height: 38px; }
  .hamburger { display: flex !important; background: transparent; border: none; outline: none; padding: 0; }
  .header-right .btn-primary { display: none !important; }
  .header-contact { display: none !important; }

  /* ── Mobile Menu ── */
  #siteNav {
    position: fixed; inset: 0; 
    background: var(--white); overflow-y: auto;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 9999 !important;
    display: flex !important; flex-direction: column;
  }
  #siteNav.active { transform: translateX(0); }
  .nav-close { 
    position: absolute; top: 30px; right: 28px; width: 44px; height: 44px; 
    border-radius: 50%; background: #f1f5f9; border: none; display: flex; 
    align-items: center; justify-content: center; font-size: 1.4rem; color: var(--secondary);
    cursor: pointer; z-index: 100; transition: 0.3s;
  }
  .nav-close:hover { background: var(--primary-light); color: var(--primary); }
  
  .site-nav-inner { padding: 80px 24px 40px; }
  .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
  .mobile-nav-links a { 
    display: flex; align-items: center; gap: 16px; font-size: 1.15rem; font-weight: 700; 
    color: var(--secondary); padding: 12px 16px; border-radius: 12px;
    text-decoration: none; transition: 0.3s;
  }
  .mobile-nav-links a i { font-size: 1rem; color: var(--primary); width: 24px; text-align: center; }
  .mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--primary); background: #f8fafc; padding-left: 24px; }
  .mobile-nav-links a.active { background: var(--secondary-light); color: var(--secondary); }
  .mobile-nav-footer { padding-top: 30px; border-top: 1.5px solid #f1f5f9; }

  /* ── HERO: text first, image below ── */
  .premium-hero {
    padding: calc(var(--header-h) + 32px) 0 48px;
    min-height: auto;
    text-align: center;
  }
  .hero-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .hero-content { order: 1; }
  .hero-visual-wrapper { order: 2; width: 100%; padding: 0; }
  .hero-content h1 { font-size: 1.9rem; line-height: 1.2; margin-bottom: 14px; }
  .hero-content p { font-size: 1rem; margin: 0 auto 24px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.95rem; }
  .hero-features { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .h-feature { flex: 0 0 calc(33% - 10px); flex-direction: column; text-align: center; gap: 6px; }
  .h-feature i { width: 40px; height: 40px; font-size: 1rem; }
  .h-feature div { font-size: 0.82rem; }
  .glass-card { display: none !important; }
  .hero-img-box { height: 240px; width: 100%; border-radius: 16px; }

  /* ── APPOINTMENT BAR: stacked fields ── */
  .appt-book-section { margin-top: 20px; }
  .appt-bar { padding: 20px 16px; border-radius: 16px; border: 1.5px solid var(--border); box-shadow: none; background: var(--white); }
  .appt-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .input-col label { font-size: 0.85rem; margin-bottom: 6px; }
  .input-group select, .input-group input { height: 48px; font-size: 0.9rem; }
  .appt-grid .btn { height: 48px; width: 100%; margin-top: 0 !important; }

  /* ── ABOUT: image then text ── */
  .about-split { grid-template-columns: 1fr !important; gap: 0; }
  .about-images { order: 1; margin-bottom: 16px; overflow: visible; }
  .about-content { order: 2; }
  .about-images .badge {
    position: relative; left: auto; right: auto; bottom: auto;
    display: inline-flex; flex-direction: row; align-items: center;
    gap: 12px; padding: 14px 18px; margin-top: 14px;
    border-radius: 14px; text-align: left;
  }
  .about-images .badge h3 { font-size: 1.8rem; margin-bottom: 0; }
  .about-images .badge p { font-size: 0.82rem; }
  .checklist li { font-size: 0.9rem; gap: 10px; }

  /* ── SERVICES: single column cards ── */
  .service-cards { grid-template-columns: 1fr !important; gap: 18px; }
  .s-card { padding: 26px 22px; border-radius: 16px; }
  .s-icon { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 14px; }
  .s-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .s-card p { font-size: 0.9rem; margin-bottom: 18px; }

  /* ── DOCTORS ── */
  .doctor-cards { grid-template-columns: 1fr !important; gap: 28px; }
  .d-img { height: 280px; }

  /* ── TESTIMONIALS ── */
  .testimonial-box { padding: 32px 18px; border-radius: 16px; }
  .t-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .t-content h2 { font-size: 1.6rem; line-height: 1.2; }
  .t-content p { font-size: 0.92rem; }
  .t-controls { justify-content: flex-start; margin-top: 14px; }
  .t-slide { padding: 22px 16px; border-radius: 14px; }
  .t-slide p { font-size: 0.92rem; }

  /* ── BLOG ── */
  .blog-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .blog-card-img { height: 190px; }
  .blog-card-body { padding: 22px 18px; }
  .blog-card-body h3 { font-size: 1.05rem; }

  /* ── INNER PAGES ── */
  .about-intro-grid, .mission-grid, .contact-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .founder-card { grid-template-columns: 1fr !important; text-align: center; padding: 24px 18px; }
  .founder-img { min-height: 200px; }
  .form-row { grid-template-columns: 1fr !important; }
  .appointment-wrapper { grid-template-columns: 1fr !important; gap: 20px; }
  .appointment-info { position: static; margin-bottom: 0; }
  .appointment-form { padding: 22px 16px; border-radius: 14px; }
  .contact-form-card { padding: 22px 16px; }
  .contact-info-card { padding: 28px 18px; border-radius: 16px; }
  .contact-item { gap: 14px; margin-bottom: 22px; }
  .contact-item .icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; border-radius: 10px; }
  .contact-item .value { font-size: 0.9rem; word-break: break-all; overflow-wrap: anywhere; }
  .contact-item .label { font-size: 0.72rem; }
  .contact-social { margin-top: 6px; flex-wrap: wrap; gap: 10px; }
  .contact-social a { width: 36px; height: 36px; font-size: 0.9rem; }

  /* ── CAREERS ── */
  .career-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 16px; border-radius: 14px; }
  .career-card h3 { font-size: 1.1rem; }
  .career-tags { gap: 8px; }

  /* ── PAGE HERO (inner pages) ── */
  .page-hero { padding: 110px 0 44px; }
  .page-hero h1 { font-size: 1.9rem; }

  /* ── FOOTER ── */
  .f-grid { grid-template-columns: 1fr !important; gap: 26px; }
  .f-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 0.85rem; }
  .f-brand p { font-size: 0.9rem; }

  /* ── SECTION SPACING ── */
  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.65rem !important; }

  /* ── LANGUAGE SWITCHER ── */
  #lang-switcher { bottom: 80px; right: 16px; }
  #lang-btn { padding: 9px 14px; font-size: 0.8rem; }
  #lang-dropdown { right: 0; min-width: 145px; }
}
/* ── Trust Section (Hospital Marquee) ───────────────────── */
.trust-section { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-header { text-align: center; margin-bottom: 24px; }
.trust-header h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.marquee-container { display: flex; overflow: hidden; position: relative; width: 100%; white-space: nowrap; padding: 10px 0; }
.marquee-content { display: inline-flex; animation: marquee 30s linear infinite; gap: 60px; align-items: center; }
.hospital-badge { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--primary); opacity: 0.65; transition: opacity 0.3s; cursor: default; }
.hospital-badge:hover { opacity: 1; }
.hospital-sep { width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Stats Counter Section ────────────────────────────── */
.stats-section { 
  padding: 100px 0; background: var(--white); 
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); 
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { 
  text-align: center; padding: 40px 20px; border-radius: 0; background: transparent; 
  border-right: 1.5px solid var(--border); transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-12px); }
.stat-item:hover .stat-icon { transform: scale(1.2) rotate(8deg); color: var(--primary); }
.stat-item:hover .stat-number { color: var(--secondary); }

.stat-icon { font-size: 2.8rem; color: var(--secondary); margin-bottom: 24px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.stat-number { font-family: var(--font-display); font-size: 3.8rem; font-weight: 900; color: #1e293b; line-height: 1; margin-bottom: 15px; letter-spacing: -1px; transition: color 0.3s; }
.stat-label { font-size: 0.9rem; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: 1.5px; }

@media (max-width: 991px) {
  .stats-section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 32px 16px; border-bottom: 1.5px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1.5px solid var(--border); }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .stat-number { font-size: 2.8rem; }
}

/* ── Video / Experience Section ───────────────────────── */
.video-section { padding: 100px 0; background: var(--light); position: relative; }
.video-carousel-wrapper { position: relative; max-width: 1000px; margin: 40px auto 0; }
.video-carousel { position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-float); aspect-ratio: 16/9; background: #000; }
.video-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform: scale(1.05); }
.video-slide.active { opacity: 1; visibility: visible; transform: scale(1); }

.video-thumb { position: relative; cursor: pointer; height: 100%; width: 100%; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(15, 76, 129, 0.4); transition: background 0.3s; }
.video-thumb:hover::after { background: rgba(15, 76, 129, 0.2); }

.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90px; height: 90px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary); z-index: 5; box-shadow: 0 0 0 0 rgba(255,255,255,0.4); animation: playPulse 2s infinite; pointer-events: none; }
@keyframes playPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); } 70% { box-shadow: 0 0 0 30px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

.video-info-glass { position: absolute; bottom: 30px; left: 30px; right: 30px; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 25px 35px; color: var(--white); z-index: 5; transition: transform 0.3s; }
.video-slide:hover .video-info-glass { transform: translateY(-5px); }
.video-info-glass h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.video-info-glass p { font-size: 0.95rem; opacity: 0.9; margin: 0; font-weight: 500; }

.v-controls .v-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--primary); border: none; font-size: 1.2rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: all 0.3s; }
.v-controls .v-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-50%) scale(1.1); }
.v-btn.prev { left: -28px; }
.v-btn.next { right: -28px; }

.v-dots { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.v-dot { width: 10px; height: 10px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.v-dot.active { width: 30px; background: var(--primary); border-radius: 5px; }

/* Video Modal */
.video-modal { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; padding: 20px; }
.video-modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(8px); }
.modal-content { position: relative; width: 100%; max-width: 1100px; z-index: 10; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.modal-close { position: absolute; top: -50px; right: 0; background: none; border: none; color: #fff; font-size: 3rem; cursor: pointer; line-height: 1; transition: transform 0.3s; }
.modal-close:hover { transform: rotate(90deg); color: var(--secondary); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; background: #000; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 4px; }

@media (max-width: 1060px) {
    .v-btn.prev { left: 10px; }
    .v-btn.next { right: 10px; }
}
@media (max-width: 768px) {
    .video-info-glass { bottom: 15px; left: 15px; right: 15px; padding: 15px 20px; }
    .video-info-glass h4 { font-size: 1.1rem; }
    .play-btn { width: 60px; height: 60px; font-size: 1.3rem; }
    .v-btn { width: 44px; height: 44px; font-size: 1rem; }
    .modal-close { top: -40px; font-size: 2.5rem; }
}

/* ── Strong CTA Section ────────────────────────────────── */
.cta-banner { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); position: relative; overflow: hidden; border-radius: 40px; margin: 60px 0; color: var(--white); text-align: center; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: drift 20s infinite linear; pointer-events: none; }
@keyframes drift { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-content { position: relative; z-index: 5; max-width: 800px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 24px; line-height: 1.1; }
.cta-banner p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 40px; }
.cta-banner .btn-white { padding: 20px 48px; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* ── Floating Appt Button ─────────────────────────────── */
.floating-appt-btn { position: fixed; bottom: 30px; right: 100px; background: var(--primary); color: var(--white); border-radius: 50px; padding: 12px 28px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; box-shadow: 0 8px 32px rgba(15, 76, 129, 0.4); z-index: 999; animation: floatBtnPulse 3s infinite; }
@keyframes floatBtnPulse { 0%, 100% { transform: translateY(0); box-shadow: 0 8px 32px rgba(15, 76, 129, 0.4); } 50% { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(15, 76, 129, 0.25); } }

/* ── Responsive Enhancements ──────────────────────────── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2.2rem; }
  .floating-appt-btn { bottom: 20px; right: 20px; left: 20px; justify-content: center; }
  .float-wa { bottom: 24px; right: 24px; left: auto; }
  .cta-banner { border-radius: 20px; padding: 60px 24px; }
}


/* ── About Page & Sub-Pages ──────────────────────────────── */
.page-hero { 
  padding: calc(var(--header-h) + 120px) 0 120px; 
  background: linear-gradient(rgba(15, 76, 129, 0.92), rgba(15, 76, 129, 0.96)), url('https://images.unsplash.com/photo-1512678080530-7760d81faba6?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
  background-size: cover;
  position: relative; overflow: hidden;
  text-align: center; color: var(--white);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; color: var(--white); margin-bottom: 24px; line-height: 1.1; letter-spacing: -1px; }
.page-hero h1 span { color: var(--secondary); }
.page-hero p { font-size: 1.4rem; color: rgba(255,255,255,0.85); max-width: 850px; line-height: 1.6; margin: 0 auto; font-weight: 500; }

.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; font-weight: 800; color: rgba(255,255,255,0.9); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; }
.breadcrumb a { color: var(--secondary-light) !important; transition: var(--transition); text-decoration: none; }
.breadcrumb a:hover { color: var(--white) !important; text-decoration: underline; }
.breadcrumb i { font-size: 0.75rem; opacity: 0.4; color: var(--white); }

.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro-img { 
  position: relative; border-radius: 40px; overflow: hidden; 
  box-shadow: 0 40px 80px rgba(15,76,129,0.15); border: 8px solid var(--white);
  height: 600px;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.mission-card { 
  background: var(--white); padding: 50px; border-radius: 30px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid var(--border);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(15,76,129,0.08); border-color: var(--primary-light); }
.mission-card h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; margin-bottom: 20px; color: var(--secondary); }

.founder-card { 
  display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: center; 
  background: var(--white); padding: 60px; border-radius: 40px; 
  box-shadow: 0 40px 100px rgba(15,76,129,0.12); border: 1px solid var(--border);
}

/* ── Service Detail Page ───────────────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: flex-start; }

.service-detail-content { 
  background: var(--white); padding: 60px; border-radius: 40px; 
  box-shadow: 0 15px 40px rgba(15, 76, 129, 0.04); border: 1.5px solid var(--border);
  line-height: 1.8; color: var(--text-dark);
}
.service-detail-content h3, .service-detail-content h2 { 
  font-family: var(--font-display); font-weight: 900; color: var(--secondary); margin: 30px 0 20px; 
}
.service-detail-content ul { margin: 20px 0; padding-left: 20px; list-style: none; }
.service-detail-content ul li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: 600; }
.service-detail-content ul li::before { 
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; 
  position: absolute; left: 0; color: var(--primary);
}

.service-detail-sidebar { display: flex; flex-direction: column; gap: 40px; position: sticky; top: 120px; }

.sidebar-cta { 
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); 
  padding: 50px 40px; border-radius: 40px; color: var(--white); text-align: center;
  box-shadow: 0 30px 60px rgba(14,165,164,0.3); position: relative; overflow: hidden;
}
.sidebar-cta::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255,255,255,0.15) 0%, transparent 70%); pointer-events: none; }
.sidebar-cta h4 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; margin-bottom: 18px; color: var(--white); line-height: 1.2; }
.sidebar-cta p { font-size: 1rem; opacity: 0.9; margin-bottom: 30px; line-height: 1.5; }

.services-list-sidebar { 
  background: var(--white); padding: 40px; border-radius: 40px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.06); border: 1.5px solid var(--border);
}
.services-list-sidebar h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; color: var(--secondary); margin-bottom: 25px; border-bottom: 2.5px solid var(--primary-light); padding-bottom: 12px; }
.services-list-sidebar a { 
  display: flex; align-items: center; gap: 16px; padding: 18px 24px; border-radius: 18px; 
  color: #475569; font-weight: 700; text-decoration: none; transition: all 0.4s ease;
  margin-bottom: 12px; border: 1.5px solid transparent; background: var(--light);
}
.services-list-sidebar a i { font-size: 1.2rem; color: var(--primary); transition: 0.3s; }
.services-list-sidebar a:hover { 
  background: var(--white); color: var(--primary); border-color: var(--primary); transform: translateX(8px);
}
.services-list-sidebar a.active { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 10px 20px rgba(14,165,164,0.2); }
.services-list-sidebar a.active i { color: var(--white); }

.service-header-inner { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; border-bottom: 1.5px solid var(--border); padding-bottom: 30px; }
.service-icon-box { 
  width: 80px; height: 80px; background: var(--primary-light); color: var(--primary); 
  border-radius: 20px; display: flex; align-items: center; justify-content: center; 
  font-size: 2.2rem; flex-shrink: 0; 
}
.service-title-meta h2 { font-size: 2.2rem; margin: 0; line-height: 1.1; }
.service-title-meta span { font-size: 0.95rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.service-body-text { font-size: 1.1rem; line-height: 1.9; color: #334155; }
.service-body-text p { margin-bottom: 24px; }
.service-body-text h3 { font-size: 1.6rem; margin: 40px 0 20px; color: var(--secondary); }

@media (max-width: 1100px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-sidebar { position: relative; top: 0; }
  .service-detail-content { padding: 40px 24px; }
  .service-header-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
.founder-img { 
  height: 480px; border-radius: 30px; overflow: hidden; 
  background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 8rem; color: #cbd5e1;
}

/* ────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-intro-grid, .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img { height: 400px; }
  .mission-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .founder-img { height: 350px; font-size: 5rem; }
  .founder-info div { justify-content: center; flex-wrap: wrap; }
}

/* ── Careers Page ────────────────────────────────────────── */
.careers-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.perk-item { display: flex; gap: 16px; margin-bottom: 24px; }
.perk-icon { 
  width: 48px; height: 48px; background: var(--primary-light); border-radius: 12px; 
  display: flex; align-items: center; justify-content: center; color: var(--primary); 
  font-size: 1.25rem; flex-shrink: 0; 
}
.perk-info h4 { font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.perk-info p { font-size: 0.9rem; color: var(--text-muted); }

.careers-cta-card { 
  background: linear-gradient(135deg, var(--secondary), var(--primary)); 
  border-radius: var(--radius-lg); padding: 48px 40px; color: #fff; text-align: center;
  box-shadow: var(--shadow-float);
}
.careers-cta-card i { font-size: 3.5rem; margin-bottom: 20px; opacity: 0.8; }
.careers-cta-card h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; }
.careers-cta-card .count { font-size: 3rem; font-weight: 800; font-family: var(--font-display); margin-bottom: 8px; }

@media (max-width: 991px) {
  .careers-info-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .careers-cta-card { padding: 40px 24px; }
  #lang-switcher { bottom: 100px !important; right: 24px !important; }
}

/* ── Holographic Global System ───────────────────────────── */
.holographic-system { position: relative; width: 100%; height: 500px; display: flex; align-items: center; justify-content: center; }

.med-anchor { 
  position: relative; width: 120px; height: 120px; background: rgba(14,165,164,0.08); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-size: 4rem; color: var(--secondary); z-index: 50; 
  box-shadow: 0 0 50px rgba(14,165,164,0.15);
  animation: anchorFloat 4s ease-in-out infinite;
}
.anchor-ripple { position: absolute; inset: -10px; border: 2.5px solid var(--secondary); border-radius: 50%; opacity: 0; animation: rippleOut 3.5s infinite; }

.node { position: absolute; width: 14px; height: 14px; background: var(--secondary); border-radius: 50%; box-shadow: 0 0 20px var(--secondary); z-index: 40; }
.node span { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 0.75rem; font-weight: 800; color: var(--primary); opacity: 0.8; font-family: var(--font-display); letter-spacing: 0.05em; text-transform: uppercase; }

.node.n1 { top: 15%; left: 20%; animation: floatNode 6s infinite ease-in-out; }
.node.n2 { top: 10%; right: 15%; animation: floatNode 7s infinite ease-in-out 1s; }
.node.n3 { bottom: 20%; right: 25%; animation: floatNode 8s infinite ease-in-out 0.5s; }
.node.n4 { bottom: 25%; left: 10%; animation: floatNode 6.5s infinite ease-in-out 1.5s; }

.connect-lines .line { position: absolute; height: 1px; background: linear-gradient(90deg, var(--secondary), transparent); transform-origin: left center; opacity: 0.3; pointer-events: none; }
.line.l1 { top: 50%; left: 50%; width: 160px; transform: rotate(-140deg); animation: linePulse 5s infinite; }
.line.l2 { top: 50%; left: 50%; width: 180px; transform: rotate(-30deg); animation: linePulse 6s infinite 1.5s; }
.line.l3 { top: 50%; left: 50%; width: 150px; transform: rotate(50deg); animation: linePulse 7s infinite 0.5s; }

.floating-stat { position: absolute; font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--primary); letter-spacing: -0.5px; text-transform: uppercase; opacity: 0.8; z-index: 60; text-align: center; max-width: 140px; line-height: 1.1; }
.floating-stat.s1 { top: 5%; left: 0; animation: statFloat 5s infinite ease-in-out; }
.floating-stat.s2 { bottom: 10%; right: 0; animation: statFloat 6s infinite ease-in-out 0.5s; text-align: right; }

@keyframes anchorFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes rippleOut { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(3); opacity: 0; } }
@keyframes floatNode { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(15px, -25px); } }
@keyframes linePulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.5; } }
@keyframes statFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

@media (max-width: 991px) {
  .hero-visual-wrapper.no-box { margin-top: 50px; height: 380px; background: transparent; }
  .holographic-system { transform: scale(0.7); }
  .floating-stat { font-size: 0.8rem; }
}
