/* ==========================================================================
   NovaMedic™ — Irresistible High-Conversion Flagship Theme (v8.0)
   Designed to Convert 100% of Twin Cities Traffic into Inquiries
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Master Royal Palette */
  --teal-950: #022320;
  --teal-900: #043632;
  --teal-800: #064E44;
  --teal-700: #086357;
  --teal-600: #0A7C6E;
  --teal-500: #0D9488;
  --teal-400: #14B8A6;
  --teal-100: #E6F7F5;
  --teal-50:  #F0FAF9;
  
  --gold-800: #855812;
  --gold-700: #996515;
  --gold-600: #B88126;
  --gold-500: #C8943A;
  --gold-400: #DCAE58;
  --gold-300: #E5B869;
  --gold-100: #FDF5E6;
  --gold-50:  #FEFAF2;
  
  --surface-body: #FDFBF7;
  --surface-alt:  #F7F4EC;
  --surface-card: #FFFFFF;
  
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  
  --border-subtle: #E8E4DA;
  
  --shadow-subtle: 0 4px 20px rgba(4, 54, 50, 0.05);
  --shadow-card:   0 12px 36px rgba(4, 54, 50, 0.08);
  --shadow-hover:  0 22px 55px rgba(4, 54, 50, 0.14);
  --shadow-gold:   0 10px 30px rgba(200, 148, 58, 0.35);
  
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  30px;
  --radius-full:9999px;
  
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: var(--font-body);
  background-color: var(--surface-body);
  color: var(--slate-700);
  line-height: 1.65;
  scroll-behavior: smooth;
}

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

/* ==================== 1. LUXURY NAVIGATION HEADER ==================== */
.luxury-nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand-mark img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links-menu {
  display: flex;
  gap: 22px;
  list-style: none;
}
.nav-links-menu a {
  color: var(--teal-950);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color 0.2s;
  position: relative;
}
.nav-links-menu a:hover {
  color: var(--gold-600);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: var(--teal-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(200, 148, 58, 0.45);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--surface-card);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
}
.btn-teal {
  background: var(--teal-800);
  color: var(--surface-card);
}
.btn-teal:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  color: var(--teal-800);
}
.btn-white:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  background: var(--gold-50);
  transform: translateY(-2px);
}

/* ==================== 2. IMMERSIVE HERO SECTION ==================== */
.hero-royal {
  position: relative;
  padding: 65px 0 80px;
  background: linear-gradient(135deg, rgba(2, 35, 32, 0.95) 0%, rgba(4, 54, 50, 0.90) 50%, rgba(8, 99, 87, 0.86) 100%),
              url('assets/images/hero-nurse.jpg') center/cover no-repeat;
  color: var(--surface-card);
  overflow: hidden;
}
.hero-royal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--surface-body), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--surface-card);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ADE80;
  animation: pulseLive 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulseLive {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--surface-card);
  line-height: 1.14;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-title-main em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-300);
}
.hero-lead-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 26px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.avatar-group {
  display: flex;
  align-items: center;
}
.avatar-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #FFFFFF;
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.avatar-photo:first-child {
  margin-left: 0;
}
.stars-gold {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.trust-proof-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}
.trust-proof-text strong {
  color: var(--gold-300);
}

/* Hero Right: Interactive Service Selector Card */
.hero-service-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  position: relative;
  color: var(--slate-900);
}
.hero-floating-seal {
  position: absolute;
  top: -14px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: var(--teal-950);
  border-radius: var(--radius-md);
  padding: 6px 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
}

/* Service Selector Pills */
.svc-selector-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-900);
  text-decoration: none;
  transition: all 0.22s ease;
}
.svc-selector-pill:hover {
  background: var(--gold-50);
  border-color: var(--gold-500);
  transform: translateX(4px);
  color: var(--teal-950);
}
.svc-pill-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-pill-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.svc-pill-arrow {
  color: var(--gold-500);
  font-weight: 800;
  font-size: 15px;
}
.live-staff-row {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-800) 100%);
  color: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
}

