/* ================================================================
   POLARIZADOSYA — STYLES
   1.  Root Variables
   2.  Reset & Base
   3.  Navigation
   4.  Hero
   5.  Services Section
   6.  Packages Section
   7.  Add-ons Section
   8.  Booking Section
   9.  Confirmation Modal
   10. Squeegee Footer + Blur Overlay
   11. Footer / Contact
   12. Responsive
================================================================ */


/* ================================================================
   1. ROOT VARIABLES
================================================================ */
:root {
  --color-accent:        #6EC1E4;
  --color-accent-hover:  #e0e0e0;
  --color-badge:         #ffffff;
  --color-badge-text:    #000000;
  --black:               #000000;
  --dark-blue:           #2d7dba;

  --color-bg-deep:       #000000;
  --color-bg-dark:       #0a0a0a;
  --color-bg-mid:        #111111;
  --color-bg-lift:       #1a1a1a;

  --color-text-primary:  #ffffff;
  --color-text-muted:    rgba(255,255,255,0.7);
  --color-text-faint:    rgba(255,255,255,0.5);
  --color-text-ghost:    rgba(255,255,255,0.3);

  --border-default:      rgba(255,255,255,0.1);
  --border-hover:        rgba(255,255,255,0.3);
  --border-active:       rgba(255,255,255,0.5);
  --border-featured:     rgba(255,255,255,0.4);

  --font-sans:           'Helvetica Neue', Arial, sans-serif;

  --section-pad-y:       120px;
  --section-pad-x:       60px;
  --container-max:       1400px;

  --transition-fast:     0.3s ease;
  --transition-mid:      0.4s ease;
  --border-radius:       10px;
}


/* ================================================================
   2. RESET & BASE
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg-deep);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.container { max-width: var(--container-max); margin: 0 auto; }

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-faint);
  margin-bottom: 80px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ================================================================
   3. NAVIGATION
================================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2d7dba;
  backdrop-filter: blur(20px);
  padding: 26px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-default);
}

.sub-header {
  background-color: #4EA8EC;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-phone {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* ── Social buttons row ── */
.sub-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  /* Neumorphic base — shadows derived from #4EA8EC */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 26px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.7s, box-shadow 0.4s;
  z-index: 0;
}

/* Fill layer — slides up from bottom on hover (the codepen trick) */
.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 0%;
  top: auto;          /* anchored to bottom so it fills upward */
  bottom: 0;
  z-index: -1;
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px 8px 0 0;
}

/* Each brand's resting icon color and fill color */
.s-fb  { color: var(--black); }
.s-fb::before  { background: #1877f2; }

.s-ig  { color: var(--black); }
.s-ig::before  { background: #e1306c; }

.s-wa  { color: var(--black); }
.s-wa::before  { background: #25d366; }

.s-tt  { color: var(--black); }
.s-tt::before  { background: #111; }

/* On hover: fill slides up, icon turns white, shadow softens */
.social-btn:hover { 
  color: #fff; 
  box-shadow: 2px 2px 4px #3a8fcc, -2px -2px 4px #63c1ff; 
}
.social-btn:hover::before { height: 200%; }

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.nav-logo-link { 
  display: flex; 
}
.logo { 
  width: 110px; 
  height: auto; 
  transform: translateY(20px) translateX(12px); 
  padding: 4px;
}

.nav-links { 
  display: flex; 
  gap: 40px; 
  list-style: none; 
  padding-right: 20px;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--color-text-primary); }


/* ================================================================
   4. HERO
================================================================ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
    url('https://polarizadosyapr.com/wp-content/uploads/2025/12/191312.jpg') center/cover fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 40px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero #h1-logo {
  mix-blend-mode: overlay;
}
.tagline {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 50px;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.cta-button {
  background: transparent;
  color: var(--color-text-primary);
  padding: 18px 50px;
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all var(--transition-mid);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-button:hover { background: var(--color-accent); color: var(--color-bg-deep); }


/* ================================================================
   5. SERVICES SECTION
================================================================ */
.services-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background:
    linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.92)),
    url('https://polarizadosyapr.com/wp-content/uploads/2025/12/242.jpg') center/cover fixed;
  position: relative;
}
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-default);
}
 
.service-card {
  background: var(--color-bg-mid);
  padding: 60px 40px;
  text-align: center;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-mid);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); background: var(--color-bg-lift); }
 
.svc-icon-svg  { width: 60px; height: 60px; margin-bottom: 30px; display: block; margin-left: auto; margin-right: auto; }
.service-card h3 { font-size: 24px; font-weight: 300; margin-bottom: 15px; letter-spacing: 3px; text-transform: uppercase; }
.service-card p  { color: var(--color-text-muted); line-height: 1.8; font-weight: 300; font-size: 14px; }

