/* ===================================================================
 * Papanikolopoulos Ortho — Main Stylesheet
 * Extracted from Design Component inline styles
 * =================================================================== */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

::selection {
  background: rgba(18, 165, 148, 0.2);
}

@keyframes floatUp {
  from { transform: translateY(16px); }
  to   { transform: translateY(0); }
}

/* ── Typography ──────────────────────────────────────────── */
body {
  font-family: 'Mulish', system-ui, sans-serif;
  color: #1c2b3a;
  -webkit-font-smoothing: antialiased;
}

/* ── Site Wrapper ────────────────────────────────────────── */
.site-wrapper {
  position: relative;
}

/* ── 3D Background Canvas ───────────────────────────────── */
#bg3d {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.site-content {
  position: relative;
  z-index: 1;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e9eef3;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ── Logo / Brand ────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-right: auto;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, #0d3b66, #082a4d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 59, 102, 0.28);
}

.brand-name {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #0d3b66;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 11px;
  color: #5d6b7a;
  letter-spacing: 0.03em;
}

/* ── Navigation ──────────────────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #42546a;
  background: transparent;
  transition: background 0.15s;
}

.nav-link:hover {
  background: #f1f5f8;
}

.nav-link--active {
  font-weight: 700;
  color: #0d3b66;
  background: #eef4f9;
}

/* ── Header Phone ────────────────────────────────────────── */
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #0d3b66;
  font-weight: 700;
  font-size: 14.5px;
  padding-left: 10px;
}

.header-phone:hover {
  color: #12a594;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  font-family: inherit;
}

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

.btn--primary {
  background: #12a594;
  color: #fff;
  padding: 11px 18px;
  border-radius: 9px;
  font-size: 14.5px;
  box-shadow: 0 6px 16px rgba(18, 165, 148, 0.32);
}

.btn--primary-lg {
  background: #12a594;
  color: #fff;
  padding: 15px 26px;
  border-radius: 11px;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(18, 165, 148, 0.34);
}

.btn--outline {
  background: #fff;
  border: 1.5px solid #d8e2ec;
  color: #0d3b66;
  padding: 15px 24px;
  border-radius: 11px;
  font-size: 16px;
}

.btn--outline:hover {
  border-color: #0d3b66;
}

.btn--dark {
  background: #0d3b66;
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 15px;
}

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

.btn--full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn--ghost-light {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 11px;
  text-decoration: none;
  transition: background 0.15s;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 165, 148, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 28px 88px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #eaf2f8;
  border: 1px solid #d4e3ee;
  color: #0d3b66;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12a594;
  box-shadow: 0 0 0 3px rgba(18, 165, 148, 0.2);
}

.hero-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0c2b48;
  margin: 22px 0 0;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.65;
  color: #46586b;
  margin: 24px 0 0;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid #e7eef4;
}

.hero-stat-value {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #0d3b66;
}

.hero-stat-label {
  font-size: 13px;
  color: #5d6b7a;
}

.hero-stat-divider {
  width: 1px;
  height: 34px;
  background: #e0e8ef;
}

/* ── Hero Image Placeholder ──────────────────────────────── */
.hero-image-wrap {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(12, 43, 72, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.6);
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #e7eef4 0 14px, #eef3f7 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12.5px;
  color: #8aa0b5;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ── Floating Badge Cards ────────────────────────────────── */
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px -10px rgba(12, 43, 72, 0.28);
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #eef3f7;
}

.floating-badge--bottom-left {
  bottom: 24px;
  left: -26px;
}

.floating-badge--top-right {
  top: 22px;
  right: -22px;
  background: #0d3b66;
  color: #fff;
  box-shadow: 0 18px 40px -10px rgba(12, 43, 72, 0.4);
  max-width: 180px;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge--bottom-left .floating-badge-icon {
  background: #eaf6f4;
}

.floating-badge-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0c2b48;
}

.floating-badge--top-right .floating-badge-title {
  color: #fff;
}

.floating-badge-subtitle {
  font-size: 12.5px;
  color: #5d6b7a;
}

.floating-badge--top-right .floating-badge-subtitle {
  color: #a8c0d6;
  margin-top: 2px;
}

/* ── Hospital Bar ────────────────────────────────────────── */
.hospital-bar {
  background: rgba(11, 34, 60, 0.58);
  backdrop-filter: blur(1px);
  padding: 30px 28px;
}

.hospital-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hospital-bar-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7fa3c4;
  text-transform: uppercase;
}

.hospital-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce7f1;
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 17px;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-label {
  color: #12a594;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: #0c2b48;
  margin: 12px 0 0;
  line-height: 1.1;
}

.section-title--sm {
  font-size: 30px;
}

.section-title--lg {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.section-header-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #5d6b7a;
  max-width: 360px;
  margin: 0;
}

.section-header--centered {
  text-align: center;
}

