/* ============================================
   PRESTIGE HAND CAR WASH — Cloned from LUV Car Wash
   Design DNA: luvcarwash.com
   Swapped: pink→gold, content→Prestige
   Kept: pill nav, card system, dividers, shadows,
         transitions, grid patterns, font weights
   ============================================ */

:root {
  --navy: #0f2a53;
  --accent: #c9a84c;
  --accent-glow: rgba(201, 168, 76, 0.35);
  --accent-soft: rgba(201, 168, 76, 0.06);
  --highlight: #4fc0ff;
  --white: #ffffff;
  --bg: #f7f9fc;
  --card: #ffffff;
  --glass: rgba(255, 255, 255, 0.82);
  --stroke: rgba(15, 42, 83, 0.1);
  --shadow: 0 12px 28px rgba(15, 42, 83, 0.12), 0 4px 10px rgba(15, 42, 83, 0.08);
  --shadow-sm: 0 6px 18px rgba(15, 42, 83, 0.08), 0 2px 6px rgba(15, 42, 83, 0.05);
  --shadow-hover: 0 16px 34px rgba(15, 42, 83, 0.16), 0 6px 16px rgba(15, 42, 83, 0.1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Pill Nav ---- */
.pillnav {
  position: sticky;
  top: 12px;
  z-index: 9999;
  padding: 0 12px;
  display: flex;
  justify-content: center;
}

.pillnav__list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  box-shadow: var(--shadow);
}

.pill-link {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(13px, 1.5vw, 15px);
  padding: 10px 18px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.pill-link:hover {
  background: rgba(15, 42, 83, 0.08);
}

.pill-cta {
  background: var(--accent);
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(13px, 1.5vw, 15px);
  padding: 10px 28px;
  border-radius: 999px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 0 16px var(--accent-glow);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.pill-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  padding: 0; gap: 5px;
}
.hamburger .bar {
  width: 24px; height: 3px; background: var(--navy);
  border-radius: 2px; transition: all 0.3s ease;
}

/* Full-screen mobile nav */
.fs-nav {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--white);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.fs-nav[aria-hidden="false"] {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.fs-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 16px;
}
.fs-nav__close {
  display: block; margin-left: auto;
  width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; position: relative;
}
.fs-nav__close .x {
  position: absolute; width: 24px; height: 3px;
  background: var(--navy); border-radius: 2px;
  top: 50%; left: 50%; transform-origin: center;
}
.fs-nav__close .x:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.fs-nav__close .x:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.fs-nav__list {
  margin: 40px 0 0; padding: 0; display: grid; gap: 16px;
}
.fs-nav__list a {
  display: block; color: var(--navy); font-weight: 900;
  font-size: clamp(20px, 6vw, 28px); padding: 12px 0;
}
.fs-nav__cta {
  background: var(--accent); color: var(--navy) !important;
  text-align: center; border-radius: 12px; padding: 18px 16px;
  box-shadow: 0 0 16px var(--accent-glow); font-weight: 900;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block; font-weight: 900; padding: 12px 24px;
  border-radius: 999px; font-size: clamp(14px, 1.8vw, 17px);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  border: none; cursor: pointer;
}
.btn--accent {
  background: var(--accent); color: var(--navy);
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.3);
}
.btn--accent:hover {
  transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.4);
}
.btn--outline {
  background: var(--white); color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent); color: var(--navy);
}

