/* ============================================================
   Sprinter Montreal – Design Tokens & Full Stylesheet
   ============================================================ */

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
  /* Core palette */
  --navy:          hsl(220, 30%, 8%);
  --navy-light:    hsl(220, 25%, 15%);
  --navy-lighter:  hsl(220, 20%, 25%);
  --gold:          hsl(45, 100%, 65%);
  --gold-dark:     hsl(42, 95%, 58%);
  --platinum:      hsl(220, 15%, 92%);
  --charcoal:      hsl(220, 25%, 18%);
  --white:         #ffffff;
  --white-80:      rgba(255,255,255,.8);
  --white-60:      rgba(255,255,255,.6);
  --white-10:      rgba(255,255,255,.1);
  --white-05:      rgba(255,255,255,.05);
  --red:           hsl(0, 84%, 60%);

  /* Gradients */
  --gradient-luxury:   linear-gradient(135deg, var(--navy), var(--navy-light));
  --gradient-gold:     linear-gradient(135deg, var(--gold), var(--gold-dark));
  --gradient-platinum: linear-gradient(180deg, var(--platinum), hsl(220,10%,88%));

  /* Shadows */
  --shadow-luxury:  0 25px 50px -12px hsla(220,30%,8%,.4);
  --shadow-gold:    0 10px 30px -10px hsla(45,100%,65%,.3);
  --shadow-premium: 0 8px 32px -8px hsla(220,30%,8%,.2);

  /* Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Font */
  --font: 'Montserrat', sans-serif;
}

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .2s ease;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
.btn-luxury {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-luxury:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-premium {
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  width: 100%;
}
.btn-premium:hover { opacity: .9; transform: translateY(-1px); }
.btn-premium:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; }
.btn-ghost {
  background: transparent;
  color: var(--white-60);
  padding: 0.5rem;
}
.btn-ghost:hover { color: var(--white); background: var(--white-10); border-radius: var(--radius); }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(220, 30%, 8%, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header-logo img { height: 2rem; width: auto; }
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.desktop-nav button {
  color: var(--white-80);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color .2s;
}
.desktop-nav button:hover { color: var(--gold); }
.header-actions { display: none; align-items: center; gap: 1rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white-60);
  transition: color .2s;
}
.header-phone:hover { color: var(--gold); }
.lang-toggle {
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all .2s;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: flex; }

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

/* --- Mobile Menu --- */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-menu-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20rem;
  background: var(--navy);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.mobile-menu-header img { height: 2rem; width: auto; }
.mobile-menu-close {
  color: var(--white-60);
  padding: 0.25rem;
}
.mobile-menu-close svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu nav button {
  text-align: left;
  font-size: 1.125rem;
  color: var(--white-80);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color .2s;
}
.mobile-menu nav button:hover { color: var(--gold); }
.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu-footer a,
.mobile-menu-footer .mobile-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-60);
  transition: color .2s;
}
.mobile-menu-footer a:hover { color: var(--gold); }
.mobile-lang-toggle {
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all .2s;
}
.mobile-lang-toggle:hover { background: var(--gold); color: var(--navy); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), hsla(220,30%,8%,.9), hsla(220,30%,8%,.6));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 0;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero h1 span { display: block; color: var(--gold); }
.hero-tagline {
  font-size: 1rem;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  color: var(--white-80);
}
.hero-stats .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stats .stat-label { font-size: 0.75rem; }

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-tagline { font-size: 1.125rem; }
  .hero-buttons { flex-direction: row; justify-content: center; }
  .hero-buttons .btn { width: auto; }
  .hero-stats .stat-value { font-size: 1.75rem; }
  .hero-stats .stat-label { font-size: 0.875rem; }
}
@media (min-width: 1024px) {
  .hero-content { text-align: left; max-width: 50%; }
  .hero-buttons { justify-content: flex-start; }
  .hero h1 { font-size: 4.5rem; }
  .hero-tagline { font-size: 1.25rem; margin-left: 0; }
  .hero-stats .stat-value { font-size: 2rem; }
}

/* --- Section Common --- */
.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 4rem 0; } }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--white-80);
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .section-header h2 { font-size: 3rem; }
  .section-header p { font-size: 1.25rem; }
}

/* --- Vehicle Section --- */
.vehicles-section { background: var(--navy); }

/* Scroll container for mobile/tablet */
.vehicles-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: hsla(45,100%,65%,.5) transparent;
}
.vehicles-scroll::-webkit-scrollbar { height: 6px; }
.vehicles-scroll::-webkit-scrollbar-track { background: transparent; }
.vehicles-scroll::-webkit-scrollbar-thumb { background: hsla(45,100%,65%,.5); border-radius: 3px; }

