/* ==========================================================================
   Groundwork Rentals LLC — Bold & Energetic Redesign
   Mobile-first | WCAG 2.1 AA | No dependencies
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand — bold, high-energy palette */
  --color-base:        #0A0F1C;   /* near-black navy                       */
  --color-base-light:  #141B2D;   /* slightly lighter navy                 */
  --color-text:        #0F172A;   /* deep slate body text                  */
  --color-text-muted:  #64748B;   /* cool gray captions                    */
  --color-bg:          #F8FAFC;   /* crisp cool white                      */
  --color-surface:     #FFFFFF;   /* card surface                          */
  --color-border:      #E2E8F0;   /* light border                          */

  /* Accent colors — vibrant and energetic */
  --color-accent:      #3B82F6;   /* electric blue primary                 */
  --color-accent-dark: #2563EB;   /* blue hover                            */
  --color-driver:      #10B981;   /* vibrant emerald for drivers            */
  --color-driver-dark: #059669;   /* driver hover                          */
  --color-stays:       #F59E0B;   /* bold amber for stays                  */
  --color-stays-dark:  #D97706;   /* stays hover                           */

  /* Functional */
  --color-whatsapp:    #25D366;
  --color-whatsapp-dark:#1EBE57;
  --color-success:     #10B981;
  --color-error:       #EF4444;
  --color-error-bg:    #FEF2F2;
  --color-focus:       #3B82F6;

  /* Typography — bold geometric sans */
  --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;
  --text-5xl:  4.5rem;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width:  1200px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Transitions */
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

