/* ============================================
   RAPIDRINSE POWERWASH — SHARED STYLESHEET
   Bold, high-energy, conversion-focused
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* Core palette */
  --black:       #050e1f;
  --dark:        #08152e;
  --card:        #0d2145;
  --card-hover:  #142d5e;
  --border:      rgba(26,104,216,0.12);
  --border-hot:  rgba(26,104,216,0.4);

  /* Brand colors */
  --cyan:        #1a68d8;
  --cyan-bright: #2d7ff9;
  --cyan-glow:   rgba(26,104,216,0.18);
  --cyan-dim:    rgba(26,104,216,0.08);
  --yellow:      #f5c400;
  --yellow-glow: rgba(245,196,0,0.2);

  /* Text */
  --text:        #e8f0f8;
  --text-muted:  #7a9ab8;
  --text-dim:    #3d5a72;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 20px;
}

.section-title span.c { color: var(--cyan); }
.section-title span.y { color: var(--yellow); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--black);
}
.btn-cyan:hover {
  background: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,180,255,0.35);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,196,0,0.4);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .06em;
  color: #fff;
  white-space: nowrap;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(0,180,255,0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .6;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav-dropdown-menu a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .04em;
}
.nav-phone a { color: inherit; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { color: var(--cyan); background: var(--cyan-dim); }
.mobile-nav .mobile-cta {
  margin-top: 8px;
  background: var(--cyan);
  color: var(--black);
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
}

/* ============================================
   TOP BAR (above nav)
   ============================================ */
.topbar {
  background: var(--cyan);
  color: var(--black);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar a { color: var(--black); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--cyan));
}
.page-hero-bg-text {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 200px);
  color: rgba(0,180,255,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 90px);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--cyan); }
.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--cyan);
  padding: 22px 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-bar-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--black);
  line-height: 1;
}
.stat-bar-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 2px;
}

/* ============================================
   SERVICE CARDS (shared)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.svc-card:hover {
  border-color: var(--border-hot);
  background: var(--card-hover);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.svc-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-hot); }
.review-stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
}
.review-date {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, #00384f 0%, #001a28 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: 'GET CLEAN';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 140px;
  color: rgba(0,180,255,0.05);
  pointer-events: none;
  user-select: none;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1;
  color: #fff;
}
.cta-strip-title span { color: var(--cyan); }
.cta-strip-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
}
.cta-strip-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--cyan); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-legal {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--cyan));
  margin-top: 0;
}

/* ============================================
   PHOTO PLACEHOLDERS
   ============================================ */
.photo-placeholder {
  background: linear-gradient(145deg, var(--card) 0%, var(--black) 100%);
  border: 1px dashed rgba(26,104,216,0.22);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 22px,
      rgba(26,104,216,0.025) 22px,
      rgba(26,104,216,0.025) 23px
    );
  pointer-events: none;
}
.photo-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  text-align: center;
  padding: 20px;
}
.photo-placeholder-inner svg { color: var(--text-dim); }
.photo-placeholder-inner span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   QUOTE FORM EMBED
   ============================================ */
.quote-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  position: relative;
}
.quote-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  border-radius: 10px 10px 0 0;
}
.quote-panel-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 6px;
}
.quote-panel-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-badge .icon { font-size: 16px; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-hot); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--card);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover { background: var(--card-hover); }
.faq-toggle {
  font-size: 22px;
  color: var(--cyan);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--card);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 18px; }
  .page-hero { padding: 100px 0 56px; }
  .cta-strip { padding: 56px 0; }
  .footer-top { gap: 24px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item { border-right: none; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .stat-bar-item:nth-child(2n) { border-bottom: 1px solid rgba(0,0,0,0.15); }
  .stat-bar-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 14px; }
  .cta-strip { padding: 44px 0; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .footer-top { gap: 28px; }
}
