/* ==========================================================================
   HERPAVILION CLEANING SOLUTIONS — MAIN STYLESHEET
   Single stylesheet for the entire site. Mobile-first.
   Brand: Deep Navy (authority) + Orange (action). No green.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --navy-950: #071427;
  --navy-900: #0a1f3d;
  --navy-800: #102a52;
  --navy-700: #17376b;
  --navy-600: #1f4784;
  --navy-100: #e6ecf5;
  --navy-50:  #f3f6fb;

  --orange-600: #d9640f;
  --orange-500: #f2761c;
  --orange-400: #f68f45;
  --orange-100: #fdece0;
  --orange-50:  #fff5ee;

  --white: #ffffff;
  --gray-50:  #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-400: #9aa4b2;
  --gray-600: #5a6472;
  --gray-800: #2b323d;
  --gray-900: #1a1f29;

  --success: #1f8a4c;

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(10, 31, 61, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 31, 61, 0.16);

  --header-height: 76px;
  --transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-600); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-7); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: var(--navy-100); }
.section--light { background: var(--gray-50); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-7);
}

.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: var(--space-3);
}

.section--navy .eyebrow { color: var(--orange-400); }

.grid {
  display: grid;
  gap: var(--space-6);
}

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--orange {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--orange:hover { background: var(--orange-600); }

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-800); }

.btn--outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-navy {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn--outline-navy:hover { background: var(--navy-50); }

.btn--whatsapp {
  background: #1f8a4c;
  color: var(--white);
}
.btn--whatsapp:hover { background: #187339; }

.btn--block { width: 100%; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.brand-logo-mark {
  height: 42px;
  width: auto;
  max-width: 160px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-list {
  display: none;
  align-items: center;
  gap: var(--space-5);
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--navy-900);
  border-color: var(--orange-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-actions .btn-call {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy-50);
  border: none;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-900); }

@media (min-width: 960px) {
  .nav-list { display: flex; }
  .nav-toggle { display: none; }
  .header-actions .btn-call { display: inline-flex; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}

.mobile-nav[data-open="true"] { visibility: visible; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 39, 0.55);
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav[data-open="true"] .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(84vw, 360px);
  background: var(--navy-900);
  padding: var(--space-6) var(--space-5);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav[data-open="true"] .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-3) 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list a:hover { color: var(--orange-400); }

.mobile-nav-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-nav-contact {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.15);
  color: var(--navy-100);
  font-size: 0.9rem;
}

.mobile-nav-contact a { color: var(--white); font-weight: 600; }

body[data-nav-open="true"] { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 700px;
  background: var(--navy-900);
  color: var(--white);
}

@media (min-width: 700px) { .hero-slider { min-height: 620px; } }
@media (min-width: 1100px) { .hero-slider { min-height: 660px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(7,20,39,0.88) 0%, rgba(16,42,82,0.78) 60%, rgba(23,55,107,0.66) 100%);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-8);
}

.hero-slide-inner h1 { color: var(--white); margin-bottom: var(--space-4); }
.hero-slide-inner h1 em { color: var(--orange-400); font-style: normal; }

.hero-slide-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 20, 39, 0.55);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hero-arrow:hover { background: var(--orange-500); border-color: var(--orange-500); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow--prev { left: var(--space-5); }
.hero-arrow--next { right: var(--space-5); }

@media (min-width: 700px) {
  .hero-arrow { display: flex; }
}

.hero-dots {
  position: absolute;
  bottom: var(--space-5);
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot:hover { background: rgba(255,255,255,0.7); }

.hero-dot.is-active {
  background: var(--orange-500);
  transform: scale(1.25);
}

.hero-trust-bar {
  background: var(--navy-800);
  padding-block: var(--space-5);
}

.hero-trust-bar .hero-trust {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  justify-content: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-7);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(242, 118, 28, 0.15);
  border: 1px solid rgba(242, 118, 28, 0.4);
  color: var(--orange-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-5);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--navy-100);
  max-width: 540px;
  margin-bottom: var(--space-6);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.88rem;
  color: var(--navy-100);
}

.hero-trust-item svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-visual-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-visual-badge svg { width: 32px; height: 32px; color: var(--orange-400); flex-shrink: 0; }
.hero-visual-badge strong { display: block; color: var(--white); font-size: 0.95rem; }
.hero-visual-badge span { color: var(--navy-100); font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   7. PAGE HERO (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding-block: var(--space-7);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--navy-100);
  margin-bottom: var(--space-4);
}

.breadcrumbs a { color: var(--navy-100); }
.breadcrumbs a:hover { color: var(--orange-400); }
.breadcrumbs span[aria-hidden] { color: var(--gray-400); }
.breadcrumbs .current { color: var(--white); font-weight: 600; }

.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .hero-lead { color: var(--navy-100); }

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange-100);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--orange-50);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: var(--space-2); }
.card p { font-size: 0.94rem; margin-bottom: var(--space-4); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
}

.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card-link:hover { color: var(--orange-500); }
.card-link:hover svg { transform: translateX(3px); }

/* Service card variant with image */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card-media {
  aspect-ratio: 16/10;
  background: var(--navy-100);
  overflow: hidden;
}

