/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-mid: #1a2d4a;
  --teal: #0891b2;
  --teal-light: #22d3ee;
  --teal-dark: #0e7490;
  --gold: #c7a44a;
  --gold-light: #e0c97a;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px rgba(8,145,178,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.8;
}
.text-center { text-align: center; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 12px rgba(8,145,178,0.3);
}
.nav-logo span { font-size: 0.8rem; opacity: 0.6; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  padding: 8px 22px;
  margin-left: 4px;
}
.nav-links a.nav-cta:hover { filter: brightness(1.15); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: -0.01em;
}
.nav-mobile a:hover { color: var(--teal-light); background: rgba(255,255,255,0.05); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 22, 40, 0.93) 0%, rgba(10, 22, 40, 0.72) 45%, rgba(8, 145, 178, 0.2) 100%),
    linear-gradient(to top, rgba(10, 22, 40, 1) 0%, transparent 35%);
  z-index: 1;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.25);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 145, 178, 0.12);
  border: 1px solid rgba(8, 145, 178, 0.25);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.9;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 4px 24px rgba(8, 145, 178, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(8, 145, 178, 0.4);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  z-index: 4;
  margin-top: -60px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== SECTION BASE ===== */
section { padding: 120px 0; }
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }
.section-alt { background: var(--off-white); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 280px; }
}

/* ===== DEPARTMENTS ===== */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}
.dept-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: var(--transition);
}
.dept-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(8, 145, 178, 0.12);
  border-color: rgba(8, 145, 178, 0.2);
}
.dept-card:hover::before { opacity: 1; }
.dept-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(8, 145, 178, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.dept-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.dept-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}
.dept-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-light);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition-fast);
}
.dept-link:hover { gap: 10px; color: #fff; }
.dept-link svg { transition: transform var(--transition-fast); }
.dept-link:hover svg { transform: translateX(3px); }

/* ===== HEMODIALYSIS ===== */
.hemo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hemo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hemo-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.hemo-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateX(4px);
}
.hemo-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.hemo-feature h4 { margin-bottom: 6px; font-size: 1rem; }
.hemo-feature p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

.hemo-info-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hemo-info-card h3 { margin-bottom: 16px; }
.hemo-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }
.hemo-info-card ul { display: flex; flex-direction: column; gap: 14px; }
.hemo-info-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hemo-info-card li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.15);
  border: 1.5px solid rgba(8, 145, 178, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

@media (max-width: 768px) {
  .hemo-content { grid-template-columns: 1fr; }
  .hemo-info-card { position: static; }
}

/* ===== RADIATION ONCOLOGY ===== */
.radio-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.radio-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
}
.radio-hero h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.radio-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.tech-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.tech-card h4 {
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}
.tech-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-glow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--teal-dark); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gray-500);
}
.faq-item.active .faq-toggle {
  background: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ===== ONCOLOGY / CHEMO ===== */
.onco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.onco-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}
.onco-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(8, 145, 178, 0.2);
}
.onco-card h3 { color: #fff; margin-bottom: 16px; }
.onco-card p, .onco-card li {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}
.onco-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.onco-card li { display: flex; align-items: center; gap: 10px; }
.onco-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .onco-grid { grid-template-columns: 1fr; }
}

/* ===== PSYCHOLOGY / NUTRITION ===== */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.support-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(199, 164, 74, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 24px;
}
.support-card h3 { margin-bottom: 14px; }
.support-card p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.75; }

@media (max-width: 768px) {
  .support-grid { grid-template-columns: 1fr; }
}

/* ===== SURGERY & OPHTHALMOLOGY ===== */
.surgery-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.procedures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.procedure-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.procedure-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(8, 145, 178, 0.3);
}
.procedure-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.surgery-sidebar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.surgery-sidebar h3 { color: #fff; margin-bottom: 16px; }
.surgery-sidebar p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
.surgery-stat {
  text-align: center;
  padding: 24px;
  background: rgba(8, 145, 178, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(8, 145, 178, 0.15);
}
.surgery-stat .stat-number { font-size: 2.2rem; }
.surgery-stat .stat-label { color: rgba(255,255,255,0.55); }

@media (max-width: 768px) {
  .surgery-content { grid-template-columns: 1fr; }
  .procedures-grid { grid-template-columns: 1fr; }
}

/* ===== PATIENT INFO ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.info-card h3 { font-size: 1.05rem; margin: 0; }
.info-card ul { display: flex; flex-direction: column; gap: 10px; }
.info-card li {
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.info-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ===== NEWS ===== */
.news-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-xl);
  padding: 56px;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.news-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 164, 74, 0.1) 0%, transparent 70%);
}
.news-date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.news-card h3 { font-size: 1.3rem; margin-bottom: 14px; position: relative; z-index: 1; }
.news-card p { color: rgba(255,255,255,0.65); position: relative; z-index: 1; line-height: 1.75; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 8px 36px rgba(8, 145, 178, 0.08);
  border-color: rgba(8, 145, 178, 0.15);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--teal-light);
}
.contact-card-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(8, 145, 178, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
}
.contact-item a { color: var(--teal-light); transition: var(--transition-fast); }
.contact-item a:hover { color: #fff; }
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 300px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) brightness(0.85);
}
.map-label {
  text-align: center;
  margin-top: 14px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.8; }
.footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.footer li a:hover { color: var(--teal-light); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 0; }
  .radio-hero { padding: 40px 28px; }
  .hemo-info-card { padding: 32px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(8, 145, 178, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(8, 145, 178, 0.45);
}

/* ===== GOLD ACCENT LINE ===== */
.section-dark + section:not(.section-dark):not(.section-alt)::before,
.section-alt + section:not(.section-dark):not(.section-alt)::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin-bottom: 0;
}