/* ---- Hero Section ---- */
.hero-section {
  padding: clamp(28px, 6vw, 80px) 16px;
  background: var(--bg);
}
.hero__wrap { max-width: 1200px; margin: 0 auto; }
.hero__grid {
  display: grid; gap: clamp(16px, 4vw, 32px);
  grid-template-columns: 1fr; align-items: center;
  margin-bottom: clamp(18px, 4vw, 28px);
}
.eyebrow {
  color: var(--navy); font-weight: 900;
  font-size: clamp(13px, 1.8vw, 17px); margin: 0 0 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.headline {
  font-family: "Playfair Display", serif;
  color: var(--navy); font-weight: 900;
  font-size: clamp(36px, 7vw, 72px);
  margin: 0 0 14px; line-height: 1.04;
}
.accent { color: var(--accent); }
.lead {
  color: var(--navy); font-weight: 600;
  font-size: clamp(14px, 2vw, 19px); margin: 0 0 20px;
  opacity: 0.7; max-width: 480px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__image {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__image img {
  width: 100%; height: auto; object-fit: cover;
  aspect-ratio: 16/10;
}

/* Trust cards track */
.trust-track {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(8px, 2vw, 14px);
}
.trust-card {
  display: grid; place-items: center; text-align: center;
  border-radius: 16px; padding: 22px 14px; min-height: 100px;
  font-weight: 900; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}
.trust-card:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(15, 42, 83, 0.14);
}
.trust-card__title {
  font-size: clamp(14px, 2vw, 18px); line-height: 1.25; letter-spacing: 0.2px;
}
.trust-card--accent { background: var(--accent); color: var(--navy); }
.trust-card--highlight { background: var(--highlight); color: #001a33; }
.trust-card--dark { background: var(--navy); color: var(--white); }

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
}
@media (max-width: 979px) {
  .trust-track {
    grid-auto-flow: column; grid-auto-columns: 85%;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding: 6px 10px;
  }
  .trust-card { scroll-snap-align: center; }
  .hero__copy { text-align: center; }
  .cta-row { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
}

/* ---- Section Head ---- */
.section-head { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.section-head__title {
  font-family: "Playfair Display", serif;
  color: var(--navy); font-weight: 900;
  font-size: clamp(28px, 5vw, 56px); line-height: 1.1; margin: 0;
}
.section-head__subtitle {
  color: var(--navy); font-weight: 600;
  font-size: clamp(14px, 1.9vw, 18px); margin: 8px 0 0; opacity: 0.7;
}

/* Divider bars */
.divider {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin: 12px 0 8px;
}
.divider span {
  height: 4px; border-radius: 999px; background: #e6eaf3; display: block;
}
.divider span:nth-child(1) { width: 22px; }
.divider span:nth-child(2) { width: 54px; background: var(--navy); }
.divider span:nth-child(3) { width: 22px; }

/* ---- Packages ---- */
.packages {
  padding: clamp(28px, 6vw, 72px) 16px;
  background: var(--white);
}
.packages__wrap { max-width: 1200px; margin: 0 auto; }
.packages__grid {
  display: grid; gap: clamp(12px, 2.4vw, 22px);
  grid-template-columns: 1fr;
}

.package {
  background: var(--card); border-radius: 20px;
  padding: clamp(20px, 2.5vw, 28px); position: relative;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.package:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.package--featured {
  border: 2px solid var(--accent);
  animation: bob 6s ease-in-out infinite;
}
.package--featured::before {
  content: ""; position: absolute; inset: -6px; border-radius: 24px;
  background: radial-gradient(60% 60% at 50% 50%, var(--accent-glow), transparent 70%);
  z-index: -1; filter: blur(2px);
}
.package__badge {
  position: absolute; top: 0; right: 20px;
  background: var(--accent); color: var(--navy);
  font-weight: 900; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 6px 14px;
  border-radius: 0 0 8px 8px;
}
.package__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px; gap: 16px;
}
.package__name {
  font-size: clamp(18px, 2vw, 22px); font-weight: 900; line-height: 1.2;
}
.package__price {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 36px); font-weight: 700;
  color: var(--accent); white-space: nowrap;
}
.package__desc {
  font-size: 15px; color: var(--navy); opacity: 0.65;
  margin-bottom: 14px; line-height: 1.6;
}
.package__list {
  display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.package__list li {
  font-size: 14px; font-weight: 600; color: var(--navy);
  opacity: 0.7; position: relative; padding-left: 16px;
}
.package__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

@keyframes bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.005); }
}

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

/* ---- Feature Section ---- */
.feature-section {
  padding: clamp(28px, 6vw, 72px) 16px;
  background: var(--bg);
}
.feature__wrap { max-width: 1200px; margin: 0 auto; }
.feature__grid {
  display: grid; gap: clamp(18px, 3vw, 36px);
  grid-template-columns: 1fr; align-items: center;
}
.feature__title-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.title-bar {
  width: 6px; height: 1.1em; background: var(--accent);
  border-radius: 6px; flex: 0 0 auto;
}
.feature__title {
  font-family: "Playfair Display", serif;
  color: var(--navy); font-weight: 900;
  font-size: clamp(24px, 4vw, 48px); line-height: 1.1;
}
.feature__card {
  background: var(--card); border-radius: 18px;
  padding: clamp(16px, 2.6vw, 28px);
  box-shadow: var(--shadow-sm);
}
.feature__lead {
  font-size: clamp(15px, 1.7vw, 18px); font-weight: 600;
  line-height: 1.7; margin: 0 0 20px; opacity: 0.8;
}
.feature__points { display: grid; gap: 18px; }
.feature__point {
  display: flex; gap: 14px; align-items: flex-start;
}
.feature__point-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature__point strong {
  display: block; font-size: 16px; font-weight: 800; margin-bottom: 2px;
}
.feature__point p {
  font-size: 14px; opacity: 0.65; line-height: 1.5; margin: 0;
}
.feature__media {
  display: block; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature__media:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-hover);
}
.feature__media img {
  width: 100%; height: clamp(240px, 34vw, 400px);
  object-fit: cover;
}

@media (min-width: 960px) {
  .feature__grid { grid-template-columns: 1.1fr 1fr; }
}

