/* ============================================
   GOTHAM FONT FACES
============================================ */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamUltra.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   CLEAN N BRITE LAUNDROMAT — Main Stylesheet
   Brand Colors:
     Navy:      #12235C
     Light Blue:#73BCEF
     Yellow:    #F7D24A
     Gray:      #7F7F7F
     Light Gray:#F2F2F2
   Font: Montserrat (Gotham substitute)
============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #12235C;
  --navy-dark:  #0d1a44;
  --blue:       #73BCEF;
  --blue-light: #a8d7f5;
  --yellow:     #F7D24A;
  --yellow-dark:#e0ba2a;
  --gray:       #7F7F7F;
  --gray-light: #F2F2F2;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-light: #555;
  --shadow:     0 4px 20px rgba(18,35,92,0.12);
  --shadow-lg:  0 8px 40px rgba(18,35,92,0.18);
  --radius:     12px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn--yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,210,74,0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---------- Section Shared ---------- */
.section {
  padding: 80px 0;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section__title--left { text-align: left; }

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(115,188,239,0.12);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__left, .top-bar__right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar i { color: var(--yellow); margin-right: 5px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--yellow); }

/* ============================================
   MODAL
============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18,35,92,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(18,35,92,0.35);
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  transition: all var(--transition);
  z-index: 2;
}
.modal__close:hover { background: var(--white); color: var(--navy); }

.modal__badge {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
}
.modal__badge-logo {
  height: 110px;
  width: auto;
}
.modal__payrange {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.modal__payrange-logo {
  height: 52px;
  width: auto;
}
.modal__body {
  padding: 16px 24px 22px;
  text-align: center;
}
.modal__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #1e3d8f);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  color: var(--white);
}
.modal__credit {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  font-family: 'Gotham', 'Montserrat', sans-serif;
}
.modal__offer span:last-child {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
  margin-top: 4px;
}
.modal__copy {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal__actions {
  display: flex;
  justify-content: center;
}
.modal__disclaimer {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.5;
}

/* Cash & Credit modal */
.cash-block {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
  text-align: left;
}
.cash-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cash-block__header i {
  font-size: 1.2rem;
  color: var(--navy);
}
.cash-block__header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cash-block p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.cash-bills {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cash-bills span {
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Payment section buttons row */
.ss-payment__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PayRange modal */
.modal__payrange-logo--nav {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 14px;
}
.payrange-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
  text-align: left;
}
.payrange-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}
.payrange-feature i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  text-align: center;
}

/* Quote form */
.quote-form { display: flex; flex-direction: column; gap: 8px; }
.quote-form__field { display: flex; flex-direction: column; gap: 6px; }
.quote-form__field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-form__field label span { color: #e74c3c; }
.quote-form__field input,
.quote-form__field textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 9px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}
.quote-form__field input:focus,
.quote-form__field textarea:focus { border-color: var(--blue); background: #fff; }
.quote-form__recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.quote-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Promo banner trigger button */
.promo-banner__link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.promo-banner__link:hover { color: var(--navy-dark); }
.promo-banner__link strong { font-weight: 800; }

/* ============================================
   HEADER
============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(18,35,92,0.10);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo img {
  height: 70px;
  width: auto;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__list a {
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__list a:hover {
  color: var(--blue);
  background: rgba(115,188,239,0.1);
}
.nav__cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
}
.nav__cta:hover {
  background: var(--yellow-dark) !important;
  color: var(--navy) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18,35,92,0.93) 0%, rgba(18,35,92,0.75) 60%, rgba(115,188,239,0.55) 100%),
    url('https://images.unsplash.com/photo-1577553698923-17f1a80ce5bc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero__overlay {
  display: none; /* overlay handled by gradient above */
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 740px;
  padding: 120px 24px;
}
.hero__headline {
  font-family: 'Gotham', 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__headline span.highlight { color: var(--yellow); }
.nowrap { white-space: nowrap; }
.hero__sub {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 560px;
  line-height: 2;
  letter-spacing: 0.01em;
}
.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   PROMO BANNER
============================================ */
.promo-banner {
  background: var(--yellow);
  padding: 14px 0;
  text-align: center;
}
.promo-banner p {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.promo-banner i { color: var(--navy); }

/* ============================================
   SERVICES
============================================ */
.services {
  background: var(--gray-light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--yellow);
}
.service-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--blue); }

/* ============================================
   SELF-SERVICE PRICING
============================================ */
.self-service { background: var(--navy); }
.self-service .section__title { color: var(--yellow); }
.self-service .section__subtitle { color: rgba(255,255,255,0.7); }