.service-card-media img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.service-card-body p { font-size: 0.92rem; flex: 1; }

/* Area / location card */
.area-card {
  background: var(--navy-50);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border: 1px solid var(--navy-100);
}

.area-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.area-card p { font-size: 0.88rem; margin-bottom: var(--space-3); }

/* --------------------------------------------------------------------------
   9. WHY CHOOSE / FEATURE LIST
   -------------------------------------------------------------------------- */
.feature-item {
  display: flex;
  gap: var(--space-4);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section--navy .feature-icon { background: rgba(242,118,28,0.15); }

.feature-icon svg { width: 22px; height: 22px; }

.feature-item h4 { margin-bottom: var(--space-1); }
.feature-item p { font-size: 0.9rem; margin: 0; }
.section--navy .feature-item p { color: var(--navy-100); }

/* --------------------------------------------------------------------------
   10. STATS STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 700px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--orange-500);
}

.stat-label { font-size: 0.85rem; color: var(--navy-100); margin-top: var(--space-1); }

/* --------------------------------------------------------------------------
   11. STEPS / PROCESS
   -------------------------------------------------------------------------- */
.steps-list {
  display: grid;
  gap: var(--space-6);
  counter-reset: step;
}

@media (min-width: 700px) { .steps-list { grid-template-columns: repeat(4, 1fr); } }

.step-item { position: relative; padding-top: var(--space-6); }

.step-number {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.step-item h4 { margin-top: var(--space-4); margin-bottom: var(--space-2); }
.step-item p { font-size: 0.9rem; margin: 0; }

/* --------------------------------------------------------------------------
   12. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.testimonial-stars { color: var(--orange-500); margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial-quote { font-size: 0.98rem; color: var(--gray-800); margin-bottom: var(--space-5); }

.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.92rem; color: var(--navy-900); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-600); }

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list { max-width: 820px; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}

.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--orange-500);
  transition: transform var(--transition);
}

.faq-item[data-open="true"] .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item[data-open="true"] .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding-bottom: var(--space-5); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   14. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(242,118,28,0.25), transparent 55%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); margin-bottom: var(--space-3); }
.cta-banner p { color: var(--navy-100); max-width: 560px; margin-inline: auto; margin-bottom: var(--space-6); }
.cta-banner .btn-row { justify-content: center; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   15. FORMS
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: var(--space-5); }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}

.form-group .required { color: var(--orange-500); }

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.96rem;
  transition: border-color var(--transition);
}

.form-control:focus { border-color: var(--orange-500); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: 0.82rem; color: var(--gray-600); margin-top: var(--space-2); }

.form-status {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status[data-state="success"] { display: block; background: #eafaf0; color: var(--success); border: 1px solid #c5eed7; }
.form-status[data-state="error"] { display: block; background: var(--orange-50); color: var(--orange-600); border: 1px solid var(--orange-100); }

/* --------------------------------------------------------------------------
   16. CONTACT / MAP
   -------------------------------------------------------------------------- */
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); }

