    /* ─────────────────────────────────────────────
   CSS VARIABLES & RESET
───────────────────────────────────────────── */
    :root {
      --gold-light: #FFD700;
      --gold-mid: #F5B800;
      --gold-dark: #C8960C;
      --gold-deep: #8B6914;
      --black: #0A0A0A;
      --off-black: #111111;
      --dark-gray: #1A1A1A;
      --mid-gray: #2D2D2D;
      --white: #FFFFFF;
      --off-white: #FAF7F0;
      --cream: #FFF8E1;
      --text-light: rgba(255, 255, 255, 0.75);
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* LIGHT THEME */
    body.light {
      --bg: var(--off-white);
      --bg2: var(--cream);
      --surface: var(--white);
      --nav-bg: rgba(250, 247, 240, 0.97);
      --text: #1a1a1a;
      --text-muted: #555;
      --border: rgba(200, 150, 12, 0.2);
      --card-bg: var(--white);
      --hero-overlay: rgba(250, 247, 240, 0.55);
      --footer-bg: #1a1a1a;
    }

    /* DARK THEME */
    body.dark {
      --bg: #0D0D0D;
      --bg2: #111111;
      --surface: #181818;
      --nav-bg: rgba(10, 10, 10, 0.97);
      --text: #F5F0E8;
      --text-muted: rgba(255, 255, 255, 0.55);
      --border: rgba(245, 184, 0, 0.18);
      --card-bg: #181818;
      --hero-overlay: rgba(0, 0, 0, 0.55);
      --footer-bg: #060606;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

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

    /* ─────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg2);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold-dark);
      border-radius: 3px;
    }

    /* ─────────────────────────────────────────────
   PAGES (Now standalone)
───────────────────────────────────────────── */
    .page {
      display: block;
    }


    /* ─────────────────────────────────────────────
   NAVBAR & MOBILE NAV (Always Dark)
───────────────────────────────────────────── */
    .navbar,
    .mobile-nav {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 1000;
      background: linear-gradient(180deg, rgba(22, 22, 22, 0.88), rgba(10, 10, 10, 0.96)) !important;
      backdrop-filter: blur(20px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
      border-bottom: 1.5px solid rgba(245, 184, 0, 0.25) !important;
      border-top: 1px solid rgba(255, 255, 255, 0.05) !important; /* Subtle top highlight for glossy look */
      transition: background var(--transition);
    }

    .navbar {
      top: 0;
    }

    .mobile-nav {
      top: 72px;
      display: none;
      flex-direction: column;
      gap: 0;
      padding: 20px 24px;
    }

    .mobile-nav.open {
      display: flex;
    }

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

    /* ── LOGO ── */
    .nav-logo {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .nav-logo-img {
      height: 64px;
      width: auto;
      object-fit: contain;
    }

    /* Logo visibility: Always show the light-colored logo since navbar is always dark */
    .logo-light-bg {
      display: none !important;
      height: 64px;
    }

    .logo-dark-bg {
      display: block !important;
      height: 64px;
    }

    /* Footer logo still works independently */
    .footer-logo-wrap {
      margin-bottom: 25px;
    }

    .footer-logo-img {
      height: 68px;
      width: auto;
      display: block;
    }

    /* ── NAV LINKS (Enforce Light Colors) ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a,
    .mobile-nav a,
    .theme-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7) !important;
      /* Semi-transparent white */
      transition: color var(--transition);
      position: relative;
    }

    .nav-links a {
      padding-bottom: 4px;
    }

    .mobile-nav a {
      padding: 14px 0;
      border-bottom: 1.5px solid rgba(245, 184, 0, 0.1);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      transition: width var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active,
    .mobile-nav a:hover,
    .mobile-nav a.active {
      color: var(--gold-mid) !important;
    }

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

    .theme-label {
      font-size: 10px;
    }

    /* ── THEME + CTA ── */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .theme-toggle {
      width: 44px;
      height: 24px;
      border-radius: 12px;
      cursor: pointer;
      border: none;
      outline: none;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid var(--gold-dark);
      position: relative;
      transition: background var(--transition);
    }

    .theme-toggle::before {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      transition: transform var(--transition);
    }

    body.light .theme-toggle::before {
      transform: translateX(20px);
    }


    .btn-call {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
      color: var(--black);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 10px 22px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: opacity var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .btn-call:hover {
      opacity: 0.88;
      transform: translateY(-1px);
    }

    /* Hamburger and Mobile Actions */
    .nav-mobile-right {
      display: none;
    }

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

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--gold-mid);
      border-radius: 2px;
      transition: var(--transition);
      display: block;
    }

    .mobile-nav .btn-call {
      margin-top: 14px;
      display: inline-block;
      text-align: center;
    }

    /* ─────────────────────────────────────────────
   GOLD DIVIDER
───────────────────────────────────────────── */
    .gold-line {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);
    }

    /* ─────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────── */
    .section {
      padding: 90px 24px;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 10px;
    }

    body.dark .section-label {
      color: var(--gold-light);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 18px;
      color: var(--text);
    }

    .section-title span {
      background: linear-gradient(to right, var(--gold-dark) 20%, var(--gold-light) 40%, var(--white) 50%, var(--gold-light) 60%, var(--gold-dark) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textShine 4s linear infinite;
      display: inline-block;
    }

    @keyframes textShine {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: -200% center;
      }
    }

    .section-sub {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.8;
      margin-bottom: 50px;
    }

    /* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
      color: var(--black);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(200, 150, 12, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
      transition: all var(--transition);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(200, 150, 12, 0.4);
    }

    .btn-primary i,
    .btn-outline i {
      font-size: 14px;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      color: var(--gold-mid);
      border: 1.5px solid var(--gold-mid);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 15px 35px;
      border-radius: 12px;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-outline:hover {
      background: var(--gold-mid);
      color: var(--black);
    }

    /* ─────────────────────────────────────────────
   ██ HOME PAGE
───────────────────────────────────────────── */

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      height: auto;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 100px 0 60px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: var(--hero-overlay);
      z-index: 1;
    }

    /* Animated road/city bg */
    .hero-scene {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    body.dark .hero-scene {
      background: linear-gradient(180deg, #060606 0%, #0D0D0D 40%, #101008 70%, #0A0900 100%);
    }

    body.light .hero-scene {
      background: linear-gradient(180deg, #e8e0cc 0%, #f5f0e0 40%, #ede8d8 100%);
    }

    /* Stars (dark only) */
    .stars {
      position: absolute;
      inset: 0;
    }

    .star {
      position: absolute;
      border-radius: 50%;
      background: white;
      opacity: 0;
      animation: twinkle 3s infinite;
    }

    body.light .star {
      display: none;
    }

    @keyframes twinkle {

      0%,
      100% {
        opacity: 0;
        transform: scale(0.8);
      }

      50% {
        opacity: 0.7;
        transform: scale(1.2);
      }
    }

    /* Road */
    .road {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 10%;
    }

    body.dark .road {
      background: linear-gradient(180deg, #1a1a10 0%, #111108 100%);
    }

    body.light .road {
      background: linear-gradient(180deg, #c8c0a8 0%, #b8b098 100%);
    }

    .road::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 0;
      right: 0;
      height: 3px;
      background: repeating-linear-gradient(90deg, var(--gold-mid) 0, var(--gold-mid) 60px, transparent 60px, transparent 120px);
      animation: roadMove 1s linear infinite;
    }

    @keyframes roadMove {
      from {
        background-position: 0
      }

      to {
        background-position: 120px
      }
    }

    /* City silhouette */
    .city-silhouette {
      position: absolute;
      bottom: 10%;
      left: 0;
      right: 0;
      height: 160px;
    }

    body.dark .city-silhouette {
      opacity: 0.5;
    }

    body.light .city-silhouette {
      opacity: 0.15;
    }

    /* The animated car */
    .animated-car {
      position: absolute;
      bottom: calc(10% - 18px);
      z-index: 10;
      animation: carDrive 8s linear infinite;
      width: 200px;
      transform: scaleX(-1);
    }

    @keyframes wheelRotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(-360deg);
      }
    }

    .wheel-rotate {
      transform-origin: center;
      animation: wheelRotate 1s linear infinite;
    }

    @keyframes carDrive {
      0% {
        left: -280px;
      }

      100% {
        left: 110%;
      }
    }

    /* Headlight beam */
    .animated-car::before {
      content: '';
      position: absolute;
      right: 100%;
      top: 30%;
      width: 200px;
      height: 30px;
      background: linear-gradient(90deg, transparent, rgba(255, 220, 50, 0.12) 50%, rgba(255, 220, 50, 0.05));
      transform: skewY(-4deg);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }


    .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold-mid);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--gold-mid);
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 8vw, 54px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--text);
    }

    .hero-h1 .gold {
      background: linear-gradient(to right, var(--gold-dark) 20%, var(--gold-light) 40%, var(--white) 50%, var(--gold-light) 60%, var(--gold-dark) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textShine 4s linear infinite;
      display: inline-block;
    }

    .hero-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 32px;
      max-width: 500px;
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 36px;
    }

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

    .stat-num {
      font-family: 'DM Sans', sans-serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--gold-mid);
      line-height: 1;
    }

    .stat-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ── BOOKING CARD ── */
    .booking-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 2;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    body.dark .booking-card {
      background: rgba(24, 24, 24, 0.85);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 184, 0, 0.1);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
    }

    .booking-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.2;
      color: var(--gold-mid);
      margin-bottom: 6px;
    }

    .booking-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.4;
    }

    /* Trip type tabs */
    .trip-tabs {
      display: flex;
      background: var(--bg2);
      padding: 4px;
      border-radius: 12px;
      gap: 4px;
      margin-bottom: 24px;
      border: 1px solid var(--border);
    }

    .trip-tab {
      flex: 1;
      padding: 10px 4px;
      border-radius: 8px;
      border: none;
      background: transparent;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: all var(--transition);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .trip-tab i {
      font-size: 14px;
      margin-bottom: 2px;
    }

    .trip-tab.active {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      color: var(--black);
      box-shadow: 0 4px 12px rgba(200, 150, 12, 0.25);
    }

    /* Form fields */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

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

    .form-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .form-input {
      background: var(--bg2);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      width: 100%;
    }

    .form-input:focus {
      border-color: var(--gold-dark);
      box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.12);
    }

    .form-input option {
      background: var(--bg2);
    }

    .book-btn {
      width: 100%;
      margin-top: 16px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      color: var(--black);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .book-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(200, 150, 12, 0.45);
    }

    /* ── WHY US ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .why-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 24px;
      text-align: center;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border-color: var(--gold-dark);
    }

    .why-card:hover::before {
      transform: scaleX(1);
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin: 0 auto 18px;
      background: rgba(200, 150, 12, 0.1);
      border: 1.5px solid rgba(200, 150, 12, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .why-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .why-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── SERVICES STRIP ── */
    .services-strip {
      background: var(--bg2);
      padding: 80px 24px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .service-img {
      height: 190px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .service-card:hover .service-img-inner {
      transform: scale(1.06);
    }

    /* Placeholder gradients for service images */
    .svc-bg-1 {
      background: url('outstation_taxi.png') no-repeat center/cover;
    }

    .svc-bg-2 {
      background: url('airport_transfer.png') no-repeat center/cover;
    }

    .svc-bg-3 {
      background: url('local_city_rides.png') no-repeat center/cover;
    }

    .svc-bg-4 {
      background: url('car_rental_madurai.png') no-repeat center/cover;
    }

    .svc-bg-5 {
      background: url('pilgrimage_tours.png') no-repeat center/cover;
    }

    .svc-bg-6 {
      background: url('group_tour.png') no-repeat center/cover;
    }

    .svc-bg-7 {
      background: url('wedding_car_service.png') no-repeat center/cover;
    }

    .svc-bg-8 {
      background: url('corporate_travel_service.png') no-repeat center/cover;
    }

    .service-icon-big {
      font-size: 52px;
      position: relative;
      z-index: 1;
    }

    .service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
    }

    .service-body {
      padding: 18px 20px;
    }

    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .service-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .service-price {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-mid);
      margin-top: 8px;
      letter-spacing: 1px;
    }

    /* ── TOUR PACKAGES ── */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .package-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .package-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    }

    .package-img {
      height: 220px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    /* Package backgrounds */
    .pkg-bg-1 {
      background: linear-gradient(135deg, #1a1508 0%, #2d2510 40%, #c8960c22 100%);
    }

    .pkg-bg-2 {
      background: linear-gradient(135deg, #08100a 0%, #0d1f10 40%, #00802222 100%);
    }

    .pkg-bg-3 {
      background: linear-gradient(135deg, #0a0810 0%, #160e20 40%, #6020c822 100%);
    }

    .pkg-bg-4 {
      background: linear-gradient(135deg, #100808 0%, #200d0d 40%, #c8200822 100%);
    }

    .pkg-bg-5 {
      background: linear-gradient(135deg, #080a10 0%, #0d1020 40%, #2080c822 100%);
    }

    .pkg-bg-6 {
      background: linear-gradient(135deg, #100a08 0%, #201510 40%, #c8600822 100%);
    }

    .pkg-scene {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 70px;
      position: relative;
      transition: transform 0.6s ease;
    }

    .package-card:hover .pkg-scene {
      transform: scale(1.05);
    }

    .pkg-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      color: var(--black);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .package-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .pkg-dest {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 4px;
    }

    .pkg-subtitle {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 12px;
    }

    body.dark .pkg-subtitle {
      color: var(--gold-light);
    }

    .pkg-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .pkg-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .pkg-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .pkg-meta-item i {
      color: var(--gold-mid);
      font-size: 12px;
    }

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

    @media (max-width: 768px) {
      .pkg-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
      }

      .pkg-footer .btn-primary {
        width: 100%;
        margin-top: 5px;
      }

      .pkg-price {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
      }
    }

    .pkg-price-label {
      font-size: 10px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 1px;
    }

    .pkg-price-amount {
      font-family: 'DM Sans', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--gold-mid);
    }

    .pkg-price-per {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ── TESTIMONIALS ── */
    .testimonials-bg {
      background: var(--bg2);
      padding: 80px 24px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      position: relative;
    }

    .testi-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      line-height: 1;
      color: var(--gold-mid);
      opacity: 0.15;
      position: absolute;
      top: 10px;
      left: 20px;
    }

    .testi-stars {
      color: var(--gold-mid);
      font-size: 14px;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }

    .testi-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 18px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 900;
      color: var(--black);
    }

    .testi-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
    }

    .testi-loc {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-dark) 40%, var(--gold-mid) 70%, var(--gold-light) 100%);
      padding: 70px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0, 0, 0, 0.03) 30px, rgba(0, 0, 0, 0.03) 60px);
    }

    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 4vw, 42px);
      font-weight: 900;
      color: var(--black);
      margin-bottom: 14px;
      position: relative;
    }

    .cta-band p {
      font-size: 15px;
      color: rgba(0, 0, 0, 0.65);
      margin-bottom: 28px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    .cta-band .btn-dark {
      background: var(--black);
      color: var(--gold-light);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 15px 36px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      gap: 10px;
      align-items: center;
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }

    .cta-band .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    /* ─────────────────────────────────────────────
   ██ ABOUT PAGE
───────────────────────────────────────────── */
    .page-hero {
      padding-top: 72px;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-dark) 50%, #1a1200 100%);
      opacity: 0.15;
    }

    body.dark .page-hero-bg {
      opacity: 0.25;
    }

    .page-hero-content {
      position: relative;
      z-index: 1;
      padding: 60px 24px;
    }

    .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 5vw, 56px);
      font-weight: 900;
      color: var(--gold-mid);
      margin-bottom: 12px;
    }

    .page-hero-content p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 500px;
      margin: 0 auto;
    }

    .breadcrumb {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .breadcrumb span {
      color: var(--gold-mid);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      height: 480px;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-visual-car {
      display: none;
    }

    .about-badge-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .about-badge {
      padding: 8px 16px;
      border-radius: 6px;
      background: rgba(200, 150, 12, 0.1);
      border: 1px solid rgba(200, 150, 12, 0.25);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-mid);
    }

    .about-story {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 16px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .value-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
      border-left: 3px solid var(--gold-mid);
    }

    .value-title {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .value-text {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .team-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      transition: transform var(--transition);
    }

    .team-card:hover {
      transform: translateY(-4px);
    }

    .team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

    .team-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-mid);
    }

    /* ─────────────────────────────────────────────
   ██ SERVICES PAGE
───────────────────────────────────────────── */
    .services-full-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
    }

    .svc-full-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .svc-full-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    }

    .svc-full-head {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
      position: relative;
    }

    .svc-full-body {
      padding: 24px;
    }

    .svc-full-name {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 8px;
    }

    .svc-full-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .svc-features {
      list-style: none;
      margin-bottom: 18px;
    }

    .svc-features li {
      font-size: 12px;
      color: var(--text-muted);
      padding: 5px 0;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .svc-features li::before {
      content: '✦';
      color: var(--gold-mid);
      font-size: 10px;
      flex-shrink: 0;
    }

    .fare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 30px;
    }

    .fare-table th {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
      color: var(--black);
      font-family: 'Playfair Display', serif;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 12px 16px;
      text-align: left;
    }

    .fare-table td {
      padding: 12px 16px;
      font-size: 13px;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }

    .fare-table tr:hover td {
      background: rgba(200, 150, 12, 0.05);
      color: var(--text);
    }

    /* ─────────────────────────────────────────────
   ██ CONTACT PAGE
───────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }

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

    .contact-info-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--gold-mid);
      margin-bottom: 24px;
    }

    .contact-item2 {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 22px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--border);
    }

    .contact-item2:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .c-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(200, 150, 12, 0.1);
      border: 1px solid rgba(200, 150, 12, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-mid);
      font-size: 18px;
    }

    .c-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .c-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.6;
    }

    .c-value a {
      color: var(--gold-mid);
    }

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

    .contact-form-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 24px;
    }

    .cf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .cf-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cf-field.full {
      grid-column: 1/-1;
    }

    .cf-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .cf-input,
    .cf-textarea,
    .cf-select {
      background: var(--bg2);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      outline: none;
      transition: border-color var(--transition);
      width: 100%;
    }

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

    .cf-input:focus,
    .cf-textarea:focus,
    .cf-select:focus {
      border-color: var(--gold-dark);
    }

    .cf-select option {
      background: var(--bg2);
    }

    .contact-bottom-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      margin-top: 60px;
      align-items: start;
    }

    .map-embed {
      margin-top: 0; /* Reset margin-top since it's now in a grid */
      border-radius: 16px;
      overflow: hidden;
      border: 1.5px solid var(--border);
      height: 480px;
      position: relative;
      background: var(--card-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .map-placeholder {
      text-align: center;
      color: var(--text-muted);
      padding: 30px;
    }

    .map-placeholder i {
      font-size: 48px;
      color: var(--gold-mid);
      margin-bottom: 12px;
    }

    .map-placeholder p {
      font-size: 14px;
    }

    .map-placeholder a:not(.btn-primary) {
      color: var(--gold-mid);
      font-weight: 700;
    }

    /* FAQ SECTION */
    .faq-card {
      background: var(--card-bg);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .faq-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .faq-card h3 i {
      color: var(--gold-mid);
      font-size: 20px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      border-bottom: 1.5px solid var(--border);
      padding-bottom: 16px;
    }

    .faq-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .faq-question {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color var(--transition);
      user-select: none;
    }

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

    .faq-question::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 10px;
      transition: transform var(--transition);
      color: var(--gold-mid);
    }

    .faq-item.active .faq-question::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-top: 10px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), margin 0.4s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px; /* Large enough for content */
      transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
    }

    @media (max-width: 1024px) {
      .contact-bottom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .map-embed {
        height: 350px;
      }
    }

    /* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
    footer {
      background: var(--footer-bg);
      border-top: 1px solid rgba(200, 150, 12, 0.15);
      padding: 60px 24px 30px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .footer-brand .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--gold-mid);
      margin-bottom: 4px;
    }

    .footer-brand .brand-sub {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 280px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(200, 150, 12, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }

    .social-btn:hover {
      background: rgba(200, 150, 12, 0.15);
      color: var(--gold-mid);
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-mid);
      margin-bottom: 18px;
    }

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

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

    .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      transition: color var(--transition);
    }

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

    .footer-contact-item {
      margin-bottom: 12px;
    }

    .footer-contact-item a {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      text-decoration: none;
      color: inherit;
      width: 100%;
      transition: color var(--transition);
    }

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

    .footer-contact-item i {
      color: var(--gold-mid);
      font-size: 13px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .footer-contact-item span {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
      transition: color var(--transition);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-bottom .tagline {
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      color: var(--gold-dark);
    }

    .footer-bottom .tagline a {
      color: inherit;
      transition: color var(--transition);
    }

    .footer-bottom .tagline a:hover {
      color: var(--gold-mid);
    }

    /* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─────────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      animation: waPulse 2s infinite;
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5)
      }

      50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8)
      }
    }

    /* ─────────────────────────────────────────────
   RESPONSIVE — TABLET & MOBILE
───────────────────────────────────────────── */
    @media (max-width:1024px) {
      .hero {
        padding: 120px 0 80px;
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .booking-card {
        max-width: 550px;
        margin: 0 auto;
      }

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

      .about-visual {
        height: 280px;
      }

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

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

    @media (max-width:768px) {
      .navbar {
        height: 72px;
      }

      .nav-inner {
        height: 72px;
        padding: 0 12px 0 4px !important; /* Minimal left padding to maximize space for logo */
      }

      .navbar .logo-dark-bg, 
      .navbar .logo-light-bg {
        height: 52px !important;
        max-width: 180px;
      }

      .navbar .logo-dark-bg {
        display: block !important;
      }

      .navbar .logo-light-bg {
        display: none !important;
      }

      .mobile-nav {
        top: 72px;
      }

      .nav-links {
        display: none;
      }

      .nav-right {
        display: none;
      }

      .nav-mobile-right {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .mobile-theme-label {
        display: block !important;
        font-size: 9px;
        color: rgba(255, 255, 255, 0.6) !important;
      }

      .nav-mobile-right .theme-toggle {
        display: block;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        padding: 100px 0 60px;
      }

      .hero-content {
        text-align: center;
      }

      .hero-eyebrow {
        justify-content: center;
      }

      .hero-desc {
        margin: 0 auto 30px;
        font-size: 14px;
      }

      .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }

      .hero-btns .btn-primary,
      .hero-btns .btn-outline,
      .cta-band .btn-dark {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
      }

      .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }

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

      .trip-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        background: transparent;
        border: none;
        padding: 0;
      }

      .trip-tab {
        background: var(--bg2);
        border: 1px solid var(--border);
        padding: 12px 8px;
        font-size: 10px;
      }

      .trip-tab.active {
        border-color: transparent;
      }

      .cf-grid,
      .values-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

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

      .section {
        padding: 70px 20px;
      }

      .animated-car {
        width: 120px;
      }

      .stat-num {
        font-size: 24px;
      }

      .mobile-bottom-nav {
        display: flex;
      }

      body {
        padding-bottom: 90px;
      }

      .wa-float {
        display: flex !important;
        bottom: 85px !important;
        right: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
      }
    }

    @media (max-width:480px) {
      .navbar .logo-dark-bg {
        height: 52px !important;
        max-width: 180px;
        display: block !important;
      }

      .navbar .logo-light-bg {
        display: none !important;
      }

      .hero {
        padding: 90px 0 50px;
      }

      .hero-h1 {
        font-size: 32px;
        line-height: 1.2;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }

      .hero-content {
        padding: 0 15px;
      }

      .booking-card {
        padding: 28px 18px;
        border-radius: 18px;
        width: 100%;
        max-width: none;
      }

      .form-grid {
        gap: 16px;
      }

      .form-field {
        gap: 6px;
      }

      .form-label {
        text-align: left;
        font-size: 9px;
      }

      .form-input {
        padding: 12px 14px;
        font-size: 14px;
        /* Better for mobile keyboards */
      }

      .book-btn {
        margin-top: 20px;
        padding: 16px;
        font-size: 14px;
      }

      .trip-tab {
        padding: 10px 5px;
        letter-spacing: 0.5px;
      }

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

      .fare-table {
        font-size: 11px;
      }

      .fare-table th,
      .fare-table td {
        padding: 8px 6px;
      }
    }

    /* ─────────────────────────────────────────────
       MOBILE BOTTOM NAV
    ───────────────────────────────────────────── */
    .mobile-bottom-nav {
      position: fixed;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 94%;
      max-width: 420px;
      height: 64px;
      background: var(--nav-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 32px;
      z-index: 2000;
      display: none;
      /* Hidden on desktop */
      justify-content: space-around;
      align-items: center;
      padding: 0 10px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    body.light .mobile-bottom-nav {
      box-shadow: 0 10px 30px rgba(200, 150, 12, 0.2);
    }

    .mobile-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex: 1;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      gap: 3px;
      transition: color 0.3s ease;
      position: relative;
    }

    .mobile-nav-item i {
      font-size: 16px;
    }

    .mobile-nav-item.active {
      color: var(--gold-mid);
    }

    .mobile-nav-item.active::before {
      content: '';
      position: absolute;
      top: -6px;
      width: 4px;
      height: 4px;
      background: var(--gold-mid);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--gold-mid), 0 0 4px var(--gold-mid);
    }

    /* Center Call Button */
    .mobile-nav-center {
      background: linear-gradient(135deg, var(--gold-mid), var(--gold-light), var(--white));
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -36px;
      border: 6px solid var(--bg);
      box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45), 0 0 15px rgba(245, 184, 0, 0.2);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      color: var(--black) !important;
      animation: pulseGlow 3s infinite;
    }

    @keyframes pulseGlow {

      0%,
      100% {
        box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
        transform: scale(1) translateY(0);
      }

      50% {
        box-shadow: 0 6px 30px rgba(245, 184, 0, 0.6);
        transform: scale(1.05) translateY(-2px);
      }
    }

    .mobile-nav-center i {
      font-size: 22px !important;
      color: var(--black) !important;
    }

    @media (max-width: 768px) {
      .mobile-bottom-nav {
        display: flex;
      }

      body {
        padding-bottom: 90px;
      }

      .wa-float {
        display: flex !important;
        bottom: 85px !important;
        right: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
      }
    }


    /* ─────────────────────────────────────────────
   TABLET (iPad) specific tweaks
───────────────────────────────────────────── */
    @media (min-width:768px) and (max-width:1024px) {
      .hero-h1 {
        font-size: 40px;
      }

      .packages-grid,
      .services-full-grid,
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ─────────────────────────────────────────────
    REVEAL ANIMATIONS
    ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─────────────────────────────────────────────
    FLEET SECTION
    ───────────────────────────────────────────── */
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 40px;
    }

    .fleet-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: all var(--transition);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .fleet-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(200, 150, 12, 0.15);
      border-color: var(--gold-mid);
    }

    .fleet-img {
      height: 240px;
      width: 100%;
      padding: 30px;
      padding-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--bg2), var(--surface));
      position: relative;
    }

    .fleet-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
      transition: transform var(--transition);
    }

    .fleet-card:hover .fleet-img img {
      transform: scale(1.08) translateY(-5px);
    }

    .fleet-body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .fleet-name {
      font-size: 22px;
      font-weight: 800;
      color: var(--gold-mid);
      margin-bottom: 18px;
      font-family: 'Playfair Display', serif;
      text-align: center;
    }

    .fleet-details {
      margin-bottom: 24px;
      font-size: 13.5px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    .fleet-details p {
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed var(--border);
      padding-bottom: 6px;
    }

    .fleet-details p span {
      color: var(--text-muted);
    }

    .fleet-details p strong {
      color: var(--text);
      font-weight: 700;
    }

    .fleet-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
    }

    .fleet-btn-view {
      flex: 1;
      background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
      color: var(--black);
      padding: 14px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      transition: all var(--transition);
      box-shadow: 0 4px 12px rgba(200, 150, 12, 0.2);
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .fleet-btn-view:hover {
      background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200, 150, 12, 0.4);
    }

    .fleet-actions {
      display: flex;
      gap: 10px;
    }

    .fleet-icon-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all var(--transition);
      color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .fleet-icon-btn.call {
      background: #0056b3;
    }

    .fleet-icon-btn.whatsapp {
      background: #25d366;
    }

    .fleet-icon-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 992px) {
      .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .fleet-img {
        height: 200px;
      }
    }

    @media (max-width: 600px) {
      .fleet-grid {
        grid-template-columns: 1fr;
      }
      .fleet-img {
        height: 180px;
        padding: 20px;
      }
      .fleet-name {
        font-size: 20px;
      }
    }

    /* ─────────────────────────────────────────────
    FLEET MODAL / POPUP
    ───────────────────────────────────────────── */
    .fleet-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 24px;
    }

    .fleet-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .fleet-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .fleet-modal-container {
      position: relative;
      background: var(--surface);
      width: 100%;
      max-width: 480px;
      border-radius: 20px;
      padding: 22px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
      border: 1px solid var(--border);
      transform: translateY(20px) scale(0.98);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fleet-modal.active .fleet-modal-container {
      transform: translateY(0) scale(1);
    }

    .close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 28px;
      height: 28px;
      background: var(--bg2);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--text);
      cursor: pointer;
      transition: all var(--transition);
      z-index: 10;
    }

    .close-modal:hover {
      background: var(--gold-mid);
      color: var(--black);
      transform: rotate(90deg);
    }

    .modal-flex {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .modal-info {
      width: 100%;
    }

    .modal-image {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--bg2);
      padding: 12px;
      border-radius: 12px;
      margin-top: 5px;
    }

    .modal-image img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 130px;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
      display: block;
    }

    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 12px;
      text-align: center;
    }

    .modal-section {
      margin-bottom: 12px;
    }

    .modal-section h3 {
      font-size: 11px;
      font-weight: 800;
      color: var(--gold-mid);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border-left: 2.5px solid var(--gold-mid);
      padding-left: 8px;
    }

    .modal-section p {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dashed var(--border);
      padding: 5px 0;
      font-size: 12px;
    }

    .modal-section span {
      color: var(--text-muted);
    }

    .modal-section strong {
      color: var(--text);
      font-weight: 700;
    }

    .modal-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 15px;
    }

    .modal-btns .btn-primary, .modal-btns .btn-whatsapp {
      padding: 10px 15px;
      font-size: 11.5px;
      border-radius: 8px;
      width: 100%;
      justify-content: center;
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25d366;
      color: white;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-whatsapp:hover {
      background: #1eb954;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    }

    @media (max-width: 600px) {
      .fleet-modal-container {
        padding: 25px 20px;
        max-width: 95%;
      }
      .modal-btns {
        grid-template-columns: 1fr;
      }
      .modal-title {
        font-size: 22px;
      }
      .modal-image img {
        max-width: 220px;
      }
    }