    :root {
      --navy:      #0b2d48;
      --navy-dark: #071e30;
      --navy-mid:  #0f3d60;
      --aqua:      #5bc8f0;
      --aqua-dark: #39acd8;
      --white:     #ffffff;
      --muted:     #7aaec8;
      --muted-dim: #4a7a9b;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--navy-dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── DEV BANNER ─────────────────────────── */
    .dev-banner {
      background: #e6a817;
      color: #1a0900;
      text-align: center;
      padding: 9px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ── NAV ─────────────────────────────────── */
    nav {
      background: var(--navy-dark);
      border-bottom: 3px solid var(--aqua);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 62px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
      text-decoration: none;
    }

    .nav-logo-top {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      color: var(--white);
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .nav-logo-rule {
      height: 2px;
      background: var(--aqua);
      margin: 2px 0;
    }

    .nav-logo-bottom {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      color: var(--aqua);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

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

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.15s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--aqua) !important;
      color: var(--navy-dark) !important;
      padding: 8px 20px !important;
      font-weight: 900 !important;
    }

    .nav-cta:hover {
      background: var(--aqua-dark) !important;
      color: var(--white) !important;
    }

    /* ── HERO ────────────────────────────────── */
    .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        -45deg,
        transparent 0,
        transparent 28px,
        rgba(91,200,240,0.04) 28px,
        rgba(91,200,240,0.04) 29px
      );
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5vw 90px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
    }

    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 18px;
    }

    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.93;
      margin-bottom: 8px;
    }

    .hero-title .line-1 {
      font-size: clamp(64px, 8.5vw, 110px);
      color: var(--white);
      display: block;
    }

    .hero-rule {
      height: 5px;
      background: var(--aqua);
      width: 92%;
      margin: 10px 0;
    }

    .hero-title .line-2 {
      font-size: clamp(50px, 6.8vw, 88px);
      color: var(--aqua);
      display: block;
    }

    .hero-sub {
      margin-top: 28px;
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
      max-width: 500px;
    }

    .hero-sub strong { color: var(--white); font-weight: 600; }

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

    .btn {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.15s;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--aqua);
      color: var(--navy-dark);
      padding: 14px 30px;
    }

    .btn-primary:hover { background: var(--aqua-dark); transform: translateY(-2px); }

    .btn-outline {
      border: 2px solid var(--aqua);
      color: var(--aqua);
      padding: 12px 26px;
    }

    .btn-outline:hover { background: var(--aqua); color: var(--navy-dark); }

    .hero-badge {
      background: rgba(11,45,72,0.7);
      border: 2px solid var(--aqua);
      padding: 36px 44px;
      text-align: center;
      position: relative;
      flex-shrink: 0;
    }

    .hero-badge::after {
      content: '';
      position: absolute;
      bottom: -8px; right: -8px;
      width: 100%; height: 100%;
      border: 1px solid rgba(91,200,240,0.25);
      pointer-events: none;
    }

    .badge-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 4.5rem;
      color: var(--aqua);
      line-height: 1;
    }

    .badge-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      margin-top: 4px;
    }

    .badge-divider { height: 2px; background: var(--aqua); margin: 14px auto; width: 50%; }

    .badge-sub { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }

    /* ── CONTACT STRIP ───────────────────────── */
    .contact-strip {
      background: var(--aqua);
      padding: 13px 5vw;
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
      align-items: center;
    }

    .contact-strip a,
    .contact-strip span {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.05em;
      color: var(--navy-dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .contact-strip a:hover { text-decoration: underline; }

    /* ── SERVICES ────────────────────────────── */
    #services { background: var(--navy); }

    .services-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5vw;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      text-transform: uppercase;
      line-height: 0.95;
      color: var(--white);
    }

    .section-title em { color: var(--aqua); font-style: normal; }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 50px;
      gap: 30px;
      flex-wrap: wrap;
    }

    .services-header p {
      color: var(--muted);
      font-weight: 300;
      line-height: 1.6;
      max-width: 420px;
      font-size: 1rem;
    }

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

    .service-card {
      background: var(--navy-dark);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 0;
      background: var(--aqua);
      transition: height 0.3s ease;
    }

    .service-card:hover { transform: translateY(-4px); }
    .service-card:hover::before { height: 100%; }

    .service-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

    .service-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 10px;
    }

    .service-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.65; color: var(--muted); }

    .scope-note {
      background: var(--navy-dark);
      border-left: 4px solid var(--muted-dim);
      padding: 20px 24px;
      margin-top: 50px;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .scope-note strong { color: var(--white); }

    /* ── PHOTO GRID ──────────────────────────── */
    #work { background: var(--navy-dark); }

    .work-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5vw;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 220px;
      gap: 3px;
      margin-top: 40px;
    }

    .photo-grid .photo:first-child { grid-row: span 2; }

    .photo {
      background: var(--navy-mid);
      overflow: hidden;
    }

    .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .photo:hover img {
      transform: scale(1.05);
    }

    /* ── BEFORE & AFTER ──────────────────────── */
    .before-after-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      margin-top: 24px;
    }

    .before-after-pair + .before-after-pair {
      margin-top: 40px;
    }

    .before-after-card {
      position: relative;
      overflow: hidden;
      height: 300px;
    }

    .before-after-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .before-after-label {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      z-index: 1;
    }

    .before-label {
      background: rgba(239,68,68,0.9);
      color: var(--white);
    }

    .after-label {
      background: rgba(34,197,94,0.9);
      color: var(--white);
    }

    @media (max-width: 768px) {
      .before-after-card { height: 200px; }
    }

    /* ── HOW IT WORKS ────────────────────────── */
    #process { background: var(--navy); }

    .process-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5vw;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 50px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 28px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--aqua) 10%, var(--aqua) 90%, transparent);
    }

    .step { padding: 0 24px; text-align: center; }

    .step-num {
      width: 56px; height: 56px;
      background: var(--aqua);
      color: var(--navy-dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }

    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 8px;
    }

    .step-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.6; color: var(--muted); }

    /* ── FAQ ─────────────────────────────────── */
    #faq { background: var(--navy-dark); }

    .faq-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5vw;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 48px;
    }

    .faq-item { background: var(--navy); padding: 28px 30px; }

    .faq-q {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--aqua);
      margin-bottom: 10px;
    }

    .faq-a { font-size: 0.92rem; font-weight: 300; line-height: 1.65; color: var(--muted); }

    /* ── FOOTER ──────────────────────────────── */
    footer {
      background: var(--navy-dark);
      border-top: 3px solid var(--aqua);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 5vw 30px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer-logo-top {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--white);
      text-transform: uppercase;
      display: block;
      line-height: 1;
    }

    .footer-rule { height: 3px; background: var(--aqua); margin: 5px 0; width: 80%; }

    .footer-logo-bottom {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      color: var(--aqua);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-tagline {
      margin-top: 14px;
      font-size: 0.85rem;
      color: var(--muted-dim);
      font-weight: 300;
      line-height: 1.6;
    }

    .footer-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--aqua);
      margin-bottom: 16px;
    }

    .footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-list li { font-size: 0.9rem; color: var(--muted); font-weight: 300; }
    .footer-list a { color: var(--muted); text-decoration: none; }
    .footer-list a:hover { color: var(--white); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 5vw;
      border-top: 1px solid rgba(91,200,240,0.12);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom p { font-size: 0.8rem; color: var(--muted-dim); }

    /* ── MOBILE ──────────────────────────────── */
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-badge { display: none; }
      .nav-links { display: none; }
      .faq-grid { grid-template-columns: 1fr; }
      .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .photo-grid .photo:first-child { grid-row: span 1; }
      .steps { grid-template-columns: 1fr 1fr; gap: 30px; }
      .steps::before { display: none; }
      .footer-inner { grid-template-columns: 1fr; }
      .services-header { flex-direction: column; align-items: flex-start; }
    }

