:root {
  --navy: #0F2C59;
  --navy-deep: #081630;
  --navy-light: #1E3A8A;
  --blue-accent: #2563EB;
  --blue-soft: #EEF4FF;
  --blue-glow: rgba(37, 99, 235, 0.12);
  --red: #DD1C20;
  --red-hover: #B81418;
  --red-soft: rgba(221, 28, 32, 0.08);
  --paper: #F8FAFC;
  --panel: #FFFFFF;
  --ink: #0F172A;
  --muted: #64748B;
  --line: rgba(15, 44, 89, 0.09);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.04);
  --shadow-md: 0 12px 28px -6px rgba(15, 44, 89, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 44, 89, 0.14);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  overflow-x: hidden;
  width: 100%;
}

@media(max-width: 900px) {
  body {
    padding-bottom: 76px; /* space for fixed floating emergency bar on mobile */
  }
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  word-wrap: break-word;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* Icons styling */
.svg-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.svg-ic svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Top Strip */
.top-strip {
  background: var(--navy-deep);
  color: #E2E8F0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.top-strip a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s;
}

.top-strip a:hover {
  color: #93C5FD;
}

.top-strip .emg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DD1C20;
  font-weight: 600;
  background: rgba(221, 28, 32, 0.12);
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(221, 28, 32, 0.25);
}

.top-strip .emg-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 rgba(225, 29, 72, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(225, 29, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

@media(max-width: 640px) {
  .top-strip .wrap {
    padding: 7px 16px;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 12px;
  }
}

/* Mobile Nav Backdrop Overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 48, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Site Header & Navigation */
header.site {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

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

@media(max-width: 640px) {
  .logo img {
    height: 38px;
  }
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.navlinks a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--navy);
  font-weight: 600;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after {
  transform: scaleX(1);
}

.navlinks .mobile-nav-cta {
  display: none;
}

.navcta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--navy);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-blue {
  background: var(--navy);
  color: #FFFFFF;
}

.btn-blue:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 44, 89, 0.25);
}

/* Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: #FFFFFF;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy-deep);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width: 992px) {
  .navlinks {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 32px;
    box-shadow: var(--shadow-lg);
    z-index: 150;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .navlinks.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .navlinks a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--navy-deep);
  }

  .navlinks a::after {
    display: none;
  }

  .navlinks .mobile-nav-cta {
    display: block;
    margin-top: 24px;
  }

  .navcta .btn-primary {
    display: none; /* Hide top right header button on mobile, show inside menu dropdown */
  }

  .nav-toggle {
    display: flex;
  }
}

/* Floating Emergency Bar */
.floating-emergency {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-deep);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(8, 22, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.floating-emergency a {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
}

.floating-emergency .call-btn {
  background: var(--red);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}

.floating-emergency .call-btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

@media(max-width: 640px) {
  .floating-emergency {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 14px;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .floating-emergency .call-btn {
    padding: 6px 12px;
    font-size: 12.5px;
  }
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #EEF4FF 0%, var(--paper) 100%);
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-banner .eyebrow {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-banner h1 {
  font-size: clamp(26px, 4.5vw, 38px);
  color: var(--navy-deep);
  max-width: 24ch;
  line-height: 1.2;
}

.page-banner p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

@media(max-width: 768px) {
  .page-banner {
    padding: 36px 0;
  }
  .page-banner p {
    font-size: 14.5px;
  }
}

/* Hero Section */
.hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #EEF4FF 0%, var(--paper) 100%);
  position: relative;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--blue-accent);
  background: var(--blue-soft);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero h1 {
  font-size: clamp(28px, 4.8vw, 46px);
  line-height: 1.15;
  color: var(--navy-deep);
}

.hero p.lede {
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}

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

.trust-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-item .trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.1;
}

.trust-item span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.3;
  display: block;
}

.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-photo:hover img {
  transform: scale(1.02);
}

.hero-photo .photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-photo .photo-badge .badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-photo .photo-badge div {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
}

.hero-photo .photo-badge span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}

@media(max-width: 992px) {
  .hero {
    padding: 24px 0 44px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-photo {
    order: -1;
    max-height: 320px;
  }
}

@media(max-width: 640px) {
  .hero .actions {
    flex-direction: column;
  }
  .hero .actions .btn {
    width: 100%;
  }
  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
  }
  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: #FFFFFF;
    padding: 12px 6px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .trust-item .trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .trust-item strong {
    font-size: 15px;
    line-height: 1.1;
  }
  .trust-item span {
    font-size: 11px;
    line-height: 1.2;
  }
}

@media(max-width: 360px) {
  .trust-row {
    gap: 5px;
  }
  .trust-item {
    padding: 10px 4px;
  }
  .trust-item strong {
    font-size: 13.5px;
  }
  .trust-item span {
    font-size: 10px;
  }
}

/* Sections */
.section {
  padding: 72px 0;
}

.section.alt {
  background: #FFFFFF;
}

.section.tight {
  padding: 48px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(22px, 4vw, 32px);
  max-width: 22ch;
  color: var(--navy-deep);
}

.section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 48ch;
  margin: 4px 0 0;
}