/* ── Page Containers ─────────────────────────────────────── */
.page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 92px 28px 20px;
}

.page-section--sm {
  max-width: 1100px;
}

.page-section--xs {
  max-width: 1000px;
}

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

.service-card {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: 18px;
  padding: 30px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(12, 43, 72, 0.22);
  border-color: #cfe0ec;
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(145deg, #eaf6f4, #d8efeb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #0c2b48;
  margin: 0 0 10px;
}

.service-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5d6b7a;
  margin: 0 0 18px;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #12a594;
  font-weight: 700;
  font-size: 14px;
}

/* ── Service Card — Featured (spans 2 cols) ─────────────── */
.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(120deg, #0d3b66, #0a4f73);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.service-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(12, 43, 72, 0.4);
}

.service-card--featured .service-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 15px;
  background: rgba(18, 165, 148, 0.18);
  margin-bottom: 0;
}

.service-card--featured .service-card-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.service-card--featured .service-card-desc {
  color: #b3cbe0;
  margin-bottom: 0;
}

.service-card--featured .service-card-link {
  color: #3fd6c4;
  white-space: nowrap;
}

.service-card-body {
  flex: 1;
}

/* ── About Section (Home) ────────────────────────────────── */
.about-card {
  background: #f4f8fb;
  border: 1px solid #e7eef4;
  border-radius: 24px;
  padding: 52px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.about-card-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: repeating-linear-gradient(135deg, #e3ebf2 0 14px, #ebf1f6 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 44px -18px rgba(12, 43, 72, 0.25);
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-image-placeholder {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  color: #8aa0b5;
  text-align: center;
  line-height: 1.7;
}

.about-card-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: #0c2b48;
  margin: 12px 0 18px;
  line-height: 1.15;
}

.about-card-text {
  font-size: 16px;
  line-height: 1.75;
  color: #46586b;
  margin: 0 0 26px;
}

.about-card-checkmarks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 600;
  color: #2b3c4d;
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  background: #f4f8fb;
  border-top: 1px solid #e7eef4;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: 14px;
  padding: 22px 26px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.faq-item:hover {
  border-color: #cfe0ec;
}

.faq-item--open {
  border-color: #cfe0ec;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-question-text {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0c2b48;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #eaf2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
  font-size: 20px;
  font-weight: 600;
  transition: background 0.15s;
}

.faq-item--open .faq-toggle {
  background: #12a594;
  color: #fff;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #5d6b7a;
  margin: 14px 0 0;
  display: none;
}

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

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(120deg, rgba(9, 28, 52, 0.80), rgba(13, 59, 102, 0.60));
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  bottom: -140px;
  left: -60px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 165, 148, 0.18), transparent 70%);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.cta-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.cta-text {
  font-size: 17px;
  color: #b3cbe0;
  margin: 0;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #082a4d;
  color: #c5d3e0;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #0d3b66;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-name {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #9fb3c8;
  max-width: 340px;
  margin: 0;
}

.footer-heading {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-contact {
  font-size: 14px;
  line-height: 2.1;
  color: #9fb3c8;
}

.footer-contact a {
  color: #9fb3c8;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #12a594;
}

.footer-contact-highlight {
  color: #fff;
  font-weight: 600;
}

.footer-emergency {
  color: #12a594;
  font-weight: 600;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid #143a5e;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #6f88a3;
}

.footer-bottom a {
  color: #6f88a3;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #9fb3c8;
}

/* ── Page Hero (Inner Pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, rgba(9, 28, 52, 0.82), rgba(13, 59, 102, 0.62));
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 165, 148, 0.16), transparent 70%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 28px 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cfe0ec;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 100px;
}

.page-hero-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 20px 0 0;
}

.page-hero-text {
  font-size: 19px;
  line-height: 1.65;
  color: #b3cbe0;
  margin: 20px 0 0;
  max-width: 560px;
}

.page-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.page-hero-stat-value {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #3fd6c4;
}

.page-hero-stat-label {
  font-size: 13px;
  color: #9fb3c8;
}

.page-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #1a4368 0 14px, #224d75 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 60px -20px rgba(0, 0, 0, 0.5);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image-placeholder {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #7fa3c4;
  text-align: center;
  line-height: 1.7;
}

/* ── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #8595a4;
  font-weight: 600;
}

.breadcrumbs a {
  color: #8595a4;
  text-decoration: none;
  cursor: pointer;
}

.breadcrumbs a:hover {
  color: #0d3b66;
}

.breadcrumbs .current {
  color: #0d3b66;
}

/* ── Timeline ────────────────────────────────────────────── */
.timeline-label {
  color: #12a594;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.timeline-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #0c2b48;
  margin: 12px 0 56px;
  text-align: center;
}

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding-bottom: 38px;
  position: relative;
}