/* ── SERVICE PAGE ───────────────────────── */
.service-page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.service-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 28px,
    rgba(91,200,240,0.04) 28px,
    rgba(91,200,240,0.04) 29px
  );
  pointer-events: none;
}

.service-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw 70px;
  position: relative;
}

.service-page-hero .hero-eyebrow { margin-bottom: 14px; }

.service-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.service-page-hero h1 em { color: var(--aqua); font-style: normal; }

.service-page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
}

.service-page-hero p strong { color: var(--white); font-weight: 600; }

.service-page-hero .hero-actions { margin-top: 30px; }

/* Service page content sections */
.service-content {
  background: var(--navy-dark);
}

.service-content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 5vw;
}

.service-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.service-content h2 em { color: var(--aqua); font-style: normal; }

.service-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--aqua);
  margin-bottom: 12px;
  margin-top: 30px;
}

.service-content p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-content p strong { color: var(--white); font-weight: 600; }

.service-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-content ul li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(91,200,240,0.08);
}

.service-content ul li:last-child { border-bottom: none; }

.service-content ul li strong { color: var(--white); font-weight: 600; }

.service-content .info-box {
  background: var(--navy);
  border-left: 4px solid var(--aqua);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-content .info-box strong { color: var(--white); }

.service-content .warning-box {
  background: var(--navy);
  border-left: 4px solid #e6a817;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-content .warning-box strong { color: #e6a817; }

.service-section {
  border-top: 1px solid rgba(91,200,240,0.1);
  padding-top: 40px;
  margin-top: 40px;
}

/* Pricing tier cards for service pages */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3px;
  margin: 24px 0;
}

.tier-card {
  background: var(--navy);
  padding: 28px 24px;
  position: relative;
}

.tier-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.tier-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--aqua);
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.tier-card.featured {
  border: 2px solid var(--aqua);
}

