/* ===========================
   MIGHTY SHINE — SHARED STYLES
   =========================== */

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

:root {
  --red: #C41230;
  --red-dark: #9e0f27;
  --red-light: #e0142f;
  --blue: #3BAFDA;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --grey: #888;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===========================
   STICKY HEADER
   =========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 18, 48, 0.3);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(196, 18, 48, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-open {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-open::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-directions:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
}

.btn-directions svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid rgba(196, 18, 48, 0.2);
  padding: 8px 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}

.mobile-nav a:hover {
  color: var(--white);
  background: rgba(196, 18, 48, 0.15);
  padding-left: 32px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
}

.desktop-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-overlay-red {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,18,48,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-green 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 3vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 42px;
  border-radius: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(196, 18, 48, 0.45);
}

.btn-hero:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 18, 48, 0.6);
}

.hero-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ===========================
   VALUE STRIP
   =========================== */

.value-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
}

.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  min-width: 0;
}

.value-item:last-child {
  border-right: none;
}

.value-item:hover {
  background: rgba(196, 18, 48, 0.08);
}

.value-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
  flex-shrink: 0;
}

.value-label {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.2;
}

/* ===========================
   SECTION SHARED
   =========================== */

.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 560px;
}

/* ===========================
   MAP SECTION
   =========================== */

.map-section {
  background: var(--dark);
  padding: 80px 20px;
}

