/* ============================================================
   CSS VARIABLES — Car Wash Theme
   ============================================================ */
:root {
  /* Brand */
  --primary:        #1A6FBF;
  --primary-dark:   #145A9E;
  --accent:         #F5A623;
  --secondary:      #0D1B2A;

  /* Surfaces — light mode */
  --bg:             #F4F7FC;
  --bg-alt:         #E8EFF8;
  --text:           #0D1B2A;
  --text-muted:     #4A6180;
  --border:         #C4D4E8;

  /* Typography */
  --font-heading:   'Montserrat', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Shape */
  --radius:         12px;
  --radius-sm:      8px;
  --shadow-sm:      0 2px 16px rgba(13,27,42,.07);
  --shadow-md:      0 8px 36px rgba(13,27,42,.13);
  --shadow-lg:      0 24px 64px rgba(13,27,42,.19);
  --transition:     .3s ease;
  --section-gap:    100px;
}

[data-theme="dark"] {
  --bg:             #0D1B2A;
  --bg-alt:         #132234;
  --text:           #E2EAF5;
  --text-muted:     #6B8AAA;
  --border:         #1E3350;
  --shadow-sm:      0 2px 16px rgba(0,0,0,.32);
  --shadow-md:      0 8px 36px rgba(0,0,0,.42);
  --shadow-lg:      0 24px 64px rgba(0,0,0,.52);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section.section {
  padding: var(--section-gap) 0;
}

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

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   NAVBAR — Flex row: logo left, links+phone+book right
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  transition: background var(--transition), border-bottom-color var(--transition),
              box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--bg);
  border-bottom-color: var(--accent);
  box-shadow: 0 4px 28px rgba(13,27,42,.09);
  padding: .65rem 0;
}

[data-theme="dark"] .navbar.scrolled { background: var(--bg); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .55rem;
  letter-spacing: -.02em;
  transition: color var(--transition);
  flex-shrink: 0;
}

.navbar-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 8px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.navbar.hero-overlap .navbar-brand { color: #fff; }
.navbar.hero-overlap .navbar-brand-icon { background: var(--accent); color: var(--secondary); }

/* Right side: nav links + divider + phone + book + hamburger */
.navbar-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .42rem .85rem;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(26,111,191,.08); }

.nav-link--active {
  color: var(--primary) !important;
  background: rgba(26,111,191,.1) !important;
}

.navbar.hero-overlap .nav-link { color: rgba(255,255,255,.82); }
.navbar.hero-overlap .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.navbar.hero-overlap .nav-link--active { color: var(--accent) !important; background: rgba(245,166,35,.15) !important; }