/* Under development placeholder */
.under-dev {
  background: var(--navy);
  border: 2px dashed rgba(91,200,240,0.2);
  padding: 60px 40px;
  text-align: center;
  margin: 24px 0;
}

.under-dev-icon { font-size: 3rem; margin-bottom: 16px; }

.under-dev h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 0;
}

.under-dev p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
}

/* CTA section at bottom of service pages */
.service-cta {
  background: var(--navy);
  text-align: center;
  padding: 60px 5vw;
}

.service-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.service-cta p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

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

/* ── BOOKING FORM ───────────────────────── */
.booking-section {
  background: var(--navy-dark);
  padding: 0 0 60px;
}

.booking-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Progress bar */
.book-progress {
  background: var(--navy-dark);
  padding: 0 5vw 16px;
  max-width: 680px;
  margin: 0 auto;
}

.book-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.book-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-dark));
  border-radius: 99px;
  transition: width 0.4s ease;
}

.book-progress-label {
  font-size: 0.75rem;
  color: var(--muted-dim);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Form card */
.book-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  color: #1a2a3a;
}

@media (max-width: 600px) {
  .book-card {
    margin: 0 -2vw;
    padding: 24px 20px;
    border-radius: 12px;
  }
}

/* Steps */
.book-step {
  display: none;
}

.book-step.active {
  display: block;
  animation: bookFadeUp 0.3s ease;
}

@keyframes bookFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.book-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
  text-align: center;
}

.book-step-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.55;
  text-align: center;
}

.book-step-sub strong {
  color: #1a2a3a;
}

/* Form fields */
.book-field {
  margin-bottom: 20px;
}

.book-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 6px;
}

.book-field input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #dde5f0;
  border-radius: 3px;
  outline: none;
  margin: 8px 0 0;
}

.book-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aqua);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.book-field input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aqua);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.book-field input[type="text"],
.book-field input[type="tel"],
.book-field input[type="email"],
.book-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde5f0;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: #1a2a3a;
  background: #f4f7fb;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.book-field input:focus,
.book-field select:focus {
  outline: none;
  border-color: var(--aqua);
  background: #fff;
}

.book-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.book-field input::placeholder {
  color: #94a3b8;
}

.book-field-hint {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 5px;
}

/* Radio / Checkbox tiles */
.book-tile-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.book-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid #dde5f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.book-tile:hover {
  border-color: var(--aqua);
  background: #f0faff;
}

.book-tile.selected {
  border-color: var(--aqua);
  background: #e8f8ff;
}

.book-tile input[type="radio"],
.book-tile input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.book-tile-dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #dde5f0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.book-tile.selected .book-tile-dot {
  border-color: var(--aqua);
  background: var(--aqua);
}

.book-tile-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  display: none;
}

.book-tile.selected .book-tile-dot::after {
  display: block;
}

.book-tile-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 5px;
  border: 2px solid #dde5f0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.book-tile.selected .book-tile-check {
  border-color: var(--aqua);
  background: var(--aqua);
}

.book-tile-check::after {
  content: '\2713';
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: none;
}

.book-tile.selected .book-tile-check::after {
  display: block;
}

.book-tile-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2a3a;
}

.book-tile-desc {
  font-size: 0.85rem;
  color: #1a2a3a;
  margin-top: 4px;
  line-height: 1.55;
  opacity: 0.8;
}

.book-tile-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
  white-space: nowrap;
}

/* Week grid */
.book-week-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .book-week-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.book-week-tile {
  padding: 14px 12px;
  border: 1.5px solid #dde5f0;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.book-week-tile:hover:not(.full) {
  border-color: var(--aqua);
  background: #f0faff;
}

.book-week-tile.selected {
  border-color: var(--aqua);
  background: #e8f8ff;
}

.book-week-tile.full {
  opacity: 0.4;
  cursor: not-allowed;
}

.book-week-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2a3a;
}

.book-week-avail {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
}

.book-week-avail.low {
  color: #f59e0b;
}

.book-week-avail.full-text {
  color: #ef4444;
}

.book-week-tile.asap-tile {
  border-color: var(--aqua);
  border-style: dashed;
}

.book-week-tile.asap-tile:hover {
  background: #f0faff;
}

.book-week-tile.asap-tile.selected {
  background: #e8f8ff;
  border-style: solid;
}

/* Checklist */
.book-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.book-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #dde5f0;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.book-check-item:hover {
  border-color: var(--aqua);
}