/* Block header */
.ss-block { margin-bottom: 52px; }
.ss-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ss-block__header i {
  font-size: 1.4rem;
  color: var(--yellow);
}
.ss-block__header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Washer table */
.ss-table-wrap { overflow-x: auto; }
.ss-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}
.ss-table thead tr {
  background: var(--yellow);
}
.ss-table th {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-align: center;
}
.ss-table th:first-child { text-align: left; }
.ss-table th i { margin-right: 5px; }
.ss-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ss-table tr:last-child td { border-bottom: none; }
.ss-table tr:nth-child(odd) td { background: rgba(255,255,255,0.04); }
.ss-table tr:nth-child(even) td { background: rgba(115,188,239,0.07); }
.ss-table tr:hover td { background: rgba(247,210,74,0.1); }
.ss-table td:first-child { text-align: left; }
.ss-table__size span {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dryers */
.ss-dryers {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ss-dryer-card {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.ss-dryer-card:hover {
  border-color: var(--blue);
  background: rgba(115,188,239,0.1);
  transform: translateY(-4px);
}
.ss-dryer-card--featured {
  border-color: var(--yellow);
  background: rgba(247,210,74,0.07);
}
.ss-dryer-card--featured:hover { border-color: var(--yellow); }
.ss-dryer-card__icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.ss-dryer-card--featured .ss-dryer-card__icon { color: var(--yellow); }
.ss-dryer-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.4;
}
.ss-dryer-card h4 span {
  display: inline-block;
  background: var(--blue);
  color: var(--navy);
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}
.ss-dryer-card--featured h4 span { background: var(--yellow); }
.ss-dryer-card__price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.ss-dryer-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Payment badges */
.ss-payment { margin-top: 60px; }
.ss-payment__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
}
.ss-section-label {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
  margin-top: -8px;
  line-height: 1.15;
}
.ss-payment__graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ss-payment__svg {
  width: 100%;
  max-width: 860px;
  height: auto;
}
.ss-payment__payrange-link {
  background: none;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Gotham', 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.ss-payment__payrange-link:hover {
  background: var(--yellow);
  color: var(--navy);
}

/* Individual badge (washer drum shape) */
.ss-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ss-badge__drum {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid var(--yellow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px 16px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(247,210,74,0.2), 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
  /* Door handle nub */
}
/* Drum door handle */
.ss-badge__drum::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 40px;
  background: var(--yellow);
  border-radius: 0 10px 10px 0;
}
.ss-badge__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  z-index: 2;
}
.ss-badge__inner i {
  font-size: 1.8rem;
  color: var(--blue);
}
.ss-badge__inner span {
  font-family: 'Gotham', 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}
.ss-badge__using {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: -4px;
}
.ss-badge__payrange-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
}

/* Bubbles at the bottom of drum */
.ss-badge__bubbles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100%;
  z-index: 2;
}
.ss-badge__bubbles span {
  display: block;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(115,188,239,0.15);
}
.ss-badge__bubbles span:nth-child(1) { width: 22px; height: 22px; }
.ss-badge__bubbles span:nth-child(2) { width: 30px; height: 30px; }
.ss-badge__bubbles span:nth-child(3) { width: 38px; height: 38px; }
.ss-badge__bubbles span:nth-child(4) { width: 28px; height: 28px; }
.ss-badge__bubbles span:nth-child(5) { width: 18px; height: 18px; }

/* Sparkle stars */
.ss-badge__sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ss-badge__sparkles i:nth-child(1) {
  position: absolute;
  top: -10px;
  right: 20px;
  color: var(--blue);
  font-size: 1.2rem;
}
.ss-badge__sparkles i:nth-child(2) {
  position: absolute;
  bottom: 10px;
  left: -15px;
  color: var(--blue);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .ss-badge__drum { width: 160px; height: 160px; }
  .ss-badge__inner span { font-size: 0.95rem; }
  .ss-payment__badges { gap: 24px; }
}

/* Coming Soon badge */
.coming-soon-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* Coming Soon in pricing cards */
.pricing-card__coming-soon {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 0 20px;
}

/* ============================================
   PRICING
============================================ */
.pricing { background: var(--white); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.pricing-card {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  background: var(--white);
}
.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-card__features li { color: var(--white); }
.pricing-card--featured .price-amount { color: var(--yellow); }
.pricing-card--featured .pricing-card__min { color: rgba(255,255,255,0.7); }
.pricing-card--featured .price-unit { color: rgba(255,255,255,0.75); }

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card__header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
}
.pricing-card__min {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 600;
}
.pricing-card__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.pricing-card__features li i { color: var(--blue); font-size: 0.8rem; flex-shrink: 0; }
.pricing-card--featured .pricing-card__features li i { color: var(--yellow); }

