/* Goyal Hospital — Premium Healthcare Design System */

:root {
  --primary: #0B5C8F;
  --primary-dark: #083E63;
  --accent-yellow: #FFD400;
  --cta-red: #E53935;
  --cta-red-dark: #C62828;
  --white: #FFFFFF;
  --cream: #FFF8E6;
  --dark: #083E63;
  --text: #3D4F5F;
  --text-light: #6B7C8A;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --bg-light: #F4F8FB;
  --shadow: 0 8px 32px rgba(8, 62, 99, 0.1);
  --shadow-lg: 0 16px 48px rgba(8, 62, 99, 0.15);
  --radius: 16px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

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

/* ── Top Bar ── */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: var(--accent-yellow); font-weight: 500; }
.top-bar a:hover { color: var(--white); }

.top-bar .trust-tag {
  color: var(--accent-yellow);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Header ── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(8, 62, 99, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── Navigation ── */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 10px 12px;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--primary);
  background: var(--cream);
}

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  z-index: 100;
  border: 1px solid rgba(11, 92, 143, 0.08);
}

.main-nav li:hover .dropdown { display: block; }

.main-nav .dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  text-transform: none;
  font-weight: 500;
  border-radius: 10px;
}

.main-nav .dropdown li a:hover {
  background: var(--cream);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-cta {
  background: var(--cta-red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35);
}

.btn-cta:hover {
  background: var(--cta-red-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.45);
}

.btn-call {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0E7AB8 100%);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 212, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1 {
  color: var(--accent-yellow);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-content .hero-subtitle {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-content .hospital-name {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content p {
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-size: 15px;
  max-width: 540px;
}

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

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* ── Trust Stats ── */
.stats-section {
  margin-top: -56px;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 92, 143, 0.06);
  transition: transform var(--transition);
}

.stat-card:hover { transform: translateY(-6px); }

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  font-size: 0.6em;
  color: var(--cta-red);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* ── Section Utilities ── */
.section { padding: 80px 0; }

.section-alt { background: var(--bg-light); }

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.section-services {
  background: linear-gradient(
    180deg,
    var(--bg-light) 0%,
    #d0e2ee 6%,
    #5b8fad 16%,
    var(--primary-dark) 28%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding-bottom: 48px;
}

.section-services .section-header h2,
.section-services .section-eyebrow {
  color: var(--accent-yellow);
}

.section-services .section-header p {
  color: var(--text-on-dark);
}

#services + .section-dark {
  padding-top: 48px;
  margin-top: 0;
}

.section-dark h2,
.section-dark h3 { color: var(--accent-yellow); }

.section-dark p { color: var(--text-on-dark); }

.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.section-dark .section-header h2 { color: var(--accent-yellow); }

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  font-size: 16px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-dark .section-eyebrow { color: var(--accent-yellow); }

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-content p {
  margin-bottom: 16px;
  font-size: 15px;
}

/* ── Features ── */
.features { padding: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(11, 92, 143, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream) 0%, #EEF6FC 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ── Accreditations ── */
.accreditations-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 45%, var(--bg-light) 100%);
  border-top: 1px solid rgba(11, 92, 143, 0.06);
  border-bottom: 1px solid rgba(11, 92, 143, 0.06);
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.accreditation-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: none;
  border: none;
  box-shadow: none;
}

.accreditation-card img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.accreditation-card--nabh img {
  max-height: 175px;
}

.accreditation-card--rghs img {
  max-height: 160px;
}

/* ── Doctor Cards ── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(11, 92, 143, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doctor-card-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
}

.doctor-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--accent-yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.doctor-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--accent-yellow);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.doctor-card-header h3 {
  color: var(--accent-yellow);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.doctor-card-header .doctor-degree {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.doctor-card-header .doctor-specialty {
  color: var(--text-on-dark);
  font-size: 13px;
}

.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.doctor-badge {
  background: rgba(255, 212, 0, 0.2);
  color: var(--accent-yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 212, 0, 0.3);
}

.doctor-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}

.doctor-card-body ul {
  list-style: none;
  flex: 1;
  margin-bottom: 0;
}

.doctor-card-body .btn {
  margin-top: auto;
  flex-shrink: 0;
}

.doctor-card-body li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(11, 92, 143, 0.06);
}

.doctor-card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── Services Premium ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(11, 92, 143, 0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 17px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card a.card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card a.card-link:hover { color: var(--cta-red); }

.service-card > a:not(.card-link) { color: inherit; }

/* Legacy service card (image only link) */
.service-card > a:first-child img + h3,
.service-card > a h3 {
  padding: 16px;
  font-size: 15px;
  text-align: center;
}

/* ── Why Choose ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.why-item:hover { background: rgba(255, 255, 255, 0.12); }

.why-check {
  width: 28px;
  height: 28px;
  background: var(--accent-yellow);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.why-item span {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Insurance ── */
.insurance-section {
  text-align: center;
}

.insurance-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--cream);
}

.insurance-box .insurance-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.insurance-box h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.insurance-box p {
  color: var(--text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.insurance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.insurance-tag {
  background: var(--cream);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Surgery Grid ── */
.surgery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.surgery-grid:last-child { margin-bottom: 0; }

.surgery-grid.reverse { direction: rtl; }
.surgery-grid.reverse > * { direction: ltr; }

.surgery-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.surgery-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--primary);
}

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(11, 92, 143, 0.1);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--cta-red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-item.active .faq-answer { max-height: 400px; }

/* ── Mission Vision ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent-yellow);
}

.mv-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.contact-info ul { list-style: none; }

.contact-info li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 92, 143, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.contact-info .icon {
  color: var(--primary);
  font-size: 18px;
  min-width: 24px;
}

.appointment-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 92, 143, 0.06);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.map-wrapper {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 92, 143, 0.08);
  background: var(--bg-light);
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 92, 143, 0.08);
  border-top: 4px solid var(--accent-yellow);
  display: flex;
  flex-direction: column;
}

.map-info-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(11, 92, 143, 0.08);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.map-info-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.map-address {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 20px;
}

.map-meta {
  list-style: none;
  margin-bottom: 24px;
}

.map-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 92, 143, 0.08);
  font-size: 14px;
}

.map-meta li:last-child { border-bottom: 0; }

.map-meta span {
  min-width: 22px;
  font-size: 16px;
}

.map-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.map-actions .btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(11, 92, 143, 0.15);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 92, 143, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Footer ── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 72px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--accent-yellow);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.footer-trust {
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--accent-yellow);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-header p {
  color: var(--text-on-dark);
  margin-top: 12px;
  font-size: 16px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--accent-yellow);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-on-dark);
  margin-bottom: 28px;
  font-size: 16px;
}

.cta-banner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-yellow);
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}

.testimonial-card .stars {
  color: var(--accent-yellow);
  margin-bottom: 12px;
  font-size: 16px;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .header-cta { display: none; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

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

  .accreditations-grid { grid-template-columns: 1fr; max-width: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .surgery-grid { grid-template-columns: 1fr; }
  .surgery-grid.reverse { direction: ltr; }

  .mv-grid, .contact-grid { grid-template-columns: 1fr; }
  .map-layout { grid-template-columns: 1fr; }
  .map-wrapper { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
  }

  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; }

  .main-nav .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 12px;
    display: block;
    border: none;
  }

  .stats-grid,
  .features-grid,
  .services-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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