/* ---- Reviews ---- */
.reviews-section {
  padding: clamp(28px, 6vw, 72px) 16px clamp(28px, 4vw, 48px);
  background: var(--white);
  overflow: hidden;
}
.reviews__wrap { max-width: 1200px; margin: 0 auto; }

.reviews__carousel { overflow: hidden; padding: 10px 0 20px; }
.reviews__track {
  display: flex; gap: 20px; width: max-content;
  animation: scroll 80s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }

.review-card {
  flex-shrink: 0; width: 340px;
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: 16px; padding: 28px;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.review-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow);
}
.review-card__stars {
  color: var(--accent); font-size: 16px;
  letter-spacing: 2px; margin-bottom: 12px;
}
.review-card__quote {
  font-size: 15px; line-height: 1.65;
  color: var(--navy); margin-bottom: 16px;
  font-style: italic; opacity: 0.8;
}
.review-card__author {
  font-size: 14px; font-weight: 700; color: var(--navy);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Location ---- */
.location-section {
  padding: clamp(28px, 6vw, 72px) 16px;
  background: var(--navy);
  color: var(--white);
}
.location__wrap { max-width: 1200px; margin: 0 auto; }
.location__grid {
  display: grid; gap: clamp(18px, 3vw, 48px);
  grid-template-columns: 1fr; align-items: center;
}

.location-section .feature__title { color: var(--white); }
.location-section .title-bar { background: var(--accent); }

.location__card {
  background: rgba(255,255,255,0.06); border-radius: 18px;
  padding: clamp(16px, 2.6vw, 28px);
  border: 1px solid rgba(255,255,255,0.1);
}
.location__row {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; color: rgba(255,255,255,0.85);
  margin-bottom: 16px; line-height: 1.5;
}
.location__row a { color: rgba(255,255,255,0.85); }
.location__row a:hover { color: var(--accent); }
.location__icon { font-size: 18px; flex-shrink: 0; }
.location__row--hours strong {
  display: block; color: var(--accent); margin-bottom: 8px;
}
.hours-table { border-collapse: collapse; font-size: 15px; }
.hours-table td {
  padding: 4px 0; color: rgba(255,255,255,0.7);
}
.hours-table td:first-child {
  padding-right: 24px; font-weight: 600; color: rgba(255,255,255,0.9);
}

.location__map-wrap {
  border-radius: 20px; overflow: hidden; height: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.08);
}
.location__map-wrap iframe { display: block; }

@media (min-width: 960px) {
  .location__grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Footer ---- */
.footer {
  background: var(--accent); color: var(--navy);
  padding-top: clamp(28px, 4vw, 40px);
}
.footer a { color: var(--navy); }
.footer a:hover { text-decoration: underline; }

.footer__wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: clamp(18px, 3vw, 28px);
  grid-template-columns: 1fr; align-items: start;
  padding: 0 16px clamp(18px, 3vw, 28px);
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-size: 22px; font-weight: 900;
}
.footer__motto {
  margin: 4px 0 10px; font-weight: 700;
  font-size: clamp(14px, 1.8vw, 18px); opacity: 0.8;
}
.footer__social { display: flex; gap: 14px; }
.footer__social a { font-weight: 700; font-size: 14px; }

.footer__cols {
  display: grid; gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(2, 1fr);
}
.footer__col-title {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-weight: 900; letter-spacing: 0.5px;
  text-transform: uppercase; font-size: 13px;
  background: var(--white); border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px; box-shadow: 0 6px 18px rgba(15, 42, 83, 0.18);
  margin-bottom: 12px;
}
.footer__col-title::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.footer__col ul {
  display: grid; gap: 8px; margin: 0; padding: 0;
}
.footer__col li { font-weight: 600; font-size: 14px; opacity: 0.8; }

.footer__bottom {
  border-top: 1px solid rgba(15, 42, 83, 0.15); padding: 12px 0;
}
.footer__bottom-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  text-align: center;
}
.footer__copy { font-weight: 600; font-size: 13px; opacity: 0.6; }

@media (min-width: 980px) {
  .footer__wrap { grid-template-columns: 1.1fr 2fr; }
}
@media (max-width: 560px) {
  .footer__wrap { text-align: center; }
  .footer__brand { text-align: center; }
  .footer__social { justify-content: center; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__col-title { margin-left: auto; margin-right: auto; }
}

/* ---- Mobile Call Bar ---- */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150; padding: 12px 16px;
  background: var(--accent); text-align: center;
}
.mobile-call-bar a {
  font-size: 16px; font-weight: 900; color: var(--navy); display: block;
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
  .pillnav__list { display: none; }
  .hamburger { display: flex; }
  .pillnav {
    justify-content: space-between; align-items: center;
    background: var(--glass); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px; padding: 10px 16px;
    border: 1px solid var(--stroke); box-shadow: var(--shadow);
    max-width: 200px;
  }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }

  .review-card { width: 280px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reviews__track { animation: none; }
}