/* Specialty Table */
.pricing__specialty {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 40px;
}
.pricing__specialty h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.specialty-table-wrap { overflow-x: auto; }
.specialty-table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-collapse: collapse;
}
.specialty-table th,
.specialty-table td {
  padding: 13px 20px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(18,35,92,0.08);
}
.specialty-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.specialty-table th:first-child { border-radius: 8px 0 0 0; }
.specialty-table th:last-child  { border-radius: 0 8px 0 0; }
.specialty-table tr:last-child td { border-bottom: none; }
.specialty-table tr:nth-child(even) td { background: rgba(115,188,239,0.08); }
.specialty-table td:last-child { font-weight: 700; color: var(--navy); }

/* Pickup pricing section */
.pickup-pricing { background: var(--gray-light); }

/* ============================================
   ABOUT
============================================ */
.about { background: var(--gray-light); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.about__text p {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about__text .section__title { margin-bottom: 20px; margin-top: 8px; }
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.about__highlight > i {
  font-size: 1.4rem;
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.about__highlight div { display: flex; flex-direction: column; }
.about__highlight strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}
.about__highlight span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

/* About visual badge */
.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__badge {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1e3d8f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--yellow);
  text-align: center;
  padding: 20px;
}
.about__badge i { font-size: 3rem; color: var(--yellow); margin-bottom: 12px; }
.about__badge-line1 { font-size: 1.1rem; font-weight: 700; opacity: 0.85; }
.about__badge-line2 { font-size: 2rem; font-weight: 900; line-height: 1; color: var(--yellow); }
.about__badge-line3 { font-size: 1rem; font-weight: 700; opacity: 0.85; margin-top: 4px; }

/* ============================================
   HOURS
============================================ */
.hours { background: var(--navy); color: var(--white); }
.hours .section__title { color: var(--yellow); }
.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hours__table-wrap { overflow-x: auto; }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table td {
  padding: 13px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours__table tr:last-child td { border-bottom: none; }
.hours__table td:first-child { font-weight: 700; }
.hours__table td:last-child { color: var(--blue-light); text-align: right; }
.hours__sunday td { color: var(--yellow) !important; font-weight: 800 !important; }
.hours__table tr:hover td { background: rgba(255,255,255,0.05); }

.hours__map { display: flex; flex-direction: column; gap: 10px; }
.hours__map-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours__map-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hours__notes h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hours__notes ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.hours__notes li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.hours__notes li i { color: var(--yellow); flex-shrink: 0; margin-top: 4px; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--gray-light); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 4px solid var(--yellow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   LEAVE A REVIEW
============================================ */
.reviews-cta { background: var(--navy); }
.reviews-cta .section__title { color: var(--yellow); }
.reviews-cta .section__subtitle { color: rgba(255,255,255,0.75); }

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.review-card--featured {
  border-color: var(--yellow);
  background: rgba(247,210,74,0.08);
}
.review-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.review-card__icon--google  { background: #fff; color: #4285F4; }
.review-card__icon--yelp    { background: #d32323; color: #fff; }
.review-card__icon--apple   { background: #555; color: #fff; }
.review-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
}
.review-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  flex: 1;
}
.review-card__btn {
  width: 100%;
  justify-content: center;
  background: var(--yellow) !important;
  color: var(--navy) !important;
  border-color: var(--yellow) !important;
  font-size: 0.82rem;
}
.review-card__btn:hover {
  background: var(--yellow-dark) !important;
  border-color: var(--yellow-dark) !important;
  transform: translateY(-2px);
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__info h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact__info > p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.contact__list i { color: var(--blue); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }
.contact__list a { color: var(--navy); }
.contact__list a:hover { color: var(--blue); text-decoration: underline; }
.contact__social {
  display: flex;
  gap: 14px;
}
.contact__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.contact__social a:hover { background: var(--blue); transform: translateY(-2px); }

.contact__map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 24px 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer__logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer__links h4,
.footer__contact h4 {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--yellow); }
.footer__contact p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__contact i { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,0.75); }
.footer__contact a:hover { color: var(--yellow); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--yellow); color: var(--navy); }

.footer__bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 24px;
  text-align: center;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: var(--yellow); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Top bar */
  .top-bar__right { display: none; }

  /* Header */
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(18,35,92,0.15);
    padding: 16px;
  }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__list a { padding: 12px 16px; border-radius: 8px; font-size: 0.92rem; }
  .nav__cta { text-align: center; border-radius: 8px !important; }
  .header { position: sticky; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero__content { padding: 60px 24px; }
  .hero__buttons { flex-direction: column; align-items: flex-start; }

  /* Hours */
  .hours__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 40px 24px 30px; }
  .footer__brand { grid-column: 1 / -1; }

  /* About highlights */
  .about__highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .top-bar__left { flex-direction: column; gap: 4px; }
}