.timeline-date {
  text-align: right;
  padding-top: 2px;
}

.timeline-year {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0d3b66;
}

.timeline-place {
  font-size: 12.5px;
  color: #8595a4;
  margin-top: 2px;
}

.timeline-content {
  border-left: 2px solid #e3ebf2;
  padding-left: 30px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #12a594;
  box-shadow: 0 0 0 4px #eaf6f4;
}

.timeline-item-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0c2b48;
  margin-bottom: 6px;
}

.timeline-item-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5d6b7a;
  margin: 0;
}

/* ── Info Cards Grid ─────────────────────────────────────── */
.info-cards-grid {
  background: #f4f8fb;
  border-top: 1px solid #e7eef4;
}

.info-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-card {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: 18px;
  padding: 34px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.info-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon--blue {
  background: #eaf2f8;
}

.info-card-icon--green {
  background: #eaf6f4;
}

.info-card-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #0c2b48;
}

.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card-item {
  padding: 16px 18px;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #eef3f7;
}

.info-card-item-title {
  font-weight: 700;
  font-size: 15.5px;
  color: #1c2b3a;
}

.info-card-item-subtitle {
  font-size: 14px;
  color: #5d6b7a;
  margin-top: 3px;
}

.info-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5d6b7a;
  margin: 0 0 14px;
}

.info-card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 13px;
  font-weight: 600;
  color: #0d3b66;
  background: #eaf2f8;
  padding: 6px 13px;
  border-radius: 100px;
  display: inline-block;
}

.publication-card {
  padding: 18px 20px;
  background: linear-gradient(120deg, #f4f8fb, #eef5f9);
  border-radius: 12px;
  border-left: 3px solid #12a594;
}

.publication-card-title {
  font-weight: 700;
  font-size: 15.5px;
  color: #1c2b3a;
  line-height: 1.5;
}

.publication-card-desc {
  font-size: 14px;
  color: #5d6b7a;
  margin-top: 6px;
  line-height: 1.6;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 88px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-form-card {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px -28px rgba(12, 43, 72, 0.2);
}

.form-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #0c2b48;
  margin: 0 0 6px;
}

.form-subtitle {
  font-size: 14.5px;
  color: #5d6b7a;
  margin: 0 0 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #2b3c4d;
  margin-bottom: 8px;
}

.form-label .required {
  color: #e74c3c;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #e3ebf2;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1c2b3a;
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #12a594;
}

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

.form-submit {
  margin-top: 24px;
}

.form-response {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 14.5px;
}

.form-response--success {
  background: #eaf6f4;
  color: #0a7a6c;
  border: 1px solid #c8e8e2;
}

.form-response--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-spinner {
  display: none;
}

.form-submit--loading .form-spinner {
  display: inline-block;
}

.form-submit--loading .form-submit-text {
  display: none;
}

/* ── Success State ────────────────────────────────────────── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eaf6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.form-success-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #0c2b48;
  margin: 0 0 10px;
}

.form-success-text {
  font-size: 15.5px;
  color: #5d6b7a;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 380px;
}

/* ── Contact Sidebar ──────────────────────────────────────── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-map-card {
  background: #fff;
  border: 1px solid #e7eef4;
  border-radius: 18px;
  overflow: hidden;
}

.contact-map {
  height: 200px;
  background: repeating-linear-gradient(135deg, #e3ebf2 0 16px, #ebf1f6 16px 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map-fallback {
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  color: #8aa0b5;
  position: absolute;
  bottom: 14px;
}

.contact-map-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: #12a594;
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(18, 165, 148, 0.4);
}

.contact-map-details {
  padding: 22px;
}

.contact-map-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-map-address-title {
  font-weight: 700;
  font-size: 15px;
  color: #1c2b3a;
}

.contact-map-address-text {
  font-size: 14px;
  color: #5d6b7a;
  margin-top: 2px;
}

/* ── Contact Info Card ────────────────────────────────────── */
.contact-info-card {
  background: #0d3b66;
  border-radius: 18px;
  padding: 26px;
}

.contact-info-phone {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #143a5e;
}

.contact-info-phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(18, 165, 148, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-phone-label {
  font-size: 12.5px;
  color: #9fb3c8;
}

.contact-info-phone-number {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.contact-info-hours {
  padding-top: 18px;
}

.contact-info-hours-label {
  font-size: 12.5px;
  color: #9fb3c8;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-info-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #dce7f1;
  padding: 5px 0;
}

.contact-info-hours-row span:last-child {
  font-weight: 600;
}

.contact-info-emergency {
  margin-top: 14px;
  padding: 11px 14px;
  background: rgba(18, 165, 148, 0.14);
  border-radius: 10px;
  font-size: 13.5px;
  color: #3fd6c4;
  font-weight: 600;
}

/* ── Service Detail Layout ────────────────────────────────── */
.service-detail-hero {
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  border-bottom: 1px solid #e7eef4;
}

.service-detail-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 28px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.service-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #eaf6f4;
  border: 1px solid #c8e8e2;
  color: #0a7a6c;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 100px;
}

.service-detail-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #0c2b48;
  margin: 20px 0 0;
}

.service-detail-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #46586b;
  margin: 20px 0 0;
  max-width: 520px;
}

