/* =========================================
   VARIABLES & RESET
   ========================================= */
   :root {
  --primary-color: #000000;
  --secondary-color: #1a1a1a;
  --accent-color: #D4AF37;
  --accent-color-hover: #b5952f;
  --text-color: #ffffff;
  --text-muted: #cccccc;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* ✅ SINGLE FONT FOR ENTIRE SITE */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --transition: all 0.3s ease;
}

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* =========================================
     TYPOGRAPHY & UTILITIES
     ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-color);
}

  
  p {
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  
  .text-accent {
    color: var(--accent-color);
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
  }
  
  .section-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
  }
  
  /* =========================================
     BUTTONS
     ========================================= */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: var(--accent-color-hover);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
  }
  
  .btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
  }
  
  .btn-sm:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
  }
  
  .btn-block {
    display: block;
    width: 100%;
    text-align: center;
  }

  .btn-gold-block {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px;
    font-weight:800;
    border-radius: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: var(--transition);
  }

  .btn-gold-block:hover {
    background-color: var(--accent-color-hover);
    transform: translateY(-3px);
  }
  
  /* =========================================
     HEADER & NAVIGATION
     ========================================= */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
  }
  
  .header.scrolled {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.95);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
  }
  /* Logo Image Styling */
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .logo img {
    height: 35px;
  }
}
  .nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
  }
  
  .nav-link:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link.active::after {
    width: 100%;
  }
  
  .btn-nav {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
  }
  
  .btn-nav:hover {
    background-color: var(--accent-color-hover);
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
  
  /* =========================================
     HERO SECTION
     ========================================= */
/* ============================
   $5000 PREMIUM HERO
============================ */

.hero-premium {
    position: relative;
    height: 100vh;
    background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08), transparent 60%),
                #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-track {
    display: flex;
    transition: transform 1s cubic-bezier(.77,0,.18,1);
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-left {
    flex: 1;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
}

.hero-slide.active .hero-left {
    transform: translateY(0);
    opacity: 1;
}

.hero-left img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    max-width: 500px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* NAVIGATION */
.hero-nav {
    position: absolute;
    bottom: 50px;
    right: 60px;
}

.hero-nav span {
    font-size: 28px;
    color: #D4AF37;
    cursor: pointer;
    margin: 0 10px;
    transition: .3s ease;
}

.hero-nav span:hover {
    transform: scale(1.2);
}

/* DOTS */
.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    gap: 10px;
}

.hero-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: .3s ease;
}

.hero-dots span.active {
    background: #D4AF37;
    transform: scale(1.3);
}

/* Responsive */
/* =========================
   FINAL HERO MOBILE FIX
========================= */

@media (max-width: 768px) {

  .hero-premium {
      height: auto !important;
      min-height: auto !important;
      padding: 90px 0 50px 0;
      display: block;
  }

  .hero-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

  .hero-slide {
      flex-direction: column !important;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
      gap: 20px;
  }

  .hero-left {
      width: 100%;
      text-align: center;
  }

  .hero-left img {
      width: 85% !important;
      max-height: 240px !important;
      object-fit: contain;
      margin: 0 auto;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  }

  .hero-right {
      width: 100%;
      display: flex;
      justify-content: center;
  }

  .hero-glass {
      width: 100%;
      padding: 25px 20px !important;
      border-radius: 16px;
      text-align: center;
  }

  .hero-title {
      font-size: 1.7rem !important;
  }

  .hero-desc {
      font-size: 14px;
      line-height: 1.6;
  }

  .hero-dots {
      position: relative !important;
      left: auto !important;
      bottom: auto !important;
      margin-top: 15px;
      justify-content: center;
  }

  .hero-nav {
      display: none !important;
  }
}



  /* =========================================
     PAGE HEADER (Sub-pages)
     ========================================= */
  .page-header {
    height: 50vh;
    min-height: 350px;
    background: url('https://images.unsplash.com/photo-1622791905066-0fe6af17ad80?fm=jpg&q=80&w=1920&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
  }

  .page-header h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
  }

  .page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.8s;
  }

  .relative-z {
    position: relative;
    z-index: 2;
  }
  
  /* =========================================
     ABOUT SECTION
     ========================================= */
  .about {
    background-color: var(--primary-color);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
  }
  
  .feature-list {
    margin-top: 20px;
  }
  
  .feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
  }
  
  .feature-list i {
    color: var(--accent-color);
  }
  
  .about-image {
    position: relative;
  }
  
  .about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
  }
  
  /* =========================================
     SERVICES SECTION
     ========================================= */
  .services {
    background-color: var(--secondary-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
  }
  
  .icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
  }
  
  /* =========================================
     FLEET SECTION (HOME PAGE GRID)
     ========================================= */
  .fleet {
    background-color: var(--primary-color);
  }
  
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .fleet-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
  }
  
  .fleet-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
  }
  
  .fleet-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .fleet-card:hover .fleet-image img {
    transform: scale(1.05);
  }
  
  .fleet-details {
    padding: 25px;
  }
  
  .fleet-details h3 {
    color: var(--text-color);
    margin-bottom: 10px;
  }
  
  .fleet-specs {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
/* ===============================
   PREMIUM PICKUP SECTION
================================= */

.pickup-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, #1c1c1c 0%, #222121 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft Gold Glow */
.pickup-premium::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06),
    transparent 75%
  );
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content stays above glow */
.pickup-premium .container {
  position: relative;
  z-index: 2;
}