/* ================================================================
   6. FAQ SECTION
================================================================ */
.faq-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background:
    linear-gradient(rgba(0,0,0,0.90), rgba(0,0,0,0.90)),
    url('https://polarizadosyapr.com/wp-content/uploads/2025/12/20868.jpg') center/cover fixed;
  position: relative;
}

/* ── Accordion container ── */
.faqAcc {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px; /* hairline divider between items */
}

/* Glassmorphism card feel */
.faq-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Each accordion row ── */
.faqItem {
  border-bottom: 1px solid var(--border-default);
  overflow: hidden; /* keeps rounded corners clean if added */
}
.faqItem:last-child { border-bottom: none; }

/* Highlight open item with a subtle left accent line */
.faqItem.is-open {
  border-left: 3px solid var(--color-accent);
}
.faqItem:not(.is-open) {
  border-left: 3px solid transparent;
  transition: border-left-color var(--transition-fast);
}

/* ── Trigger button ── */
.faqBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast);
}
.faqBtn:hover { background: rgba(255,255,255,0.04); }

/* Question text + icon */
.faqQ {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-primary);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.faqQ i {
  font-size: 18px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.faqItem.is-open .faqQ i { color: var(--color-accent); }

/* Chevron — rotates 180° when open */
.faqChevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--color-text-faint);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              color var(--transition-fast);
}
.faqItem.is-open .faqChevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* ── Collapsible panel ──
   max-height animates 0 → content height.
   overflow:hidden clips during transition.              */
.faqPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Answer text */
.faqInner {
  padding: 0 32px 26px calc(32px + 14px + 18px + 14px);
  /* left indent aligns text under the question span, past the icon */
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.8;
}


/* ================================================================
   7. ADD-ONS SECTION
================================================================ */
.addons-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background:
    linear-gradient(rgba(10,10,10,0.92), rgba(10,10,10,0.92)),
    url('https://images.unsplash.com/photo-1555215695-3004980ad54e?w=1600&q=80') center/cover fixed;
  border-top: 1px solid var(--border-default);
    border-radius: var(--border-radius);

}

.addons-grid { 
  display: grid; 
  grid-template-columns: 
    repeat(2, 1fr); gap: 2px; margin-top: 60px; 
    border-radius: var(--border-radius);

}

.addon-card {
  background: var(--color-bg-mid); padding: 40px;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  transition: background var(--transition-fast);
  border-radius: var(--border-radius);

}
.addon-card:hover { background: var(--color-bg-lift); }
.addon-name  { font-size: 18px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
.addon-price { font-size: 24px; font-weight: 300; color: var(--color-text-muted); }


/* ================================================================
   8. BOOKING SECTION
================================================================ */
.booking-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background:
    linear-gradient(rgba(0,0,0,0.93), rgba(0,0,0,0.93)),
    url('https://polarizadosyapr.com/wp-content/uploads/2025/12/WhatsApp_Image_2025-12-18_at_10.26.33_AM.jpg') center/cover fixed;
  border-top: 1px solid var(--border-default);
}

.booking-title    { 
  color: var(--color-text-primary); 
}
.booking-subtitle { 
  color: var(--color-text-faint); 
}

.booking-form-container {
  max-width: 1100px; 
  margin: 60px auto 0;
  background: var(--color-bg-dark); border: 1px solid var(--border-default); padding: 60px;
    border-radius: var(--border-radius);

}

.form-step        { display: none; }
.form-step.active { display: block; }

.step-title { font-size: 32px; font-weight: 300; color: var(--color-text-primary); margin-bottom: 50px; text-align: center; letter-spacing: 4px; text-transform: uppercase; }

/* ── Film selector grid (step 1) ── */
.film-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
 
.film-option { position: relative; cursor: pointer; }
.film-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
 
.film-card {
  background: var(--color-bg-mid);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}
 
/* Accent left bar on selected */
.film-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
 
.film-option input[type="radio"]:checked + .film-card {
  border-color: var(--color-accent);
  background: var(--color-bg-lift);
  box-shadow: 0 0 0 1px var(--color-accent);
}
.film-option input[type="radio"]:checked + .film-card::before { opacity: 1; }
.film-option:hover .film-card { border-color: var(--border-hover); background: var(--color-bg-lift); }
 
/* Mil number */
.film-mil {
  font-size: 26px;
  font-weight: 300;
  color: var(--color-text-primary);
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
}
.film-mil span {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-top: 3px;
}
 
/* Spec pills */
.film-specs { display: flex; flex-wrap: wrap; gap: 5px; }
.film-spec {
  font-size: 11px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.film-spec i { color: var(--color-accent); font-size: 9px; }
 
/* Price */
.film-price {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-primary);
  text-align: right;
  white-space: nowrap;
}
 