/* ==================== 3. ROYAL STATS STRIP ==================== */
.stats-strip-royal {
  background: var(--teal-800);
  padding: 32px 0;
  color: var(--surface-card);
  border-bottom: 1px solid rgba(200, 148, 58, 0.2);
}
.stats-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-box .stat-number {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-300);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-box .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* ==================== 4. THREE UNBREAKABLE GUARANTEES (LOCK-IN) ==================== */
.guarantees-section {
  padding: 60px 0;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guarantee-card {
  background: var(--surface-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}
.guarantee-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.guarantee-icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.guarantee-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.guarantee-card p {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==================== 5. VERIFIED ON-DUTY NURSE PROFILES ==================== */
.nurse-profiles-section {
  padding: 85px 0;
  background: var(--surface-body);
  border-bottom: 1px solid var(--border-subtle);
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.profile-card {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: all 0.25s;
}
.profile-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 2px solid var(--teal-400);
}
.profile-title-block h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--teal-950);
  font-family: var(--font-heading);
}
.profile-title-block span {
  font-size: 12.5px;
  color: var(--gold-700);
  font-weight: 600;
}
.pnc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  border: 1px solid var(--teal-400);
  color: var(--teal-800);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.profile-specialty {
  font-size: 13.5px;
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.55;
}
.profile-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 700;
}
.status-available {
  color: #16A34A;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==================== 6. HOW IT WORKS (CARE JOURNEY) ==================== */
.how-it-works-section {
  padding: 75px 0;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-subtle);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  position: relative;
  transition: all 0.25s;
}
.step-card:hover {
  border-color: var(--gold-500);
  background: var(--surface-card);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--teal-800);
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
}
.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.step-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.step-card p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.55;
}

/* ==================== 7. PROCEDURES MATRIX ==================== */
.procedures-wrapper {
  padding: 75px 0;
  background: var(--surface-body);
  border-bottom: 1px solid var(--border-subtle);
}
.section-center-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 42px;
}
.eyebrow-tag {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-heading);
}
.headline-h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  color: var(--teal-950);
  margin-bottom: 8px;
  line-height: 1.22;
}
.headline-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-500);
}
.lead-subtext {
  color: var(--slate-600);
  font-size: 15.5px;
}

.procedures-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
}
.procedure-item-card {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.22s;
}
.procedure-item-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.proc-icon-box {
  font-size: 28px;
  width: 52px;
  height: 52px;
  background: var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proc-text-box {
  flex: 1;
}
.proc-text-box h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 3px;
  font-family: var(--font-heading);
}
.proc-text-box p {
  font-size: 12.5px;
  color: var(--slate-500);
  line-height: 1.45;
}
.proc-action-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-700);
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 12px;
  background: var(--gold-50);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  transition: all 0.2s;
}
.proc-action-btn:hover {
  background: var(--gold-500);
  color: var(--surface-card);
}

/* ==================== 8. CORE CLINICAL SERVICES ==================== */
.services-wrapper {
  padding: 85px 0;
  background: var(--surface-card);
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.clinical-card {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.clinical-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.card-media-photo {
  position: relative;
  height: 210px;
  width: 100%;
  overflow: hidden;
}
.card-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.clinical-card:hover .card-media-photo img {
  transform: scale(1.05);
}
.gold-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 35, 32, 0.92);
  backdrop-filter: blur(8px);
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
}
.card-body-area {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.clinical-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.clinical-card p {
  color: var(--slate-600);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-checklist {
  list-style: none;
  margin-bottom: 18px;
  margin-top: auto;
}
.service-checklist li {
  font-size: 13px;
  color: var(--slate-800);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-checklist li::before {
  content: '✓';
  color: var(--teal-600);
  font-weight: 900;
}
.service-rate-tag {
  font-size: 13.5px;
  color: var(--teal-800);
  font-weight: 800;
  margin-bottom: 16px;
  display: block;
  font-family: var(--font-heading);
}

/* ==================== 9. SHIFT CALCULATOR ==================== */
.calculator-section {
  padding: 85px 0;
  background: var(--surface-body);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.calculator-box {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.calc-controls .form-group {
  margin-bottom: 16px;
}
.calc-controls label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-950);
  margin-bottom: 6px;
}
.calc-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--slate-900);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.calc-select:focus {
  border-color: var(--teal-600);
  background: var(--surface-card);
}
.calc-output-card {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-800) 100%);
  color: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(200, 148, 58, 0.3);
}
.calc-output-tag {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  font-family: var(--font-heading);
}
.calc-price-big {
  font-size: 32px;
  font-weight: 900;
  color: var(--surface-card);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.calc-shift-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  display: block;
}