.book-check-item.checked {
  border-color: #22c55e;
  background: #f0fdf4;
}

.book-check-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.book-check-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 2px solid #dde5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.book-check-item.checked .book-check-box {
  background: #22c55e;
  border-color: #22c55e;
}

.book-check-text {
  font-size: 0.875rem;
  color: #1a2a3a;
  line-height: 1.5;
}

.book-check-text strong {
  color: var(--navy);
}

/* Buttons */
.book-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.book-btn {
  padding: 13px 28px;
  border-radius: 9px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
}

.book-btn:active {
  transform: scale(0.98);
}

.book-btn-primary {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  color: white;
  flex: 1;
}

.book-btn-primary:hover {
  opacity: 0.9;
}

.book-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.book-btn-back {
  background: #f4f7fb;
  color: #64748b;
  border: 1.5px solid #dde5f0;
}

.book-btn-back:hover {
  border-color: #94a3b8;
  color: #1a2a3a;
}

.book-btn-pay {
  background: linear-gradient(135deg, #0f5132, #157347);
  color: white;
  flex: 1;
  font-size: 1rem;
}

.book-btn-pay:hover {
  opacity: 0.9;
}

.book-btn-pay:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Error messages */
.book-error {
  font-size: 0.82rem;
  color: #ef4444;
  margin-top: 6px;
  margin-bottom: 12px;
}

/* Info/warning boxes */
.book-info-box {
  background: #f4f7fb;
  border-left: 3px solid var(--aqua);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #1a2a3a;
  line-height: 1.6;
}

.book-info-box strong {
  color: var(--navy);
}

.book-warning-box {
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.6;
}

.book-warning-box strong {
  color: #92400e;
}

.book-never-box {
  background: #fff7ed;
  border-left: 3px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #92400e;
  line-height: 1.6;
}

.book-never-box strong {
  color: #92400e;
}

/* Cable note */
.book-cable-note {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 9px;
  padding: 14px 16px;
  font-size: 0.875rem;
  color: #92400e;
  margin-top: 12px;
  line-height: 1.6;
}

.book-cable-note strong {
  color: #92400e;
}

/* Disqualifier screen */
.book-disq {
  text-align: center;
  padding: 24px 0;
}

.book-disq-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.book-disq-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.book-disq-body {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* Summary table */
.book-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.book-summary-table td {
  padding: 9px 0;
  font-size: 0.9rem;
  color: #1a2a3a;
  border-bottom: 1px solid #dde5f0;
}

.book-summary-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.book-summary-table tr.total td {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: none;
  padding-top: 16px;
}

/* Stripe card element */
#card-element {
  padding: 13px 14px;
  border: 1.5px solid #dde5f0;
  border-radius: 8px;
  background: #f4f7fb;
  margin-bottom: 6px;
  transition: border-color 0.2s;
}

#card-element.StripeElement--focus {
  border-color: var(--aqua);
  background: #fff;
}

#card-errors {
  font-size: 0.82rem;
  color: #ef4444;
  min-height: 20px;
  margin-bottom: 16px;
}

/* Tip tiles */
.book-tip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.book-tip-tile {
  padding: 12px 8px;
  border: 1.5px solid #dde5f0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.book-tip-tile:hover {
  border-color: var(--aqua);
}

.book-tip-tile.selected {
  border-color: var(--aqua);
  background: #e8f8ff;
}

.book-tip-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2a3a;
}

.book-tip-amount {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
}

/* Section label in booking */
.book-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 10px;
}

/* Success screen */
.book-success {
  text-align: center;
  padding: 16px 0;
}

.book-success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.book-success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.book-success-body {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

.book-success-body strong {
  color: #1a2a3a;
}

/* Two-column layout */
.book-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .book-two-col { grid-template-columns: 1fr; }
  .book-tip-grid { grid-template-columns: repeat(2, 1fr); }
}

.book-divider {
  border: none;
  border-top: 1px solid #dde5f0;
  margin: 24px 0;
}

/* Add-on section label */
.book-addon-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* Policy box */
.book-policy-box {
  background: #f4f7fb;
  border: 1.5px solid #dde5f0;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #1a2a3a;
  line-height: 1.6;
}

.book-policy-box strong {
  color: var(--navy);
}

/* SMS consent */
.book-consent {
  background: #f4f7fb;
  border-left: 3px solid var(--aqua);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: #1a2a3a;
  line-height: 1.6;
}

.book-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.book-consent input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

/* Stripe secure text */
.book-secure-text {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 16px;
}

/* Scheduling info within form */
.book-sched-info {
  line-height: 1.7;
  color: #1a2a3a;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.book-sched-info p {
  margin-bottom: 12px;
}

.book-sched-info strong {
  color: var(--navy);
}