.map-section .section-inner {
  text-align: center;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.map-address:hover {
  color: var(--red);
}

.map-address svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.map-tagline {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* ===========================
   OFFERS TEASER
   =========================== */

.offers-teaser {
  background: var(--dark2);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.offers-teaser::before {
  content: '';
  position: absolute;
  left: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,18,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.offers-teaser .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.offers-content {
  flex: 1;
  min-width: 260px;
}

.offers-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.offers-detail {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.offers-detail strong {
  color: var(--white);
  font-weight: 600;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-outline:hover {
  background: var(--red);
  box-shadow: 0 6px 24px rgba(196,18,48,0.4);
  transform: translateY(-1px);
}

/* ===========================
   FINAL CTA
   =========================== */

.final-cta {
  background: var(--dark);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196,18,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--white);
}

.final-cta-sub {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-transform: uppercase;
  font-family: var(--font-condensed);
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-heading {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */

.page-hero {
  padding: 140px 20px 70px;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,18,48,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.6;
}

/* ===========================
   WASH OPTIONS PAGE
   =========================== */

.wash-section {
  padding: 70px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wash-section:nth-child(even) {
  background: var(--dark2);
}

.wash-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wash-section-header {
  margin-bottom: 40px;
}

.wash-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  max-width: 500px;
  line-height: 1.6;
}

.wash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.wash-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}

.wash-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.wash-card:hover {
  border-color: rgba(196,18,48,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.wash-card:hover::after {
  transform: scaleX(1);
}

.wash-card.featured {
  border-color: rgba(196,18,48,0.35);
  background: linear-gradient(135deg, var(--dark3) 0%, rgba(196,18,48,0.08) 100%);
}

.wash-card.featured::after {
  transform: scaleX(1);
}

.wash-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.wash-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 6px;
}

.wash-price {
  font-family: var(--font-condensed);
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.wash-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.wash-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: 8px;
}

.pricing-block {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-block .big-price {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}

.pricing-block .price-label {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.pricing-block .price-note {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
  line-height: 1.5;
}

.payment-block {
  background: rgba(196,18,48,0.08);
  border: 1px solid rgba(196,18,48,0.2);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 20px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.payment-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}

/* ===========================
   OFFERS PAGE
   =========================== */

.offer-card {
  background: var(--dark3);
  border: 1px solid rgba(196,18,48,0.25);
  border-radius: 12px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
}

.offer-title-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.offer-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 72px);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 4px;
}

.offer-price-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.offer-price-big span {
  font-family: var(--font-condensed);
  font-size: 40%;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.offer-validity {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
}

.offer-validity strong {
  color: rgba(255,255,255,0.8);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,18,48,0.15);
  border: 1px solid rgba(196,18,48,0.3);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.whats-included {
  background: var(--dark2);
  border-radius: 8px;
  padding: 36px 40px;
}

.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.included-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(196,18,48,0.15);
  border: 1px solid rgba(196,18,48,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C41230'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.offer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: 60px;
}

/* ===========================
   REPORT PAGE
   =========================== */

.report-intro {
  background: rgba(196,18,48,0.08);
  border: 1px solid rgba(196,18,48,0.2);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: all 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--red);
  background: rgba(196,18,48,0.05);
  box-shadow: 0 0 0 3px rgba(196,18,48,0.1);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-upload {
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.file-upload:hover {
  border-color: rgba(196,18,48,0.4);
  background: rgba(196,18,48,0.05);
}

.file-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-upload-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin: 0 auto 12px;
}

.file-upload-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.file-upload-text strong {
  color: var(--white);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196,18,48,0.4);
}

.success-msg {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-top: 24px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-open { display: none; }

  .value-strip-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .value-item {
    flex: 1 1 calc(33.333% - 1px);
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .wash-cards {
    grid-template-columns: 1fr;
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .offers-teaser .section-inner {
    flex-direction: column;
  }

  .offer-card {
    padding: 32px 24px;
  }

  .whats-included {
    padding: 28px 24px;
  }

  .payment-block {
    margin: 0;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-block {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .offers-teaser {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .video-section {
    padding-top: 30px !important;
  }

  .btn-offers-animated {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .value-item {
    flex: 1 1 calc(50% - 1px);
  }
  
  .hero-content {
    padding: 90px 20px 50px;
  }
}

/* Video section header — button always on top, label always below */
.video-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

/* ===========================
   GIVEAWAY SECTION
   =========================== */

.giveaway-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0508 50%, #0a0a0a 100%);
  padding: 80px 20px;
  border-bottom: 1px solid rgba(196,18,48,0.2);
  position: relative;
  overflow: hidden;
}

.giveaway-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,18,48,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.giveaway-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.giveaway-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.giveaway-amount {
  color: var(--red);
  display: block;
  font-size: clamp(56px, 10vw, 96px);
}

.giveaway-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.giveaway-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.giveaway-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.giveaway-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,18,48,0.25);
  border-radius: 12px;
  padding: 36px;
  position: relative;
}

.giveaway-prize-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.giveaway-prize-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: offers-shine 3s ease-in-out infinite;
}

.giveaway-prize-label {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.giveaway-prize-amount {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.giveaway-prize-currency {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .giveaway-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .giveaway-form-wrap {
    padding: 24px;
  }
}

/* ===========================
   SMS SIGNUP SECTION
   =========================== */

.sms-signup {
  background: var(--dark2);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.sms-signup::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,18,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sms-signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sms-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.sms-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.sms-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sms-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.sms-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px;
}

.sms-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}

.sms-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.sms-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.sms-success p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

.sms-error {
  display: none;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 6px;
  padding: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .sms-signup-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sms-form-wrap {
    padding: 24px;
  }
}

/* ===========================
   ANIMATED OFFERS BUTTON
   =========================== */

.btn-offers-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  background-size: 200% 200%;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  box-shadow: 0 0 0 0 rgba(196,18,48,0.6);
  animation: offers-pulse 2s ease-in-out infinite, offers-gradient 3s ease infinite;
  transition: transform 0.2s ease;
}

.btn-offers-animated:hover {
  transform: scale(1.05);
  animation: offers-gradient 3s ease infinite;
}

.btn-offers-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-offers-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  animation: offers-shine 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes offers-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(196,18,48,0.6), 0 6px 24px rgba(196,18,48,0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(196,18,48,0), 0 6px 24px rgba(196,18,48,0.4);
  }
}

@keyframes offers-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes offers-shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

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

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-delay-4 { animation-delay: 0.4s; opacity: 0; }