.navbar-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 .5rem;
  flex-shrink: 0;
}
.navbar.hero-overlap .navbar-divider { background: rgba(255,255,255,.2); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Phone link in navbar */
.navbar-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .65rem;
  color: var(--text);
  border-radius: 7px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.navbar-phone:hover { color: var(--primary); background: rgba(26,111,191,.08); }
.navbar.hero-overlap .navbar-phone { color: rgba(255,255,255,.8); }
.navbar.hero-overlap .navbar-phone:hover { color: #fff; background: rgba(255,255,255,.08); }

/* Book Now button */
.btn-book-nav {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.35rem;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-book-nav:hover {
  background: #e09518;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  color: var(--secondary);
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--primary); background: rgba(26,111,191,.1); }
.navbar.hero-overlap .theme-toggle { color: rgba(255,255,255,.82); }
.theme-toggle svg { width: 20px; height: 20px; }

[data-theme="light"] .icon-sun,
[data-theme="dark"]  .icon-moon { display: none; }

/* Legacy btn-cta kept for compatibility */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .58rem 1.35rem;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  background: #e09518;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  color: var(--secondary);
}

.nav-close-item { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem;
  color: var(--text);
}
.navbar.hero-overlap .hamburger { color: #fff; }
.hamburger svg { width: 24px; height: 24px; }

/* ============================================================
   HERO — Diagonal shape + parallelogram frame + floating stats
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1B2A 0%, #0F2240 50%, #0A3060 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Diagonal stripe pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,.018) 0px,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
  z-index: 0;
}

/* Large orange diagonal shape on right */
.hero-diagonal {
  position: absolute;
  top: 0;
  right: -5%;
  width: 55%;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  background: linear-gradient(145deg, rgba(245,166,35,.07), rgba(26,111,191,.1));
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  padding: 9rem 0 7rem;
  flex: 1;
}

.hero-content { color: #fff; }

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 3px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -.04em;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  background: #e09518;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,.4);
  color: var(--secondary);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.25rem;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  transition: border-color var(--transition), background var(--transition);
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Trust badges */
.hero-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

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

/* Hero visual: parallelogram frame */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-img-frame {
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  overflow: hidden;
  position: relative;
}

.hero-portrait {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 520px;
  background: rgba(255,255,255,.04);
  border: 2px dashed rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
}
.hero-portrait-placeholder svg { width: 72px; height: 72px; opacity: .2; }

/* Decorative orange offset behind parallelogram */
.hero-img-accent {
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: -12px;
  left: 12px;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  background: var(--accent);
  opacity: .25;
  z-index: -1;
  pointer-events: none;
}

/* Floating stats card at bottom of hero */
.hero-stats-strip {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-stats-inner {
  background: var(--bg);
  border-radius: 16px 16px 0 0;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -16px 60px rgba(0,0,0,.25);
  max-width: 1140px;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT — Image right, text left with feature items
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: center;
}

.about-body { max-width: 520px; }
.about-body .section-title { margin-bottom: 1.5rem; }
.about-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* Feature items row */
.about-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,111,191,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.about-feature-icon svg { width: 16px; height: 16px; }

/* Image column: right side, orange left border accent */
.about-image-wrap {
  position: relative;
  padding-left: 1.25rem;
  border-left: 5px solid var(--accent);
}

.about-image-wrap img {
  width: 100%;
  border-radius: 0 var(--radius) var(--radius) 0;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  display: block;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(145deg, var(--secondary) 0%, #1A3555 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 4rem;
  font-weight: 300;
}

/* About badge: bottom-left of image column */
.about-image-badge {
  position: absolute;
  z-index: 2;
  bottom: -1rem;
  left: 0;
  background: var(--accent);
  color: var(--secondary);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

.about-image-badge span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

/* ============================================================
   SERVICES — Icon-strip cards (no image header)
   ============================================================ */
.services-header { text-align: center; margin-bottom: 3rem; }
.services-header .section-label { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .45rem 1.25rem;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.filter-btn--active:hover { color: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* New service card: icon strip + body */
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.svc-img-header {
  height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
}
.svc-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .svc-img-header img { transform: scale(1.06); }

.svc-icon-strip {
  height: 72px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon-strip svg {
  color: var(--accent);
  width: 32px;
  height: 32px;
}

.svc-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.svc-body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
  gap: .5rem;
}

.svc-cat {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  flex: 1;
  min-width: 0;
}

.svc-price {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 900;
  color: var(--secondary);
  background: var(--accent);
  padding: .25rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
  color: var(--text);
}

.svc-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Legacy class aliases kept for placeholder compatibility */
.service-card-image--placeholder { display: none; }
.svc-placeholder-icon { display: none; }
.svc-placeholder-initial { display: none; }

/* ============================================================
   GALLERY — 3-col grid, every 4th spans 2 cols
   ============================================================ */
.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-header .section-label { justify-content: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: .75rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-alt);
  grid-column: span 1;
}

.gallery-item:nth-child(4n+1) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem .85rem .75rem;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover .gallery-item-overlay { transform: translateY(0); }

.gallery-item-caption-text {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .025em;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  flex: 1;
}

.gallery-item-overlay svg {
  color: rgba(255,255,255,.9);
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-left: .5rem;
}

.gallery-item--placeholder { cursor: default; }
.gallery-item--placeholder:hover img { transform: none; }
.gallery-item--placeholder:hover .gallery-item-overlay { transform: translateY(100%); }

.gallery-item-ph {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--bg-alt) 0%, var(--border) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.25rem .75rem;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.45;
}
.gallery-item-ph svg { opacity: .3; flex-shrink: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   REVIEWS — Static 3-column card grid
   ============================================================ */
.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-header .section-label { justify-content: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .8;
  color: var(--accent);
  opacity: .25;
  font-style: normal;
  flex-shrink: 0;
  user-select: none;
}

.stars { display: flex; gap: .1rem; }
.star.filled { color: #F59E0B; }
.star        { color: var(--border); font-size: .9rem; }

.review-card-text {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bg-alt);
}

.review-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: .875rem;
  display: block;
  color: var(--text);
}

.review-author-verified {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  display: block;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
}
.faqs-left {
  position: sticky;
  top: 7rem;
}
.faqs-left .section-label { margin-bottom: .75rem; }
.faqs-left .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.faqs-deco {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 1;
  color: var(--border);
  user-select: none;
  font-weight: 900;
  letter-spacing: -.08em;
  transition: color var(--transition);
}
.faqs-items { min-width: 0; }

.faq-item {
  border-bottom: 1.5px solid var(--border);
  transition: border-color var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: -.01em;
}
.faq-question:hover { color: var(--primary); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   LOCATION — Dark navy bg, 3-col meta row, full-width map
   ============================================================ */
.location-section {
  background: var(--secondary);
  color: #fff;
}

.location-section .section-label {
  color: var(--accent);
}
.location-section .section-label::before {
  background: var(--accent);
}
.location-section .section-title {
  color: #fff;
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.location-meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-meta-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(245,166,35,.15);
  border: 1.5px solid rgba(245,166,35,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.location-meta-icon svg {
  color: var(--accent);
  width: 20px; height: 20px;
}

.location-meta-label {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.location-meta-item p,
.location-meta-item a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: .25rem;
}
.location-meta-item a:hover { color: var(--accent); }

.location-hours {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.location-hour-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
}

.location-hour-day {
  color: rgba(255,255,255,.45);
}

.location-hour-time {
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

.location-map-full {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}
.location-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   CONTACT — Dark bg, 3 method cards + optional form
   ============================================================ */
.contact-section {
  background: var(--secondary);
  color: #fff;
}
[data-theme="dark"] .contact-section { background: #060E1A; }

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-header .section-label { color: var(--accent); justify-content: center; }
.contact-header .section-label::before { background: var(--accent); }
.contact-header .section-title { color: #fff; }
.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: .5rem auto 0;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(320px, 100%);
  padding: 2.5rem 2rem;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.contact-method:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,.08);
  transform: translateY(-4px);
  color: #fff;
}

.contact-method-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 26px; height: 26px; }

.contact-method-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .35rem;
  color: #fff;
}

.contact-method-value {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-method-action {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-form-wrap {
  max-width: 560px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.1);
}

.contact-form { text-align: left; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: -.01em;
  cursor: pointer;
  border: none;
  width: 100%;
  justify-content: center;
}
.contact-btn:hover { transform: translateY(-2px); }

.contact-btn--primary {
  background: var(--accent);
  color: var(--secondary);
}
.contact-btn--primary:hover {
  background: #e09518;
  box-shadow: 0 8px 28px rgba(245,166,35,.4);
  color: var(--secondary);
}

/* ============================================================
   FOOTER — 4-column grid
   ============================================================ */
.footer {
  background: var(--secondary);
  padding: 4.5rem 0 0;
}

[data-theme="dark"] .footer { background: #060E1A; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-col--brand {}

.footer-logo-link { display: inline-block; margin-bottom: .75rem; }

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: rgba(255,255,255,.9);
  margin-bottom: .5rem;
  letter-spacing: -.03em;
}

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.35);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(245,166,35,.1);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.footer-nav li { padding: .3rem 0; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .82rem;
}

.footer-hour-day {
  color: rgba(255,255,255,.35);
}

.footer-hour-time {
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

.footer-no-hours {
  font-size: .875rem;
  color: rgba(255,255,255,.38);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--accent);
  opacity: .8;
}
.footer-contact-item a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

/* ============================================================
   PAGE HERO (inner pages — services, gallery)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #0F2240 50%, #0A3060 100%);
  padding: 8rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,.015) 0px,
      rgba(255,255,255,.015) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}

.page-hero .section-label { color: var(--accent); justify-content: center; }
.page-hero .section-label::before { background: var(--accent); }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-top: .5rem;
  letter-spacing: -.04em;
}

/* ============================================================
   SERVICES TOOLBAR (filter + search row)
   ============================================================ */
.services-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.services-toolbar .services-filter { margin-bottom: 0; }

.services-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.services-search-wrap svg {
  position: absolute;
  left: .85rem;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.services-search {
  padding: .48rem 1rem .48rem 2.4rem;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .85rem;
  width: 220px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.services-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,191,.1);
}
.services-search::placeholder { color: var(--text-muted); }

/* ============================================================
   NO RESULTS / EMPTY STATE
   ============================================================ */
.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
  font-size: 1rem;
}

/* ============================================================
   VIEW ALL LINK
   ============================================================ */
.section-view-all { text-align: center; margin-top: 3rem; }

.section-view-all a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.01em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.section-view-all a:hover { border-color: var(--primary); }

/* ============================================================
   LIGHTBOX — prev/next navigation
   ============================================================ */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 2;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  max-width: 90vw;
}

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity .18s ease;
}

.lightbox-img--fade { opacity: 0; }

.lightbox-caption {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-align: center;
  max-width: 55ch;
  line-height: 1.5;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,166,35,.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
}
.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #e09518;
  box-shadow: 0 6px 28px rgba(245,166,35,.6);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col--brand { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 55% 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr 360px; gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .hero-inner { grid-template-columns: 1fr; padding: 7rem 0 5rem; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 480px; }
  .about-body { max-width: 100%; }

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

  .location-meta-grid { grid-template-columns: 1fr 1fr; }

  .faqs-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faqs-left { position: static; }
  .faqs-deco { display: none; }

  .hero-stats-inner { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem 2rem; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .navbar-inner {
    display: flex;
    justify-content: space-between;
  }

  /* Hide desktop nav links and phone in navbar */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 80vw);
    height: 100%;
    background: var(--secondary);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    gap: .25rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .38s cubic-bezier(.4,0,.2,1), visibility .38s;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .navbar.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 199;
  }

  .nav-links .nav-link {
    display: block;
    padding: .85rem 1rem;
    border-radius: 9px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    background: none;
  }
  .nav-links .nav-link:hover { color: var(--accent); background: rgba(255,255,255,.07); }

  .hamburger { display: flex; }
  .nav-close-item { display: list-item; list-style: none; }

  .nav-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,.7);
    padding: .4rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }
  .nav-close:hover { background: rgba(255,255,255,.12); color: #fff; }

  /* Hide phone + book button on mobile (in navbar) */
  .navbar-phone { display: none; }
  .btn-book-nav { display: none; }
  .navbar-divider { display: none; }

  .hero-stats-inner { justify-content: flex-start; }

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

  .location-meta-grid { grid-template-columns: 1fr; gap: 2rem; }

  .contact-methods { flex-direction: column; align-items: center; }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
}

@media (max-width: 540px) {
  :root { --section-gap: 64px; }
  .container { padding: 0 1.25rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: .75rem; }
  .hero-stats-inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .hero-stat-divider { display: none; }
  .about-features { flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
  .services-toolbar { flex-direction: column; align-items: stretch; }
  .services-search  { width: 100%; }
  .lightbox-prev    { left: .6rem; width: 40px; height: 40px; }
  .lightbox-next    { right: .6rem; width: 40px; height: 40px; }
}