.swipe-hint { font-size: 0.875rem; color: var(--white-60); margin-top: 1rem; }

/* Desktop grid */
.vehicles-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1280px) {
  .vehicles-scroll { display: none; }
  .swipe-hint { display: none; }
  .vehicles-grid { display: grid; }
}

/* Vehicle card */
.vehicle-card {
  flex-shrink: 0;
  width: 20rem;
  scroll-snap-align: start;
  background: hsla(220,30%,8%,.8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  transition: box-shadow .3s;
}
.vehicle-card:hover { box-shadow: var(--shadow-gold); }
@media (min-width: 768px) { .vehicle-card { width: 24rem; } }
@media (min-width: 1280px) { .vehicle-card { width: auto; } }

/* Vehicle image carousel */
.vehicle-image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(to bottom right, var(--navy-lighter), var(--charcoal));
  overflow: hidden;
}
.vehicle-carousel {
  display: flex;
  transition: transform .3s ease;
  height: 100%;
}
.vehicle-carousel img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-image-wrapper .capacity-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  z-index: 5;
}
.carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.vehicle-image-wrapper:hover .carousel-controls { opacity: 1; }
.carousel-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background .2s;
}
.carousel-btn:hover { background: rgba(0,0,0,.7); }
.carousel-btn svg { width: 1rem; height: 1rem; }

/* Vehicle card body */
.vehicle-card-body { padding: 1rem; }
@media (min-width: 768px) { .vehicle-card-body { padding: 1.5rem; } }
.vehicle-card-body h3 {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.vehicle-card-body .vehicle-desc {
  font-size: 0.875rem;
  color: var(--white-80);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Features list */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-80);
}
.feature-item svg { width: 0.875rem; height: 0.875rem; color: var(--gold); flex-shrink: 0; }

/* Badges */
.badge-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.badges { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1rem; }
.badge {
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  background: var(--navy-lighter);
  color: var(--white-80);
}
.badge-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* --- Services Section --- */
.services-section { background: var(--navy-light); }

.services-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: hsla(45,100%,65%,.5) transparent;
}
.services-scroll::-webkit-scrollbar { height: 6px; }
.services-scroll::-webkit-scrollbar-track { background: transparent; }
.services-scroll::-webkit-scrollbar-thumb { background: hsla(45,100%,65%,.5); border-radius: 3px; }
.services-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services-scroll { display: none; }
  .services-scroll + .swipe-hint { display: none; }
  .services-grid { display: grid; }
}

.service-card {
  flex-shrink: 0;
  width: 18rem;
  scroll-snap-align: start;
  background: hsla(220,25%,15%,.8);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: box-shadow .3s, transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-luxury); transform: translateY(-2px); }