/* Popular badge */
.film-badge {
  position: absolute;
  top: 8px; right: 10px;
  background: var(--color-accent);
  color: var(--color-bg-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}
 
/* Legend */
.film-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0 28px;
  font-size: 11px;
  color: var(--color-text-ghost);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.film-legend i { color: var(--color-accent); margin-right: 4px; }
 
.vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.vehicle-option { cursor: pointer; }
.vehicle-option input[type="radio"] { position: absolute; opacity: 0; }
.vehicle-content { background: var(--color-bg-mid); border: 1px solid var(--border-default); padding: 30px 20px; text-align: center; transition: all var(--transition-fast); }
.vehicle-option input[type="radio"]:checked + .vehicle-content { border-color: var(--border-active); background: var(--color-bg-lift); }
.vehicle-icon { font-size: 40px; margin-bottom: 15px; }
.vehicle-name { font-size: 12px; font-weight: 300; color: var(--color-text-muted); letter-spacing: 1px; text-transform: uppercase; }

.addons-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.addon-option { cursor: pointer; }
.addon-option input[type="checkbox"] { position: absolute; opacity: 0; }
.addon-content { background: var(--color-bg-mid); border: 1px solid var(--border-default); padding: 30px; display: flex; justify-content: space-between; align-items: center; transition: all var(--transition-fast); }
.addon-option input[type="checkbox"]:checked + .addon-content { border-color: var(--border-active); background: var(--color-bg-lift); }
.addon-info       { flex: 1; }
.addon-name-text  { font-size: 18px; font-weight: 300; color: var(--color-text-primary); margin-bottom: 5px; letter-spacing: 2px; text-transform: uppercase; }
.addon-desc       { font-size: 13px; color: var(--color-text-ghost); font-weight: 300; }
.addon-price-text { font-size: 20px; font-weight: 300; color: var(--color-text-muted); }

.datetime-grid       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.customer-info-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 40px; }
.form-group          { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label    { font-weight: 300; color: var(--color-text-faint); margin-bottom: 12px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px; border: 1px solid var(--border-default);
  background: var(--color-bg-mid); color: var(--color-text-primary);
  font-size: 16px; font-weight: 300; font-family: var(--font-sans); transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--border-hover); background: var(--color-bg-lift); }

.form-navigation { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.nav-btn {
  flex: 1; padding: 18px 40px; border: 1px solid var(--border-hover);
  background: transparent; color: var(--color-accent);
  border-radius: var(--border-radius);
  font-size: 12px; font-weight: 300; cursor: pointer;
  transition: all var(--transition-fast); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-sans);
}
.nav-btn:hover { background: var(--color-accent); color: var(--color-bg-deep); }
.tab
{
  position: sticky;
  width:100%;
  height:10px;
  background-color:#2B2929;
  border-radius:50px;
  transform: translateY(4px);
  z-index: 0;
}
.price-summary { 
  background: var(--color-bg-mid); border: 1px solid var(--border-default); 
    padding: 40px; 
  position: relative; 
  z-index:2;
/*    -moz-box-shadow: 0 10px 30px var(--tab-border-color);
-webkit-box-shadow: 0 10px 30px  var(--tab-border-color);
box-shadow: 0 10px 30px  var(--tab-border-color); */
}
/* .price-summary::after {
      content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0) 33.333%, var(--color-bg-mid) 33.333%, var(--color-bg-mid) 66.667%, rgba(0, 0, 0, 0) 66.667%), linear-gradient(-45deg, rgba(0, 0, 0, 0) 33.333%, var(--color-bg-mid) 33.333%, var(--color-bg-mid) 66.667%, rgba(0, 0, 0, 0) 66.667%);
    background-size: 20px 40px;
    background-position: 50% -30px;
    background-repeat: repeat-x;
    z-index: 1;
} */
.summary-row:nth-child(1){
    border-top:1px dashed var(--border-default);
}
.summary-row { display: flex; justify-content: space-between; padding: 15px 0; font-size: 14px; font-weight: 300; color: var(--color-text-muted); letter-spacing: 1px; text-transform: uppercase; }
.summary-row.total { border-top: 1px dashed var(--border-default); margin-top: 15px; padding-top: 25px; font-size: 28px; font-weight: 300; color: var(--color-text-primary); }