/* ==================== 10. MEDICAL DIRECTOR SECTION ==================== */
.director-editorial-section {
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-800) 100%);
  color: var(--surface-card);
  padding: 85px 0;
  border-bottom: 1px solid rgba(200, 148, 58, 0.2);
}
.director-editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.director-media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(200, 148, 58, 0.3);
}
.director-media-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.director-gold-seal {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-950);
  border: 1.5px solid var(--gold-300);
  color: var(--gold-300);
  padding: 7px 22px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  font-family: var(--font-heading);
}
.editorial-content .eyebrow-tag {
  color: var(--gold-300);
}
.editorial-content .headline-h2 {
  color: var(--surface-card);
  text-align: left;
}
.editorial-quote {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  border-left: 3px solid var(--gold-500);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  font-family: var(--font-serif);
}
.editorial-body-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 24px;
}
.director-signature strong {
  color: var(--surface-card);
  font-size: 16.5px;
  font-family: var(--font-serif);
}
.director-signature span {
  color: var(--gold-300);
  font-size: 13px;
}

/* ==================== 11. PRICING & SHIFTS ==================== */
.pricing-wrapper {
  background: var(--surface-card);
  padding: 85px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.pricing-tier-card {
  background: var(--surface-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px 26px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-tier-card.featured-tier {
  border-color: var(--gold-500);
  background: var(--surface-card);
  box-shadow: var(--shadow-hover);
}
.tier-gold-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: var(--teal-950);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}
.tier-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--teal-950);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.tier-desc {
  font-size: 13.5px;
  color: var(--slate-500);
  margin-bottom: 20px;
}
.price-display-box {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.price-display-box .cost {
  font-size: 27px;
  font-weight: 900;
  color: var(--teal-950);
  font-family: var(--font-heading);
}
.price-display-box .unit {
  font-size: 13.5px;
  color: var(--slate-500);
}

/* ==================== 12. TRUST CREDENTIALS ==================== */
.credentials-wrapper {
  padding: 75px 0;
  background: var(--surface-body);
}
.credentials-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.credential-item-box {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.22s;
}
.credential-item-box:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.credential-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.credential-item-box h4 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--teal-950);
  font-family: var(--font-heading);
}
.credential-item-box p {
  font-size: 13px;
  color: var(--slate-500);
}

/* ==================== 13. LOCAL COVERAGE HUBS ==================== */
.coverage-wrapper {
  background: var(--surface-card);
  padding: 85px 0;
  border-top: 1px solid var(--border-subtle);
}
.cities-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.city-sector-card {
  background: var(--surface-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
}
.city-sector-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--teal-950);
  font-family: var(--font-heading);
}
.sector-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}
.sector-pill {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-900);
  text-decoration: none;
  transition: all 0.2s;
}
.sector-pill:hover {
  background: var(--gold-50);
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateY(-2px);
}