/* Section Heading */
.pickup-header h2 {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: #D4AF37;
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* City Pills Layout */
.pickup-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 50px;
}

.city-pill {
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  background: #D4AF37;   /* Permanent Yellow */
  color: #000000;        /* Black Text */
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: default;       /* Remove pointer feel */
  position: relative;
  z-index: 3;
  transition: none;      /* Remove animation */
}

/* Remove hover effect completely */
.city-pill:hover {
  background: #D4AF37;
  color: #000000;
  transform: none;
  box-shadow: none;
}

/* Bottom Highlight Text */
.pickup-highlight p {
  color: #cccccc;
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

  .pickup-premium {
    padding: 80px 0;
  }

  .pickup-header h2 {
    font-size: 2rem;
  }

  .pickup-wrapper {
    gap: 16px;
  }

  .city-pill {
    padding: 12px 20px;
    font-size: 14px;
  }
}
  
  /* =========================================
     CAR COLLECTION PAGE (SPLIT LAYOUT)
     ========================================= */
 /* .car-collection {
    background-color: var(--primary-color);
    padding: 60px 0;
  }

  .car-detail-card {
    display: flex;
    flex-direction: row;
    background-color: var(--secondary-color);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}


  .car-detail-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }

  .car-image-side {
    width: 50%;
    position: relative;
    overflow: hidden;
  }

  .car-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .car-detail-card:hover .car-image-side img {
    transform: scale(1.05);
  }

  .car-info-side {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .car-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
  }

  .car-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .car-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .car-specs-box {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--glass-bg);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
  }

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

  .spec-item i {
    color: var(--accent-color);
  }

  .car-description {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #aaaaaa;
  }

  @media (max-width: 900px) {
    .car-detail-card {
        flex-direction: column;
    }
    .car-image-side, .car-info-side {
        width: 100%;
    }
    .car-image-side {
        height: 250px;
    }
  }

  /* =========================================
     WHY CHOOSE US
     ========================================= */
  .why-choose {
    background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1622791905066-0fe6af17ad80?fm=jpg&q=80&w=1920&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
  
  .why-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .why-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
  }
  
  /* =========================================
     ROUTES SECTION
     ========================================= */
 /* .routes {
    background-color: var(--secondary-color);
  }
  
  .routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .route-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
  }
  
  .route-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
  }
  
  .route-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
  }
  
  .route-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
  }
  
  /* =========================================
     CONTACT / BOOKING
     ========================================= */
  .contact {
    background-color: var(--primary-color);
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .contact-info h2 {
    color: var(--text-color);
    margin-bottom: 20px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
  }
  
  .info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-color);
  }
  
  .booking-form-container {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
  }
  
  .booking-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-color);
    font-family: var(--font-body);
  }
  
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
  }
  
  /* =========================================
     TESTIMONIALS
     ========================================= */
  .testimonials {
    background-color: var(--secondary-color);
  }
  
  .testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }
  
  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    min-width: 300px;
    flex: 1;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    scroll-snap-align: start;
  }
  
  .review {
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .client-info {
    display: flex;
    flex-direction: column;
  }
  
  .client-name {
    font-weight: 700;
    color: var(--accent-color);
  }
  
  .client-loc {
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* =========================================
     FOOTER
     ========================================= */
  .footer {
    background-color: #0d0d0d;
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand h3 {
    color: var(--text-color);
  }
  .footer-brand h3 {
  color: var(--accent-color);
}
  .footer h3,
.footer h4 {
  color: var(--accent-color) !important;
}
  .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
  }
  
  .footer-links h4,
  .footer-contact h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
  }
  
  .footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* =========================================
     WHATSAPP FLOAT
     ========================================= */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
  }
  
  .whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #20b85a;
  }
  
  /* =========================================
     ANIMATIONS
     ========================================= */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
  }
  
  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* =========================================
     RESPONSIVE DESIGN
     ========================================= */
  @media (max-width: 900px) {
    .menu-toggle {
      display: flex;
      z-index: 1001;
    }
  
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background-color: var(--secondary-color);
      flex-direction: column;
      justify-content: center;
      transition: 0.4s ease;
      z-index: 1000;
      box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
  
    .nav-menu.active {
      right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
  }
  .tourist-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #111, #1a1a1a);
  color: #fff;
}