@media(max-width: 768px) {
  .section {
    padding: 44px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }
}

/* Department Grid & Filtering */
.dept-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-pill {
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

@media(max-width: 768px) {
  .dept-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dept-filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-pill {
    flex-shrink: 0;
  }
}

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

.dept-card {
  background: var(--paper);
  padding: 26px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.dept-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.dept-card .num-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dept-card .num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
}

.dept-card .dept-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dept-card h3 {
  font-size: 18.5px;
  margin-bottom: 8px;
  color: var(--navy-deep);
}

.dept-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.dept-card .dept-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--blue-accent);
  font-weight: 600;
  gap: 8px;
  flex-wrap: wrap;
}

@media(max-width: 992px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Doctors Grid */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.doc-grid.wide {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.doc-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.doc-photo {
  width: 100%;
  aspect-ratio: 3/3.2;
  background: linear-gradient(160deg, #E2E8F0, #CBD5E1);
  border-radius: 8px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.doc-card:hover .doc-photo img {
  transform: scale(1.03);
}

.doc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #DD1C20;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(221, 28, 32, 0.3);
}

.doc-card h3 {
  font-size: 17px;
  color: var(--navy-deep);
}

.doc-card .role {
  font-size: 13px;
  color: var(--red);
  margin-top: 4px;
  font-weight: 600;
}

.doc-card .qual {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  flex-grow: 1;
}

.doc-card .doc-action {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.doc-feature {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.doc-feature:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.doc-feature .doc-photo {
  margin-bottom: 0;
  aspect-ratio: 1/1.05;
}

.doc-feature h3 {
  font-size: 22px;
  color: var(--navy-deep);
}

.doc-feature .role {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}

.doc-feature .qual {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.doc-feature p.bio {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.doc-feature .btn {
  margin-top: 16px;
}

@media(max-width: 992px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doc-grid.wide {
    grid-template-columns: 1fr;
  }
  .doc-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .doc-feature .doc-photo {
    aspect-ratio: 16/10;
    max-height: 240px;
  }
}

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

/* Stats Counter Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #FFFFFF;
  padding: 24px 18px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--navy-deep);
  line-height: 1.1;
}

.stat-card span {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

@media(max-width: 992px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 16px 10px;
  }
  .stat-card strong {
    font-size: 26px;
  }
  .stat-card span {
    font-size: 12px;
  }
}

/* Value & Facility Grid */
.value-grid, .facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card, .facility-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.value-card:hover, .facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.facility-card .ficon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.value-card h3, .facility-card h3 {
  font-size: 17.5px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.value-card p, .facility-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media(max-width: 992px) {
  .value-grid, .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 640px) {
  .value-grid, .facility-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.2);
}

.team-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 16px;
  color: var(--navy-deep);
}

.team-card .role {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}

.team-card .qual {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
  flex-grow: 1;
  margin-bottom: 12px;
}

.team-card .btn,
.team-card button {
  margin-top: auto !important;
}

@media(max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Quote / Testimonial Showcase */
.quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF4FF 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-box .quote-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--blue-accent);
  opacity: 0.8;
}

.quote-box p {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 3.5vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--navy-deep);
  margin: 0;
}

.quote-box .who {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.quote-stars {
  color: #F59E0B;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

@media(max-width: 640px) {
  .quote-box {
    padding: 28px 18px;
  }
}

/* Contact Section & Form */
.contact-section {
  background: var(--navy-deep);
  color: #E2E8F0;
  padding: 64px 0;
  position: relative;
}

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

.contact-grid h2 {
  color: #FFFFFF;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 14px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14.5px;
}

.contact-item .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #FFFFFF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.3);
}

.contact-item a {
  text-decoration: none;
  color: #FFFFFF;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #93C5FD;
}

.contact-item div.label {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-form {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  color: var(--navy-deep);
  font-size: 21px;
  margin-bottom: 4px;
}

.contact-form .sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--navy-deep);
}

.field select,
.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* 16px prevents mobile browser auto-zoom on input focus */
  background: #F8FAFC;
  color: var(--ink);
  transition: all 0.2s ease;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 20px;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media(max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media(max-width: 640px) {
  .contact-section {
    padding: 44px 0;
  }
  .contact-form {
    padding: 20px 16px;
  }
}

/* FAQ Accordion Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

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

.faq-question .faq-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-ic {
  transform: rotate(180deg);
  background: var(--navy);
  color: #FFFFFF;
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

@media(max-width: 640px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 14.5px;
  }
  .faq-answer {
    padding: 0 16px 14px;
  }
}

/* Modal Booking Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 22, 48, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: #FFFFFF;
  width: min(520px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  padding: 28px 24px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--paper);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red-soft);
  color: var(--red);
}

@media(max-width: 640px) {
  .modal-content {
    padding: 20px 16px;
  }
}

/* Footer */
footer {
  background: var(--navy-deep);
  color: #94A3B8;
  padding: 36px 0 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer a {
  text-decoration: none;
  color: #CBD5E1;
  transition: color 0.2s;
}

footer a:hover {
  color: #FFFFFF;
}

footer .footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media(max-width: 640px) {
  footer .wrap {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  footer .footer-links {
    justify-content: center;
  }
}