/* ---------- Focus States ---------- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-base);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-3xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--text-2xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-xl);  margin-bottom: var(--space-md); }
h4 { font-size: var(--text-lg);  margin-bottom: var(--space-md); }

p {
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-surface);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__header p {
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: var(--text-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 52px;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn:active {
  transform: translateY(0);
}

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

/* Primary — driver accent */
.btn--driver {
  background: linear-gradient(135deg, var(--color-driver) 0%, #34D399 100%);
  color: #fff;
  border-color: transparent;
}
.btn--driver:hover {
  background: linear-gradient(135deg, var(--color-driver-dark) 0%, var(--color-driver) 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Primary — stays accent */
.btn--stays {
  background: linear-gradient(135deg, var(--color-stays) 0%, #FBBF24 100%);
  color: var(--color-base);
  border-color: transparent;
}
.btn--stays:hover {
  background: linear-gradient(135deg, var(--color-stays-dark) 0%, var(--color-stays) 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

/* Primary — base */
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #60A5FA 100%);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* Secondary / outline */
.btn--outline {
  background-color: transparent;
  color: var(--color-base);
  border-color: var(--color-base);
}
.btn--outline:hover {
  background-color: var(--color-base);
  color: #fff;
}

.btn--outline-driver {
  background-color: transparent;
  color: var(--color-driver);
  border-color: var(--color-driver);
}
.btn--outline-driver:hover {
  background-color: var(--color-driver);
  color: #fff;
}

.btn--outline-stays {
  background-color: transparent;
  color: var(--color-stays);
  border-color: var(--color-stays);
}
.btn--outline-stays:hover {
  background-color: var(--color-stays);
  color: #fff;
}

/* WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, #34D399 100%);
  color: #fff;
  border-color: transparent;
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, var(--color-whatsapp-dark) 0%, var(--color-whatsapp) 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Small */
.btn--sm {
  min-height: 44px;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* Block */
.btn--block {
  width: 100%;
}

/* ---------- WhatsApp Floating Action Button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-lg);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, #34D399 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background-color: var(--color-base);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.site-header__logo:hover {
  opacity: 0.9;
}

/* Nav */
.site-nav {
  display: none;
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background-color: var(--color-base);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.site-nav a {
  color: rgba(255,255,255,0.7);
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

/* Driver nav accent */
.site-header--driver .site-nav a[aria-current="page"] {
  color: var(--color-driver);
}

/* Stays nav accent */
.site-header--stays .site-nav a[aria-current="page"] {
  color: var(--color-stays);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
  }

  .site-nav.is-open {
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }
}

/* ---------- Splash Page ---------- */
.splash {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(135deg, #0A0F1C 0%, #1E293B 50%, #0F172A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs */
.splash::before,
.splash::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.splash::before {
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  top: -200px;
  right: -200px;
}

.splash::after {
  width: 500px;
  height: 500px;
  background: var(--color-driver);
  bottom: -150px;
  left: -150px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.splash__logo {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  color: #fff;
}

.splash__tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3xl);
  max-width: 500px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}

.splash__cards {
  display: grid;
  gap: var(--space-xl);
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .splash__cards {
    grid-template-columns: 1fr 1fr;
  }
  .splash__logo {
    font-size: var(--text-5xl);
  }
}

.splash-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-decoration: none;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.splash-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: height var(--transition);
}

.splash-card:first-child::before {
  background: linear-gradient(90deg, var(--color-driver), #34D399);
}

.splash-card:last-child::before {
  background: linear-gradient(90deg, var(--color-stays), #FBBF24);
}

.splash-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.splash-card:hover::before {
  height: 4px;
}

.splash-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
}

.splash-card__icon--driver {
  color: var(--color-driver);
}

.splash-card__icon--stays {
  color: var(--color-stays);
}

.splash-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.splash-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Splash footer */
.splash-footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  text-align: center;
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.splash-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.splash-footer a:hover {
  color: #fff;
}

.splash-footer__links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.splash-footer__meta {
  margin-top: var(--space-md);
  font-size: var(--text-xs);
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  color: #fff;
}

.hero--driver {
  background: linear-gradient(135deg, #0A0F1C 0%, #064E3B 50%, #0A0F1C 100%);
  color: #fff;
}

.hero--driver::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--color-driver);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  top: -150px;
  right: -100px;
}

.hero--driver h1,
.hero--driver h2 {
  color: #fff;
}

.hero--stays {
  background: linear-gradient(135deg, #0A0F1C 0%, #451A03 50%, #0A0F1C 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero--stays::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--color-stays);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  bottom: -150px;
  left: -100px;
}

.hero--stays h1,
.hero--stays h2 {
  color: #fff;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__sub {
  font-size: var(--text-md);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 2rem);
  }
  .hero__price {
    font-size: var(--text-3xl);
  }
}

/* ---------- Platform Strip ---------- */
.platform-strip {
  background: var(--color-base);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.platform-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  justify-content: center;
  align-items: center;
}

.platform-strip__item {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.platform-strip__note {
  width: 100%;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  margin-top: var(--space-sm);
}

/* ---------- Steps / How It Works ---------- */
.steps {
  display: grid;
  gap: var(--space-xl);
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.step__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  color: var(--color-driver);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-driver) 0%, #34D399 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- Vehicle / Pricing Cards ---------- */
.vehicle-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.vehicle-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}

.vehicle-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  position: relative;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-error);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vehicle-card__badge--available {
  background: linear-gradient(135deg, var(--color-success) 0%, #34D399 100%);
}

.vehicle-card__body {
  padding: var(--space-lg);
}

.vehicle-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-base);
  margin-bottom: var(--space-xs);
}

.vehicle-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-driver);
  margin-bottom: var(--space-md);
}

.vehicle-card__price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

.vehicle-card__details {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.vehicle-card__details li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.vehicle-card__details li:last-child {
  border-bottom: none;
}

.vehicle-card__details svg {
  width: 16px;
  height: 16px;
  color: var(--color-driver);
  flex-shrink: 0;
}

.vehicle-card--waitlist {
  opacity: 0.65;
}

.vehicle-card--waitlist .vehicle-card__image {
  filter: grayscale(0.5);
}

/* ---------- Comparison (Included / Not Included) ---------- */
.comparison {
  display: grid;
  gap: var(--space-xl);
}

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

.comparison__col {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.comparison__col--included {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid #A7F3D0;
}

.comparison__col--excluded {
  background: linear-gradient(135deg, #FEF2F2 0%, #FECACA 50%, #FEE2E2 100%);
  border: 1px solid #FECACA;
}

.comparison__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.comparison__list li {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  line-height: 1.5;
}

.comparison__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__col--included .comparison__list svg {
  color: var(--color-driver);
}

.comparison__col--excluded .comparison__list svg {
  color: var(--color-error);
}

/* ---------- Requirements ---------- */
.requirements-grid {
  display: grid;
  gap: var(--space-md);
}

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

.requirement {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.requirement:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.requirement svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-driver);
}

.requirement__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.requirement__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.not-required {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  border: 1px solid #A7F3D0;
}

.not-required__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-driver);
  margin-bottom: var(--space-md);
}

.not-required__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.not-required__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-driver-dark);
}

.not-required__item svg {
  width: 18px;
  height: 18px;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-md);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: var(--space-sm);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---------- Property Showcase (Stays) ---------- */
.property-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #D4C4B0 0%, #C4A882 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.property-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-stats {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.property-stat {
  text-align: center;
}