.contact-info-item { display: flex; gap: var(--space-4); }

.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: var(--space-1); }
.contact-info-item p, .contact-info-item a { font-size: 0.94rem; color: var(--gray-600); }
.contact-info-item a:hover { color: var(--orange-500); }

.map-frame {
  width: 100%;
  aspect-ratio: 16/10;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   17. STICKY MOBILE CTA BAR
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-900);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.18);
}

.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.6rem 0.4rem 0.75rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar a svg { width: 20px; height: 20px; margin-bottom: 2px; }
.mobile-cta-bar a.is-book { background: var(--orange-500); }

@media (min-width: 960px) {
  .mobile-cta-bar { display: none; }
}

body.has-mobile-cta { padding-bottom: 64px; }
@media (min-width: 960px) { body.has-mobile-cta { padding-bottom: 0; } }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: var(--navy-100);
  padding-block: var(--space-8) var(--space-6);
}

.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-7);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1080px) {
  .footer-grid { grid-template-columns: 1.3fr 0.85fr 0.95fr 0.95fr 1fr; }
  .footer-grid .footer-brand { grid-column: auto; }
}

.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text small { color: var(--navy-100); }

.footer-about {
  font-size: 0.88rem;
  color: var(--navy-100);
  margin-top: var(--space-4);
  max-width: 320px;
}

.footer-rc { font-size: 0.8rem; color: var(--gray-400); margin-top: var(--space-3); }

.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover { background: var(--orange-500); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: 0.9rem; color: var(--navy-100); }
.footer-col a:hover { color: var(--orange-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--gray-400);
}

.footer-bottom-text p { margin-bottom: var(--space-2); }
.footer-bottom-text p:last-child { margin-bottom: 0; }
.footer-bottom-text a { color: var(--gray-400); }
.footer-bottom-text a:hover { color: var(--orange-400); }

.footer-bottom-links { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray-400); }
.footer-bottom-links a:hover { color: var(--orange-400); }

/* --------------------------------------------------------------------------
   19. CONTENT PAGES (about, blog articles, legal)
   -------------------------------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: var(--space-7); margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.prose p { margin-bottom: var(--space-4); font-size: 1rem; }
.prose ul, .prose ol { margin-bottom: var(--space-4); padding-left: 1.3rem; color: var(--gray-600); }
.prose li { margin-bottom: var(--space-2); }
.prose a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--orange-400); text-underline-offset: 3px; }
.prose img { border-radius: var(--radius-md); margin-block: var(--space-5); }
.prose blockquote {
  border-left: 4px solid var(--orange-500);
  padding-left: var(--space-5);
  font-style: italic;
  color: var(--navy-800);
  margin: var(--space-6) 0;
}

.two-col {
  display: grid;
  gap: var(--space-7);
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }
.two-col img, .two-col .media-block { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--navy-100); }
.two-col img { width: 100%; height: 100%; object-fit: cover; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-media { aspect-ratio: 16/10; background: var(--navy-100); overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: 0.78rem; color: var(--orange-500); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-2); }
.blog-card-body p { font-size: 0.9rem; flex: 1; }

.article-header { max-width: 780px; margin-inline: auto; text-align: center; }
.article-meta { display: flex; justify-content: center; gap: var(--space-4); font-size: 0.85rem; color: var(--navy-100); margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   20. TABLES (pricing/comparison — used sparingly)
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; margin-bottom: var(--space-5); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { text-align: left; padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--gray-200); font-size: 0.92rem; }
th { background: var(--navy-50); color: var(--navy-900); font-family: var(--font-heading); }

/* --------------------------------------------------------------------------
   21. BADGES / TAGS
   -------------------------------------------------------------------------- */
.tag {
  display: inline-block;
  background: var(--navy-50);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   22. 404 PAGE
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-9);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--navy-100);
  line-height: 1;
}

/* --------------------------------------------------------------------------
   23. UTILITIES
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.text-orange { color: var(--orange-500); }
.text-navy { color: var(--navy-900); }
.max-w-prose { max-width: 62ch; }
.mx-auto { margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