/* ================================================================
   9. CONFIRMATION MODAL
================================================================ */
.modal { display: none; position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; }
.modal-content { background: var(--color-bg-dark); border: 1px solid var(--border-hover); padding: 60px; max-width: 700px; width: 90%; max-height: 80vh; overflow-y: auto; }
.modal-header h2 { color: var(--color-text-primary); margin-bottom: 30px; text-align: center; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; }
.modal-body      { color: var(--color-text-muted); font-weight: 300; }
.confirmation-details { background: var(--color-bg-mid); border: 1px solid var(--border-default); padding: 30px; margin: 30px 0; }
.confirmation-details p      { margin: 15px 0; line-height: 1.8; font-size: 14px; }
.confirmation-details strong { color: var(--color-text-faint); font-weight: 300; letter-spacing: 1px; text-transform: uppercase; font-size: 11px; display: inline-block; min-width: 120px; }
.modal-note  { margin-top: 20px; color: var(--color-text-faint); }
.modal-close {
  width: 100%; padding: 18px; background: transparent; border: 1px solid var(--border-hover);
  color: var(--color-text-primary); font-size: 12px; font-weight: 300; cursor: pointer;
  margin-top: 30px; letter-spacing: 2px; text-transform: uppercase;
  transition: all var(--transition-fast); font-family: var(--font-sans);
}
.modal-close:hover { background: var(--color-accent); color: var(--color-bg-deep); }


/* ================================================================
   10. SQUEEGEE FOOTER + BLUR OVERLAY

   Squeegee animation classes (added/removed by JS):
     .sq-onboarding — re-anchors from bottom to top for travel
     .sq-entry      — snappy drop-in from above the fold
     .sq-settle     — slow weighted glide to resting position
     .sq-exit       — accelerating slide off the bottom edge

   Blur overlay (#sq-blur-overlay):
     - Fixed div, top set by JS to always align with the blade edge
     - backdrop-filter blurs whatever content is beneath it
     - Mirrors the same entry/settle transitions as the squeegee
     - .sq-fade-out fades it out on exit
================================================================ */

/* ── Squeegee SVG wrapper ── */
.squeegee-footer {
  position: fixed;
  bottom: -4rem;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 11; /* above blur overlay */
}
.squeegee-footer svg { width: 100%; height: 100%; display: block; }

/* Re-anchor to top during the onboarding travel */
.squeegee-footer.sq-onboarding { top: 0; bottom: auto; }

/* ── Blur overlay ── */
#sq-blur-overlay {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;               /* always fills to the bottom of the viewport */
  pointer-events: none;    /* never blocks clicks */
  z-index: 10;             /* below squeegee, above page content */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  /* Subtle dark tint so the blur reads clearly against all backgrounds */
  background: rgba(0, 0, 0, 0.18);
}

/* Mirror the squeegee's entry transition on the overlay top position */
#sq-blur-overlay.sq-entry {
  transition: top 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mirror the settle transition */
#sq-blur-overlay.sq-settle {
  transition: top 1.4s cubic-bezier(0.45, 0, 0.55, 1);
}

/* Fade out when squeegee exits — slightly longer so it lingers just a beat */
#sq-blur-overlay.sq-fade-out {
  transition: opacity 0.8s ease;
  opacity: 0;
}

/* ── Shared animation timings (squeegee CSS transitions) ── */
.squeegee-footer.sq-entry  { transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.squeegee-footer.sq-settle { transition: transform 1.4s cubic-bezier(0.45, 0, 0.55, 1); }
.squeegee-footer.sq-exit   { transition: transform 0.6s cubic-bezier(0.55, 0, 1, 0.45); }


/* ================================================================
   11. FOOTER / CONTACT
================================================================ */
footer {
  background:
    linear-gradient(rgba(0,0,0,0.95), rgba(0,0,0,0.95)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80') center/cover fixed;
  color: var(--color-text-muted);
  padding: 80px var(--section-pad-x) 40px;
  border-top: 1px solid var(--border-default);
}
.footer-content { max-width: var(--container-max); margin: 0 auto; text-align: center; }
.footer-content h3 { font-size: 28px; font-weight: 300; margin-bottom: 40px; letter-spacing: 4px; text-transform: uppercase; color: var(--color-text-primary); }
.contact-info  { display: flex; justify-content: center; gap: 80px; margin-bottom: 60px; flex-wrap: wrap; }
.contact-item  { font-size: 14px; font-weight: 300; letter-spacing: 1px; }
.contact-item strong { color: var(--color-text-ghost); font-weight: 300; text-transform: uppercase; font-size: 11px; }
.footer-bottom { border-top: 1px solid var(--border-default); padding-top: 30px; margin-top: 40px; color: var(--color-text-ghost); font-size: 12px; letter-spacing: 1px; }


/* ================================================================
   12. RESPONSIVE
================================================================ */
@media (max-width: 1200px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .packages-grid  { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}

@media (max-width: 768px) {
  :root { --section-pad-y: 80px; --section-pad-x: 20px; }
  .hero h1       { font-size: 42px; letter-spacing: 4px; }
  .section-title { font-size: 32px; letter-spacing: 3px; }
  .nav-links     { display: none; }
  .services-grid, .packages-grid, .addons-grid,
  .package-options, .vehicle-grid,
  .datetime-grid, .customer-info-grid { grid-template-columns: 1fr; }
  .form-group.full-width      { grid-column: 1; }
  .booking-form-container     { padding: 30px 20px; }
}