.tourist-section h2 {
  text-align: center;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
}

.tourist-section .subtitle {
  text-align: center;
  margin: 12px auto 50px;
  color: #ccc;
  max-width: 650px;
}

.tourist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tourist-card {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tourist-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tourist-card h3 {
  color: #D4AF37;
  padding: 15px 15px 5px;
  font-size: 20px;
}

.tourist-card p {
  padding: 0 15px 20px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.tourist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}
.image-wrapper {
  position: relative;
}

.distance-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #D4AF37;
  color: #000;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.fleet-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
}

.fleet-price{
    color:#D4AF37;
    font-weight:700;
    font-size:15px;
    background:rgba(212,175,55,0.1);
    padding:6px 12px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.3);
}
 
.fleet-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;

  padding-left:20px;
  padding-right:20px;
}

.fleet-card{
  background:#111;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
    margin:4px;
}

.fleet-image img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.fleet-details{
  padding:18px;
}

.fleet-desc{
  font-size:14px;
  color:#ccc;
  margin:6px 0;
}

.fleet-specs{
  font-size:13px;
  color:#D4AF37;
}

.fleet-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
}

.fleet-price{
  color:#D4AF37;
  font-weight:700;
  font-size:15px;
}

/* Responsive */
@media (max-width: 1000px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

.price-chart {
  background: linear-gradient(180deg, #0b0b0b, #121212);
}

.price-table-wrapper {
  overflow: hidden; /* desktop same */
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  color: #fff;
}

.price-table thead {
  background: #D4AF37;
  color: #000;
}

.price-table th,
.price-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-table tbody tr {
  transition: all 0.3s ease;
}

.price-table tbody tr:hover {
  background: rgba(212,175,55,0.08);
  transform: scale(1.01);
}

.price-table td:nth-child(3) {
  color: #D4AF37;
  font-weight: 700;
}

.price-note {
  margin-top: 20px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

/* Animation (UNCHANGED) */
.fade-up {
  animation: fadeUp 0.8s ease both;
}

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

/* ===============================
   MOBILE FIX ONLY
================================= */

@media(max-width:768px){

  .price-table-wrapper{
    overflow-x: auto;            /* enable scroll only on mobile */
    -webkit-overflow-scrolling: touch;
  }

  .price-table{
    min-width: 720px;            /* prevents table shrinking */
  }

  .price-table th,
  .price-table td {
    padding: 12px;
    font-size: 13px;
    white-space: nowrap;         /* prevents text breaking */
  }

}


.routes-image {
  background: #0b0b0b;
}

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

.route-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 14px;
}

.route-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-card-img:hover img {
  transform: scale(1.1);
}

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.route-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}

.route-overlay p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 8px;
}