.service-detail-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.service-detail-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: repeating-linear-gradient(135deg, #e3ebf2 0 14px, #ebf1f6 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 60px -22px rgba(12, 43, 72, 0.3);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.service-detail-main h2 {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: #0c2b48;
  margin: 12px 0 18px;
}

.service-detail-main p {
  font-size: 16px;
  line-height: 1.8;
  color: #46586b;
  margin: 0 0 16px;
}

/* ── Treatment Steps ──────────────────────────────────────── */
.treatment-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.treatment-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f7fafc;
  border: 1px solid #eef3f7;
  border-radius: 14px;
  padding: 20px 22px;
}

.treatment-step-number {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: #0d3b66;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.treatment-step-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #0c2b48;
  margin-bottom: 4px;
}

.treatment-step-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5d6b7a;
  margin: 0;
}

/* ── Service Sidebar ──────────────────────────────────────── */
.service-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-sidebar-cta {
  background: linear-gradient(150deg, #0d3b66, #0a4f73);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 44px -18px rgba(12, 43, 72, 0.35);
}

.service-sidebar-cta-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
}

.service-sidebar-cta-text {
  font-size: 14px;
  line-height: 1.6;
  color: #b3cbe0;
  margin: 0 0 20px;
}

.service-sidebar-cta .btn--primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 10px;
}

.service-sidebar-phone {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  transition: background 0.15s;
}

.service-sidebar-phone:hover {
  background: rgba(255, 255, 255, 0.1);
}

.service-sidebar-related {
  background: #f7fafc;
  border: 1px solid #eef3f7;
  border-radius: 18px;
  padding: 24px;
}

.service-sidebar-related-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0c2b48;
  margin-bottom: 14px;
}

.related-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #eef3f7;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: #2b3c4d;
  text-decoration: none;
}

.related-service-link:hover {
  color: #12a594;
}

.related-service-link:last-child {
  border-bottom: none;
}

.related-service-link-arrow {
  color: #12a594;
}

/* ── CTA Section Alt (About page) ──────────────────────── */
.cta-section--inline {
  background: linear-gradient(120deg, rgba(9, 28, 52, 0.80), rgba(13, 59, 102, 0.60));
}

.cta-inner--inline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-title--inline {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  margin: 0;
  max-width: 540px;
}

/* ── Desktop/Mobile Toggle (hidden in production) ────────── */
.device-toggle {
  display: none; /* Hidden by default — only for development */
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #fff;
  border: 1px solid #e3ebf2;
  border-radius: 100px;
  padding: 5px;
  gap: 3px;
  box-shadow: 0 12px 30px -8px rgba(12, 43, 72, 0.3);
}

/* ── Blog / Single Post ──────────────────────────────────── */
.post-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 28px;
}

.post-content h1 {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: #0c2b48;
  margin: 0 0 20px;
}

.post-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #46586b;
}

/* ── 404 Page ────────────────────────────────────────────── */
.error-404 {
  text-align: center;
  padding: 100px 28px;
}

.error-404-title {
  font-family: 'Commissioner', sans-serif;
  font-weight: 800;
  font-size: 80px;
  color: #0d3b66;
  margin: 0 0 10px;
}

.error-404-text {
  font-size: 18px;
  color: #5d6b7a;
  margin-bottom: 30px;
}

/* ── Accessibility ────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid #12a594;
  outline-offset: 2px;
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  @page { margin: 0.5cm; }
  figure, table { break-inside: avoid; }
  *,
  *::before,
  *::after {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    animation-delay: -99s !important;
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: both !important;
    animation-play-state: running !important;
    transition-duration: 0s !important;
  }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner,
  .page-hero-inner,
  .service-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .page-hero-title {
    font-size: 36px;
  }

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

  .service-card--featured {
    grid-column: span 2;
  }

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

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

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

  .service-detail-body {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .cta-inner,
  .cta-inner--inline {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: auto;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-inner {
    padding: 40px 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .page-section {
    padding: 60px 16px;
  }

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

  .service-card--featured {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .info-cards-inner {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .about-card {
    padding: 30px 20px;
  }

  .about-card-title {
    font-size: 26px;
  }

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

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-date {
    text-align: left;
  }

  .timeline-content {
    border-left: none;
    padding-left: 0;
  }

  .timeline-dot {
    display: none;
  }

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

  .section-title {
    font-size: 28px;
  }

  .section-title--lg {
    font-size: 32px;
  }
}