/* ==================== 14. FAQS ACCORDION ==================== */
.faq-wrapper {
  background: var(--surface-body);
  padding: 85px 0;
}
.faq-accordion-box {
  max-width: 840px;
  margin: 0 auto;
}
.faq-row {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-row[open] {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-subtle);
}
.faq-trigger {
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--teal-950);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}
.faq-trigger::-webkit-details-marker {
  display: none;
}
.faq-trigger::after {
  content: '+';
  font-size: 20px;
  color: var(--gold-500);
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-row[open] .faq-trigger::after {
  content: '−';
}
.faq-content {
  padding: 0 24px 20px;
  color: var(--slate-700);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ==================== 15. TESTIMONIALS ==================== */
.testimonials-wrapper {
  background: var(--surface-card);
  padding: 85px 0;
  border-top: 1px solid var(--border-subtle);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: var(--surface-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}
.star-rating {
  color: var(--gold-500);
  font-size: 15px;
  margin-bottom: 10px;
}
.quote-passage {
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.client-info strong {
  display: block;
  font-size: 15px;
  color: var(--teal-950);
  font-family: var(--font-heading);
}
.client-info span {
  font-size: 12.5px;
  color: var(--gold-700);
  font-weight: 600;
}

/* ==================== 16. MASTER ROYAL FOOTER ==================== */
.master-royal-footer {
  background: var(--teal-950);
  color: var(--surface-card);
  padding: 65px 0 26px;
}
.footer-four-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 40px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 12px 0;
}
.footer-column h4 {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--gold-300);
  font-family: var(--font-heading);
}
.footer-nav-list {
  list-style: none;
}
.footer-nav-list li {
  margin-bottom: 8px;
}
.footer-nav-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav-list a:hover {
  color: var(--gold-300);
}
.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 18px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.2s;
}
.float-whatsapp {
  background: #25D366;
  color: var(--surface-card);
}
.float-call {
  background: var(--gold-500);
  color: var(--teal-950);
}
.float-btn:active {
  transform: scale(0.92);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-grid-four {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .director-editorial-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .cities-two-col-grid {
    grid-template-columns: 1fr;
  }
  .footer-four-columns {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 14px;
  }
  .luxury-nav-header {
    padding: 8px 0;
  }
  .brand-mark img {
    height: 32px !important;
  }
  .nav-actions .btn-teal {
    display: none;
  }
  .nav-actions .btn-whatsapp {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
  }

  .hero-royal {
    padding: 24px 0 36px;
  }
  .hero-badge-pill {
    font-size: 10.5px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .hero-title-main {
    font-size: 26px !important;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-lead-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-cta-row .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
  .hero-trust-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 14px;
  }

  .hero-service-card {
    padding: 18px 14px;
  }
  .hero-floating-seal {
    font-size: 10px;
    padding: 4px 10px;
    top: -12px;
    right: 12px;
  }
  .svc-selector-pill {
    padding: 9px 11px;
    font-size: 12.5px;
    margin-bottom: 6px;
  }
  .svc-pill-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .step-card {
    padding: 20px 16px;
  }

  .stat-box .stat-number {
    font-size: 26px;
  }
  .stat-box .stat-label {
    font-size: 11.5px;
  }

  .calculator-box {
    padding: 20px 16px;
  }
  .calc-price-big {
    font-size: 26px;
  }

  .procedures-matrix {
    grid-template-columns: 1fr;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  .card-media-photo {
    height: 180px;
  }
  .director-media-wrap img {
    height: 260px;
  }

  .guarantees-section,
  .nurse-profiles-section,
  .how-it-works-section,
  .procedures-wrapper,
  .services-wrapper,
  .calculator-section,
  .director-editorial-section,
  .pricing-wrapper,
  .credentials-wrapper,
  .coverage-wrapper,
  .faq-wrapper,
  .testimonials-wrapper {
    padding: 36px 0;
  }
  .headline-h2 {
    font-size: 22px !important;
  }
  .lead-subtext {
    font-size: 13.5px;
  }
  .pricing-tier-card {
    padding: 22px 16px;
  }
  .credentials-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .credential-item-box {
    padding: 14px 10px;
  }
  .footer-four-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ==================== MOBILE PERSISTENT BOTTOM ACTION BAR ==================== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 600px) {
  body {
    padding-bottom: 70px; /* Space for sticky bar */
  }
  .floating-actions {
    bottom: 80px; /* Float above the sticky bar */
    right: 14px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(2, 35, 32, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1.5px solid var(--gold-500);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
  }
  .mobile-bar-btn {
    flex: 1;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 800;
    font-family: var(--font-heading);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }
  .mobile-bar-wa {
    background: #25D366;
    color: var(--surface-card);
  }
  .mobile-bar-call {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
    color: var(--teal-950);
  }
}

.pnc-shield-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}
