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

:root {
  --gold: #C9A96E;
  --gold-light: #e8d5a3;
  --gold-dark: #a8884a;
  --dark: #0a0a1a;
  --dark-2: #12122a;
  --dark-3: #1a1a3e;
  --text: #e8e6f0;
  --text-muted: #9895b0;
  --text-dark: #1a1a2e;
  --card-bg: #14142e;
  --card-border: #1e1e42;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.highlight {
  color: var(--gold);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #fff;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
}

.logo-highlight {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  opacity: 0.9 !important;
  color: var(--dark) !important;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, rgba(10,10,26,0.3) 0%, var(--dark) 100%);
  z-index: 1;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Crysta Slider ===== */
.crysta-slider-section {
  padding: 80px 0;
  background: var(--dark-2);
  overflow: hidden;
}

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

.slider-track {
  position: relative;
  min-height: 460px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 60px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slide-content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.slide-badge {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.slide-content h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.slide-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.slide-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.slide-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slide-features i {
  color: var(--gold);
  font-size: 1rem;
}

.slide-visual {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.slide-visual i {
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.15;
  position: relative;
  z-index: 2;
}

.visual-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.1);
  animation: ringPulse 3s ease-in-out infinite;
}

.visual-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.07);
}

.visual-ring::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.04);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: rgba(10, 10, 26, 0.8);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
}

.slider-arrow-left { left: 4px; }
.slider-arrow-right { right: 4px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
}

.dot:hover {
  background: rgba(201, 169, 110, 0.5);
}

@media (max-width: 900px) {
  .slider-slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    min-height: 500px;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-features {
    justify-content: center;
  }

  .slide-visual {
    width: 200px;
    height: 200px;
  }

  .slide-visual i {
    font-size: 6rem;
  }

  .visual-ring {
    width: 180px;
    height: 180px;
  }

  .visual-ring::before {
    inset: 20px;
  }

  .visual-ring::after {
    inset: 40px;
  }
}

@media (max-width: 480px) {
  .slider-slide {
    padding: 32px 20px;
    min-height: 440px;
  }

  .slide-content h2 {
    font-size: 1.6rem;
  }

  .slide-visual {
    width: 140px;
    height: 140px;
  }

  .slide-visual i {
    font-size: 4rem;
  }

  .visual-ring {
    width: 120px;
    height: 120px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ===== About ===== */
.about {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow);
}

.about-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
}

.about-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Vehicles ===== */
.vehicles {
  background: var(--dark);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow);
}

.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 169, 110, 0.2);
}

.vehicle-info {
  padding: 28px;
}

.vehicle-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

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

.vehicle-features span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-features i {
  color: var(--gold);
}

.vehicle-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

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

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  padding: 32px 28px 16px;
  border-bottom: 1px solid var(--card-border);
}

.package-header h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}

.package-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.package-body {
  padding: 20px 28px;
  flex: 1;
}

.package-body ul {
  list-style: none;
}

.package-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 0;
}

.package-body i {
  color: var(--gold);
}

.package-footer {
  padding: 20px 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.outstation-card {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.outstation-content h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}

.outstation-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.outstation-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.outstation-content small {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ===== Services ===== */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Promise / Testimonial ===== */
.promise {
  background: var(--dark-2);
  text-align: center;
}

.promise-content {
  max-width: 800px;
  margin: 0 auto;
}

.promise-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.promise blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
}

.promise-motto {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.promise-vision {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-size: 1.05rem;
  color: #fff;
}

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

.contact-cta {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  text-align: center;
}

.contact-cta p {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.contact-cta strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.contact-quick {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.contact-quick h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.quick-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quick-list i {
  color: var(--gold);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-tagline {
  font-style: italic;
  margin-top: 12px;
  color: var(--text-muted);
  opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--gold);
}

.footer-contact a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid rgba(201, 169, 110, 0.1);
  }

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

  .hamburger {
    display: flex;
  }

  .hero h1 { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.3rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-header h2 { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-list { grid-template-columns: 1fr; }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-8px);
  }

  .promise blockquote {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
}