.route-overlay span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
}

/* Animation */
.fade-up {
  animation: fadeUp 0.8s ease both;
}

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

/* Responsive */
@media (max-width: 1000px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) 
   {
  .routes-grid {
    grid-template-columns: 1fr;
  }
}
  
/* =========================
   STAGGER FADE-UP ANIMATION
========================= */

/* Initial hidden state */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

/* Show state */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect (optional but nice) */
.service-card {
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}

.custom-route-note {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  text-align: center;
}

.custom-route-note h3 {
  color: #D4AF37;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.custom-route-note p {
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.custom-route-note .btn-gold {
  display: inline-block;
  padding: 12px 28px;
  background: #D4AF37;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.custom-route-note .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

/* TOUR PACKAGES */
.packages-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.package-card{
  background:#111;
  border-radius:16px;
  overflow:hidden;
  transition:.4s ease;
}

.package-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.package-content{
  padding:20px;
}

.package-content h3{
  color:#fff;
  margin-bottom:6px;
}

.package-content p{
  color:#ccc;
  font-size:14px;
}

.package-content ul{
  margin:12px 0;
  padding:0;
  list-style:none;
}

.package-content ul li{
  font-size:13px;
  color:#ddd;
  margin-bottom:4px;
}

/* Custom Package */
.custom-package{
  background:linear-gradient(135deg,#111,#1a1a1a);
  text-align:center;
  border-top:1px solid rgba(212,175,55,.3);
   padding: 40px 0;
}

.custom-package h2{
  color:#D4AF37;
  margin-bottom:12px;
}
.custom-package p {
  margin-bottom: 24px;
}

.custom-package a {
  margin-top: 18px;
  display: inline-block;
}

/* Responsive */
@media(max-width:1100px){
  .packages-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .packages-grid{grid-template-columns:1fr;}
}

.tour-packages { padding: 80px 0; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.package-card {
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-content h3 { margin-bottom: 10px; }

.package-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.package-content ul li { margin-bottom: 6px; }

/* ZOOM IN ANIMATION */
.zoom-card {
  opacity: 0;
  transform: scale(0.85);
  transition: all .7s ease;
}

.zoom-card.show {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media(max-width:900px){
  .packages-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .packages-grid{grid-template-columns:1fr}
}


/* Ensure variables match your request */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #D4AF37;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Modal Styling */
.tour-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.tour-modal-content {
    background-color: var(--secondary-color);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid var(--accent-color);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    position: relative;
    font-family: var(--font-body);
}

.close-modal-x {
    position: absolute; top: 15px; right: 20px;
    color: var(--accent-color); font-size: 30px; cursor: pointer;
}

#modalDataContainer img {
    width: 100%; height: 250px; object-fit: cover; border-radius: 10px; margin-bottom: 20px;
}

.modal-whatsapp-btn {
    display: block;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.modal-whatsapp-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.btn-gold {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--accent-color);
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold:hover {
  background-color: var(--accent-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

.booking-form-container {
  padding: 0;           /* remove form padding */
  overflow: hidden;
}

.booking-form-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .booking-form-container iframe {
    min-height: 300px;
  }
}

/* =========================================
   TESTIMONIAL WITH PHOTO & RATING
========================================= */

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D4AF37;
}

.rating {
  margin-top: 5px;
}

.rating i {
  color: #D4AF37;
  font-size: 14px;
  margin-right: 2px;
}

.review {
  font-style: italic;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* ===============================
   FLEET CARD ALIGNMENT FIX
================================= */

.fleet-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  gap:12px;
}

.fleet-price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  background:rgba(212,175,55,0.12);
  border:1px solid rgba(212,175,55,0.4);
}

.fleet-footer .btn-sm{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 22px;
  border-radius:30px;
}

/* Make all cards equal height */
.fleet-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.fleet-details{
  display:flex;
  flex-direction:column;
  flex:1;
}

.fleet-footer{
  margin-top:auto;
}

.inline-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inline-bullet::before {
  content: "•";
  color: #D4AF37;
  font-size: 22px;
  line-height: 1;
}