

    :root {
    --blue: #0f3d7a;
    --blue-mid: #1a5ba8;
    --blue-light: #e8f1fb;
    --orange: #e85d04;
    --orange-light: #fff4ee;
    --orange-dark: #c44d00;
    --gold: #f4a614;
    --white: #ffffff;
    --gray-50: #f9f9f7;
    --gray-100: #f0efe9;
    --gray-200: #d8d6cd;
    --gray-500: #7a7870;
    --gray-700: #3d3c38;
    --gray-900: #1a1917;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15,61,122,0.10);
    --shadow-lg: 0 8px 40px rgba(15,61,122,0.15);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--gray-900); background: var(--white); overflow-x: hidden; }
  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: var(--blue); transition: box-shadow 0.3s; }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 68px; max-width: 1160px; margin: 0 auto; }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo-icon { width: 42px; height: 42px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 800; color: var(--white); font-size: 18px; letter-spacing: -1px; flex-shrink: 0; }
  .nav-logo-text { color: var(--white); }
  .nav-logo-text span:first-child { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; line-height: 1.1; }
  .nav-logo-text span:last-child { display: block; font-size: 10px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 1px; }
  .nav-links { display: flex; gap: 4px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; padding: 8px 13px; border-radius: 6px; transition: background 0.2s, color 0.2s; }
  .nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
  .nav-cta { background: var(--orange) !important; color: var(--white) !important; border-radius: 8px !important; padding: 8px 18px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--orange-dark) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
  .mobile-menu { display: none; background: var(--blue); padding: 12px 24px 20px; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; color: rgba(255,255,255,0.85); padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 15px; }
  .mobile-menu a:last-child { border-bottom: none; }

  .hero { min-height: 100vh; background: var(--blue); position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 68px; }
  .hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(232,93,4,0.18) 0%, transparent 55%), radial-gradient(circle at 80% 20%, rgba(26,91,168,0.5) 0%, transparent 50%); }
  .hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 48px 48px; }
  .hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 60px 24px; max-width: 1160px; margin: 0 auto; width: 100%; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,4,0.2); border: 1px solid rgba(232,93,4,0.4); border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-badge span { font-size: 12px; color: #ffb380; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
  .hero-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
  .hero h1 { font-size: clamp(38px, 5vw, 60px); color: var(--white); line-height: 1.08; margin-bottom: 22px; }
  .hero h1 em { color: var(--gold); font-style: normal; }
  .hero-sub { font-size: 16px; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 440px; margin-bottom: 36px; }
  .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--orange); color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); padding: 13px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; transition: background 0.2s; display: inline-block; }
  .btn-outline:hover { background: rgba(255,255,255,0.08); }
  .hero-cities { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
  .city-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 500; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 20px; transition: background 0.2s, transform 0.2s; animation: slideUp 0.5s ease both; }
  .hero-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-3px); }
  .hero-card:nth-child(1){animation-delay:0.1s} .hero-card:nth-child(2){animation-delay:0.2s} .hero-card:nth-child(3){animation-delay:0.3s;margin-top:20px} .hero-card:nth-child(4){animation-delay:0.4s;margin-top:20px}
  @keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .hero-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
  .hero-card-icon svg { width: 22px; height: 22px; fill: var(--white); }
  .hero-card h4 { font-family: 'DM Sans',sans-serif; font-weight: 600; font-size: 14px; color: var(--white); margin-bottom: 4px; }
  .hero-card p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
  .hero-stats { display: flex; gap: 28px; margin-top: 32px; }
  .hero-stat .num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); }
  .hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

  .marquee-bar { background: var(--orange); padding: 12px 0; overflow: hidden; }
  .marquee-track { display: flex; gap: 40px; animation: marquee 28s linear infinite; white-space: nowrap; }
  .marquee-track span { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.3px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .marquee-track span::before { content: '✦'; font-size: 10px; }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  section { padding: 88px 0; }
  .section-label { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); border-radius: 100px; padding: 5px 14px; margin-bottom: 14px; }
  .section-label span { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; }
  .section-title { font-size: clamp(28px, 4vw, 40px); color: var(--blue); margin-bottom: 14px; }
  .section-sub { font-size: 16px; color: var(--gray-500); max-width: 520px; line-height: 1.7; }

  .about { background: var(--gray-50); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-img-wrap { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); border-radius: 20px; padding: 36px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
  .about-float-card { position: absolute; bottom: -20px; right: -20px; background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
  .about-float-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .about-float-icon svg { width: 20px; height: 20px; fill: var(--blue); }
  .about-float-text .num { font-family: 'Playfair Display',serif; font-size: 20px; font-weight: 700; color: var(--blue); }
  .about-float-text .lbl { font-size: 11px; color: var(--gray-500); }
  .about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .about-feature { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); }
  .about-feature-icon { width: 36px; height: 36px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .about-feature-icon svg { width: 18px; height: 18px; fill: var(--blue); }
  .about-feature h4 { font-family: 'DM Sans',sans-serif; font-weight: 600; font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }
  .about-feature p { font-size: 13px; color: var(--gray-500); }

  .services { background: var(--white); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .service-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 28px 22px; border: 1px solid var(--gray-100); transition: transform 0.25s, box-shadow 0.25s, background 0.25s; cursor: default; position: relative; overflow: hidden; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.25s; }
  .service-card:hover .service-icon { background: var(--blue); }
  .service-icon svg { width: 26px; height: 26px; fill: var(--blue); transition: fill 0.25s; }
  .service-card:hover .service-icon svg { fill: var(--white); }
  .service-card h3 { font-family: 'DM Sans',sans-serif; font-size: 15px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
  .service-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

  .cities { background: var(--blue); padding: 88px 0; }
  .cities .section-title { color: var(--white); }
  .cities .section-sub { color: rgba(255,255,255,0.6); }
  .cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
  .city-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); overflow: hidden; transition: background 0.25s, transform 0.25s; }
  .city-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
  .city-icon-wrap { height: 130px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; }
  .city-icon-wrap svg { width: 64px; height: 64px; fill: var(--orange); opacity: 0.85; }
  .city-info { padding: 18px 20px; }
  .city-info h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); margin-bottom: 6px; }
  .city-info p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
  .city-tag { display: inline-block; margin-top: 10px; background: rgba(232,93,4,0.25); border: 1px solid rgba(232,93,4,0.4); border-radius: 100px; padding: 3px 10px; font-size: 11px; color: #ffb380; font-weight: 500; }

  .vehicles { background: var(--gray-50); }
  .vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .vehicle-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: box-shadow 0.25s, transform 0.25s; }
  .vehicle-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .vehicle-img { height: 180px; background: linear-gradient(135deg, var(--blue-light) 0%, #d5e7f8 100%); display: flex; align-items: center; justify-content: center; }
  .vehicle-img svg { width: 140px; height: 80px; }
  .vehicle-info { padding: 22px; }
  .vehicle-info h3 { font-family: 'DM Sans',sans-serif; font-size: 17px; font-weight: 600; color: var(--gray-900); margin-bottom: 8px; }
  .vehicle-info p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }
  .vehicle-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .v-tag { background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }

  .packages { background: var(--white); }
  .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .pkg-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: box-shadow 0.25s, transform 0.25s; }
  .pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .pkg-header { padding: 32px 24px; position: relative; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); }
  .pkg-card:nth-child(2) .pkg-header { background: linear-gradient(135deg, #7b2d00 0%, var(--orange) 100%); }
  .pkg-card:nth-child(3) .pkg-header { background: linear-gradient(135deg, #1a5f2a 0%, #2d9e4a 100%); }
  .pkg-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .pkg-icon svg { width: 24px; height: 24px; fill: var(--white); }
  .pkg-header h3 { font-size: 22px; color: var(--white); margin-bottom: 6px; }
  .pkg-header p { font-size: 13px; color: rgba(255,255,255,0.7); }
  .pkg-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #7a4800; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
  .pkg-body { padding: 24px; }
  .pkg-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .pkg-body ul li { font-size: 14px; color: var(--gray-700); padding-left: 20px; position: relative; line-height: 1.5; }
  .pkg-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 13px; }
  .pkg-body .btn-primary { width: 100%; text-align: center; margin-top: 20px; padding: 12px; font-size: 14px; }

  .testimonials { background: var(--gray-50); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-100); transition: box-shadow 0.25s; }
  .testi-card:hover { box-shadow: var(--shadow); }
  .stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .star { width: 16px; height: 16px; fill: var(--gold); }
  .testi-text { font-size: 14px; color: var(--gray-700); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display',serif; font-weight: 700; color: var(--white); font-size: 16px; flex-shrink: 0; }
  .testi-author-name { font-weight: 600; font-size: 14px; color: var(--gray-900); }
  .testi-author-loc { font-size: 12px; color: var(--gray-500); }

  .booking { background: var(--blue); }
  .booking .section-title { color: var(--white); }
  .booking .section-sub { color: rgba(255,255,255,0.6); }
  .booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; align-items: start; }
  .form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--gray-900); background: var(--white); transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { width: 100%; padding: 13px; font-size: 15px; font-weight: 700; background: var(--orange); color: var(--white); border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans',sans-serif; }
  .form-submit:hover { background: var(--orange-dark); }
  .booking-info { color: rgba(255,255,255,0.85); }
  .booking-info h3 { font-size: 24px; color: var(--white); margin-bottom: 16px; }
  .booking-info p { font-size: 15px; line-height: 1.7; margin-bottom: 28px; color: rgba(255,255,255,0.65); }
  .contact-list { display: flex; flex-direction: column; gap: 16px; }
  .contact-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 14px 18px; }
  .contact-item-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-item-icon svg { width: 18px; height: 18px; fill: var(--white); }
  .contact-item-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 2px; }
  .contact-item-value { font-size: 14px; color: var(--white); font-weight: 500; }

  .map-section { height: 380px; }
  .map-section iframe { width: 100%; height: 100%; border: none; display: block; }

  footer { background: var(--gray-900); color: rgba(255,255,255,0.7); }
  .footer-main { padding: 60px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; margin-top: 14px; }
  .footer-col h4 { font-family: 'DM Sans',sans-serif; font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-links li a:hover { color: var(--orange); }
  .footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
  .footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); margin-top: 1px; flex-shrink: 0; }
  .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .form-success { display: none; text-align: center; padding: 24px; background: #e8f7ee; border-radius: var(--radius); margin-top: 16px; }
  .form-success.show { display: block; }
  .form-success h4 { color: #1a6e34; font-family: 'DM Sans',sans-serif; font-size: 16px; margin-bottom: 6px; }
  .form-success p { color: #2d9e4a; font-size: 14px; }

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: 1fr 1fr; }
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 36px; }
    .hero-cards .hero-card:nth-child(3), .hero-cards .hero-card:nth-child(4) { margin-top: 0; }
    .about-grid { grid-template-columns: 1fr; }
    .about-float-card { display: none; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .vehicles-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .booking-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (max-width: 480px) {
    .cities-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
  }