@media (min-width: 1024px) { .service-card { width: auto; } }

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 2rem; height: 2rem; color: var(--navy); }
.service-card h3 {
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--white-80);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-features {
  font-size: 0.8125rem;
  color: var(--white-60);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Quote Section --- */
.quote-section { background: var(--navy); }
.quote-card {
  max-width: 56rem;
  margin: 0 auto;
  background: hsla(220,25%,15%,.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}
.quote-card-header {
  background: var(--gradient-gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  text-align: center;
}
.quote-card-header h3 { font-size: 1.25rem; font-weight: 700; }
.quote-card-header p { font-size: 0.875rem; opacity: .8; font-weight: 500; }
.quote-card-body { padding: 1.5rem; }
@media (min-width: 768px) { .quote-card-body { padding: 2rem; } }

/* Autocomplete notice */
.autocomplete-notice {
  border: 1px solid hsla(45,100%,50%,.4);
  background: hsla(45,100%,50%,.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: hsl(45,80%,75%);
}

/* Form grid */
.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-row-2 { grid-template-columns: 1fr; }
.form-row-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}
.form-group label .required { color: var(--gold); }

.form-fieldset {
  border: 2px solid hsla(45,100%,65%,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-fieldset h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.form-fieldset h4 .step-number {
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.form-fieldset-return {
  border-color: hsla(220,60%,50%,.2);
}

/* Inputs */
.input, .select, .textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background: hsla(220,25%,15%,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.875rem;
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px hsla(45,100%,65%,.2);
}
.input::placeholder, .textarea::placeholder { color: var(--white-60); }
.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 2.5rem; }
.input-with-icon svg,
.input-with-icon .input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--white-60);
  pointer-events: none;
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffffff99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 4 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.select option { background: var(--navy-light); color: var(--white); }
.textarea { resize: vertical; min-height: 6rem; }

/* Address error text */
.field-error { font-size: 0.8125rem; color: hsl(0,70%,70%); margin-top: 0.25rem; }

/* Add pickup button */
.btn-add-pickup {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all .2s;
}
.btn-add-pickup:hover { background: transparent; color: var(--gold); }
.btn-remove {
  font-size: 0.8125rem;
  color: hsl(0,70%,70%);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  transition: all .2s;
}
.btn-remove:hover { background: hsla(0,70%,70%,.1); color: hsl(0,70%,80%); }

.additional-pickup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* --- Contact Section --- */
.contact-section { background: var(--navy-light); }
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 1.5rem; height: 1.5rem; color: var(--navy); }
.contact-item-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-item-text p { font-size: 0.875rem; color: var(--white-80); }
.contact-item-text .highlight { color: var(--gold); font-weight: 600; }
.contact-item-text a.highlight { transition: color .2s; }
.contact-item-text a.highlight:hover { color: var(--white); }
.contact-item-text .subtext { font-size: 0.8125rem; color: var(--white-60); }

/* Commitment card */
.commitment-card {
  background: var(--white-10);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.commitment-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.commitment-card-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
}
.commitment-card-header svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.commitment-card > p { font-size: 0.875rem; color: var(--white-80); margin-bottom: 1rem; }
.commitment-list { display: flex; flex-direction: column; gap: 1rem; }
.commitment-list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.commitment-list-item .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.commitment-list-item h5 { font-weight: 600; margin-bottom: 0.125rem; }
.commitment-list-item p { font-size: 0.8125rem; color: var(--white-80); }

/* About blurb */
.about-blurb {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.about-blurb h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.about-blurb p { font-size: 0.875rem; color: var(--white-80); line-height: 1.7; }

/* --- Thank You Page --- */
.thankyou-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.thankyou-content {
  max-width: 42rem;
  width: 100%;
  text-align: center;
}
.thankyou-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
.thankyou-icon svg { width: 3.5rem; height: 3.5rem; color: var(--navy); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.thankyou-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .thankyou-content h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .thankyou-content h1 { font-size: 3rem; } }
.thankyou-content > p {
  font-size: 1.125rem;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thankyou-content .gold-text { color: var(--gold); font-weight: 600; }
.whats-next {
  background: hsla(220,25%,15%,.5);
  border: 1px solid hsla(45,100%,65%,.2);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: left;
}
.whats-next h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.whats-next ol { display: flex; flex-direction: column; gap: 0.75rem; }
.whats-next li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white-80);
  font-size: 0.9375rem;
}
.step-circle {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.step-circle span { font-size: 0.8125rem; font-weight: 700; color: var(--navy); }
.thankyou-contact {
  margin-bottom: 2rem;
  color: var(--white-60);
}
.thankyou-contact p { margin-bottom: 1rem; }
.thankyou-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .thankyou-contact-links { flex-direction: row; justify-content: center; }
}
.thankyou-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  transition: color .2s;
}
.thankyou-contact-links a:hover { color: var(--white); }
.thankyou-contact-links a svg { width: 1.25rem; height: 1.25rem; }

/* --- 404 Page --- */
.notfound-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}
.notfound-page h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.notfound-page p {
  font-size: 1.25rem;
  color: var(--white-80);
  margin-bottom: 2rem;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24rem;
  width: calc(100% - 2rem);
}
.toast {
  background: hsl(0, 62%, 30%);
  border: 1px solid hsl(0, 62%, 40%);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  animation: toast-in .3s ease;
  position: relative;
}
.toast-title { font-weight: 600; margin-bottom: 0.25rem; }
.toast-desc { color: var(--white-80); }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(1rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(1rem); }
}
.toast.removing { animation: toast-out .3s ease forwards; }

/* --- Google Places Autocomplete Styling --- */
.pac-container {
  z-index: 300 !important;
  border-radius: var(--radius) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  background: var(--navy-light) !important;
  box-shadow: var(--shadow-luxury) !important;
  margin-top: 4px !important;
  font-family: var(--font) !important;
}
.pac-item {
  padding: 0.5rem 0.75rem !important;
  border-top: 1px solid rgba(255,255,255,.05) !important;
  color: var(--white-80) !important;
  font-size: 0.875rem !important;
  cursor: pointer !important;
}
.pac-item:hover, .pac-item-selected {
  background: var(--navy-lighter) !important;
}
.pac-item-query { color: var(--white) !important; font-weight: 500 !important; }
.pac-icon { display: none !important; }
.pac-logo::after { display: none !important; }
