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

:root {
  --navy: #152535;
  --navy-light: #1e3348;
  --sand: #f0e4cc;
  --sand-light: #f7f0e0;
  --gold: #c49a3c;
  --gold-light: #d9b45c;
  --teal: #1a8078;
  --teal-dark: #156b64;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(21, 37, 53, 0.55);
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(21, 37, 53, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.15);
}

.logo-coastal {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-auto {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* === Hero Viewport Wrapper === */
.hero-viewport {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
}

/* === Hero === */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

/* Hero background carousel */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(21, 37, 53, 0.7) 0%,
    rgba(21, 37, 53, 0.5) 50%,
    rgba(21, 37, 53, 0.75) 100%
  );
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vehicle showcase card in hero */
.hero-vehicle-showcase {
  margin: 0 auto 24px;
  height: 56px;
  position: relative;
  max-width: 400px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-vehicle-showcase.visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.showcase-card.active {
  opacity: 1;
  transform: translateY(0);
}

.showcase-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.showcase-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 24px 24px 50px;
  max-width: 800px;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 154, 60, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
}

.btn-sm:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.hero-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.badge-icon {
  font-size: 1.6rem;
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* === Reviews Ticker === */
.reviews-ticker {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 154, 60, 0.2);
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 60s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.ticker-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.ticker-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  white-space: nowrap;
}

.ticker-item cite {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-style: normal;
  white-space: nowrap;
  font-weight: 500;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Fleet === */
.fleet {
  background: var(--sand-light);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* === Image Carousel === */
.carousel {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.vehicle-card.featured .carousel {
  height: 100%;
  min-height: 320px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.carousel-slide.active {
  opacity: 1;
}

/* Carousel Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(21, 37, 53, 0.55);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(21, 37, 53, 0.85);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.85);
}

/* Hide arrows/dots on single-image carousels */
.carousel.single .carousel-btn,
.carousel.single .carousel-dots {
  display: none;
}

.vehicle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}

.vehicle-info {
  padding: 24px;
}

.vehicle-rating {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.vehicle-rating span {
  font-weight: 400;
  color: var(--gray-600);
  font-size: 0.8rem;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.vehicle-specs span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.vehicle-features span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: rgba(26, 128, 120, 0.08);
  padding: 3px 10px;
  border-radius: 50px;
}

.vehicle-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.vehicle-type {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vehicle-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-from {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.price-per {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.vehicle-note {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* === Why Us / Features === */
.why-us {
  background: var(--navy);
}

.why-us .section-label {
  color: var(--gold);
}

.why-us .section-header h2 {
  color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 60, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* === Concierge === */
.concierge {
  background: var(--sand-light);
}

.concierge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.concierge-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.concierge-text > p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.concierge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.concierge-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.concierge-list li strong {
  font-size: 1rem;
  color: var(--navy);
}

.concierge-list li span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.concierge-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concierge-img {
  height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.concierge-quote {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.concierge-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
}

.concierge-quote cite {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: normal;
}

/* === Packages === */
.packages {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.package-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.package-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.package-price {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.package-price span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.package-price small {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 400;
  margin-top: 2px;
}

/* === Parking Callout === */
.parking-callout {
  padding: 80px 0;
  background: var(--teal);
}

.callout-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.callout-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.callout-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 640px;
}

.callout-savings {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.savings-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.savings-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === Contact === */
.contact {
  background: var(--sand-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 64px;
}

/* === Footer === */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a,
.footer-links p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 64px;
    align-items: flex-start;
  }

  .hero-content {
    padding: 16px 20px 30px;
    width: 100%;
  }

  .nav-logo-img {
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-vehicle-showcase {
    margin-bottom: 16px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .vehicle-card.featured {
    grid-template-columns: 1fr;
  }

  .vehicle-card.featured .carousel {
    min-height: 220px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .concierge-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .callout-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Show carousel controls on mobile (no hover) */
  .carousel-btn {
    opacity: 0.7;
  }

  .carousel-dots {
    opacity: 1;
  }
}

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

.section-header,
.vehicle-card,
.feature-card,
.package-card,
.contact-card {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.section-header { animation-delay: 0.1s; }
.vehicle-card:nth-child(1) { animation-delay: 0.15s; }
.vehicle-card:nth-child(2) { animation-delay: 0.25s; }
.vehicle-card:nth-child(3) { animation-delay: 0.35s; }
.vehicle-card:nth-child(4) { animation-delay: 0.45s; }
.vehicle-card:nth-child(5) { animation-delay: 0.55s; }
.vehicle-card:nth-child(6) { animation-delay: 0.65s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