.property-stat__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-stays);
}

.property-stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #e8ddd0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  transition: all var(--transition);
}

.gallery-item:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  color: #fff;
  font-size: var(--text-2xl);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: var(--text-2xl);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav--prev {
  left: var(--space-lg);
}

.lightbox__nav--next {
  right: var(--space-lg);
}

/* Amenity grid */
.amenity-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  transition: all var(--transition);
}

.amenity:hover {
  border-color: var(--color-stays);
}

.amenity svg {
  width: 24px;
  height: 24px;
  color: var(--color-stays);
  flex-shrink: 0;
}

/* Distances */
.distances-list {
  display: grid;
  gap: var(--space-sm);
  max-width: 600px;
  margin: 0 auto;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.distance-item:hover {
  border-color: var(--color-stays);
  transform: translateX(4px);
}

.distance-item__name {
  font-family: var(--font-display);
  font-weight: 600;
}

.distance-item__time {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-stays);
  white-space: nowrap;
}

/* Rates card */
.rates-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.rates-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.rates-card__row:last-child {
  border-bottom: none;
}

.rates-card__label {
  font-family: var(--font-display);
  font-weight: 600;
}

.rates-card__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-stays);
}

.rates-card__note {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* House rules */
.house-rules {
  max-width: 700px;
  margin: 0 auto;
}

.house-rules li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: var(--text-base);
  line-height: 1.6;
}

.house-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--color-stays);
  border-radius: 50%;
}

/* Nearby / local tips */
.nearby-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nearby-item {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.nearby-item:hover {
  border-color: var(--color-stays);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.nearby-item__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-base);
  margin-bottom: var(--space-sm);
}

.nearby-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- Forms ---------- */
.form-section {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.form-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .form-grid--two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-label__required {
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 52px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

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

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: 600;
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.checkbox-label:hover {
  border-color: var(--color-accent);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.checkbox-label input:checked + span {
  font-weight: 700;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: var(--space-md);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
}

.radio-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.is-visible {
  display: block;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--color-success);
  margin: 0 auto var(--space-md);
}

.form-success__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-base);
  margin-bottom: var(--space-sm);
}

.form-success__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ---------- Local / Why Us ---------- */
.why-local {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .why-local {
    grid-template-columns: 1fr 1fr;
  }
}

.why-local__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.why-local__content h3 {
  color: var(--color-driver);
}

.why-local__list {
  margin-top: var(--space-md);
}

.why-local__list li {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.why-local__list svg {
  width: 20px;
  height: 20px;
  color: var(--color-driver);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- About Page ---------- */
.about-layout {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.about-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 400px;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

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

.contact-method {
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.contact-method svg {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  color: var(--color-accent);
}

.contact-method__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-method__value {
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.contact-method__value a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact-method__value a:hover {
  color: var(--color-accent-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-base);
  color: rgba(255,255,255,0.6);
  padding: var(--space-3xl) 0 var(--space-xl);
  font-size: var(--text-sm);
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-col__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col p {
  margin-bottom: var(--space-sm);
  max-width: none;
}

.footer-col ul li {
  padding: var(--space-xs) 0;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

/* Cross-link in footer */
.footer-crosslink {
  font-size: var(--text-xs);
  opacity: 0.6;
  margin-top: var(--space-sm);
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
}

.legal-content p {
  max-width: none;
  margin-bottom: var(--space-md);
}

.legal-content ul, .legal-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.legal-notice {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  font-size: var(--text-sm);
}

/* ---------- Placeholder image blocks ---------- */
.placeholder-img {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  text-align: center;
  padding: var(--space-sm);
}

/* ---------- Scroll Reveal Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .step,
  .vehicle-card,
  .requirement,
  .comparison__col,
  .contact-method,
  .distance-item,
  .faq-item {
    animation: fadeInUp 0.6s ease both;
  }

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

  .step:nth-child(1) { animation-delay: 0.1s; }
  .step:nth-child(2) { animation-delay: 0.2s; }
  .step:nth-child(3) { animation-delay: 0.3s; }

  .vehicle-card:nth-child(1) { animation-delay: 0.1s; }
  .vehicle-card:nth-child(2) { animation-delay: 0.2s; }
  .vehicle-card:nth-child(3) { animation-delay: 0.3s; }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-fab,
  .nav-toggle {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
