   *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --white: #ffffff;
      --off-white: #f8f7f4;
      --cream: #f2ede6;
      --stone: #e8e0d5;
      --text: #1a1814;
      --text-soft: #5a5550;
      --text-muted: #9a9490;
      --accent: #2c5f8a;
      --accent-light: #e8f0f8;
      --accent-dark: #1a3d5c;
      --gold: #c4922a;
      --gold-light: #f5e8d0;
      --success: #2d7a4f;
      --border: #e2dcd4;
      --shadow-sm: 0 1px 3px rgba(26,24,20,0.06), 0 1px 2px rgba(26,24,20,0.04);
      --shadow: 0 4px 12px rgba(26,24,20,0.08), 0 2px 4px rgba(26,24,20,0.04);
      --shadow-lg: 0 16px 40px rgba(26,24,20,0.12), 0 4px 12px rgba(26,24,20,0.06);
      --shadow-xl: 0 32px 64px rgba(26,24,20,0.16);
      --radius-sm: 8px;
      --radius: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --nav-h: 72px;
      --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      max-width: 100vw;
    }

    /* ===== UTILITY ===== */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

    .sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== NAVIGATION ===== */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
      height: var(--nav-h);
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px) saturate(1.4);
      -webkit-backdrop-filter: blur(16px) saturate(1.4);
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    #nav.scrolled {
      border-color: var(--border);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; flex-shrink: 0;
    }
    .nav-logo-icon {
      width: 36px; height: 36px;
      /* background: var(--accent); */
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px;
    }
    .nav-logo-icon img {
      width: 64px; 

    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-name {
      font-family: var(--font-display);
      font-size: 1.1rem; font-weight: 700;
      color: var(--text); letter-spacing: -0.01em;
    }
    .nav-logo-tagline {
      font-size: 0.68rem; color: var(--text-muted);
      font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .nav-links {
      display: flex; align-items: center; gap: 4px;
      list-style: none;
    }
    .nav-links a {
      display: block; padding: 8px 14px;
      color: var(--text-soft); font-size: 0.9rem; font-weight: 500;
      text-decoration: none; border-radius: var(--radius-sm);
      transition: color var(--transition), background var(--transition);
    }
    .nav-links a:hover { color: var(--text); background: var(--off-white); }
    .nav-links a.active { color: var(--accent); }
    .nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

    .lang-selector {
      position: relative;
    }
    .lang-btn {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 12px;
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
      color: var(--text-soft); cursor: pointer;
      transition: all var(--transition);
    }
    .lang-btn:hover { background: var(--cream); border-color: var(--stone); }
    .lang-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); box-shadow: var(--shadow-lg);
      padding: 6px; min-width: 130px;
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
      z-index: 9100;
    }
    .lang-selector.open .lang-dropdown { opacity: 1; visibility: visible; transform: none; }
    .lang-option {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 12px; border-radius: var(--radius-sm);
      font-size: 0.875rem; font-weight: 500; color: var(--text-soft);
      cursor: pointer; transition: all var(--transition);
    }
    .lang-option:hover { background: var(--off-white); color: var(--text); }
    .lang-option.active { color: var(--accent); background: var(--accent-light); }
    .lang-flag { font-size: 0.5rem; }
    .lang-flag svg {
        width: 25px;
        height: 25px;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px;
      font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
      border-radius: var(--radius-sm); cursor: pointer;
      text-decoration: none; transition: all var(--transition);
      border: 1.5px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--accent); color: white;
      border-color: var(--accent);
    }
    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(44,95,138,0.3);
    }
    .btn-outline {
      background: transparent; color: var(--accent);
      border-color: var(--accent);
    }
    .btn-outline:hover {
      background: var(--accent); color: white;
      transform: translateY(-1px);
    }
    .btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
    .btn-ghost {
      background: rgba(255,255,255,0.12); color: white;
      border-color: rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.22);
      border-color: rgba(255,255,255,0.5);
      transform: translateY(-1px);
    }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 36px; height: 36px; cursor: pointer;
      align-items: center; justify-content: center;
      border-radius: var(--radius-sm);
      background: var(--off-white); border: 1px solid var(--border);
      transition: all var(--transition);
    }
    .hamburger span {
      display: block; width: 18px; height: 1.5px;
      background: var(--text); border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      transform-origin: center;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile menu */
    #mobile-menu {
      display: none; position: fixed; inset: 0; top: var(--nav-h);
      background: var(--white); z-index: 8900;
      padding: 24px; overflow-y: auto;
      border-top: 1px solid var(--border);
    }
    #mobile-menu.open { display: block; animation: fadeInDown 0.25s ease; }
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
    .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
    .mobile-nav-links a {
      padding: 14px 16px; color: var(--text); font-size: 1.05rem; font-weight: 500;
      text-decoration: none; border-radius: var(--radius);
      border: 1px solid transparent; transition: all var(--transition);
    }
    .mobile-nav-links a:hover { background: var(--off-white); border-color: var(--border); }
    .mobile-lang { display: flex; gap: 8px; margin-bottom: 24px; }
    .mobile-lang-btn {
      flex: 1; padding: 12px; text-align: center;
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
      color: var(--text-soft); cursor: pointer; transition: all var(--transition);
    }
    .mobile-lang-btn.active { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;   /* fallback */
      min-height: 100svh;  /* stable mobile */
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      padding-top: var(--nav-h);
      max-width: 100vw;
        background: #0f1f2e; /* ensures no white bleed-through */

    }
    /* Blue gradient — always present as the base/fallback */
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(160deg, #1a2f44 0%, #0f1f2e 40%, #1a3550 70%, #243a4d 100%);
    }
    /*
      HERO PHOTO — HOW TO ADD YOUR IMAGE:
      Set a CSS custom property on #hero, e.g. via inline style or JS:
        <section id="hero" style="--hero-img: url('your-photo.jpg')">
      The image will be blurred and darkened over the blue gradient.
      If no image is set, the blue gradient shows cleanly.
    */
    .hero-photo {
      position: absolute; inset: 0; z-index: 1;
      background-image: var(--hero-img, none);
      background-size: cover; background-position: center;
      filter: blur(3px) brightness(0.45) saturate(0.8);
      transform: scale(1.04); /* prevent blur edge bleed */
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    /* When an image is actually provided, make it visible */
    #hero[style*="--hero-img"] .hero-photo { opacity: 1; }
    .hero-bg-pattern {
      position: absolute; inset: 0; z-index: 2; opacity: 0.04;
      background-image: repeating-linear-gradient(
        45deg,
        transparent, transparent 40px,
        rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px
      );
    }
    /* Deep vignette overlay — works on both photo and pure-gradient mode */
    .hero-overlay {
      position: absolute; inset: 0; z-index: 3;
      background:
        radial-gradient(ellipse 90% 70% at 50% 50%, transparent 30%, rgba(10,18,28,0.55) 100%),
        linear-gradient(to bottom, rgba(10,18,28,0.25) 0%, transparent 40%, rgba(10,18,28,0.5) 100%);
    }
    .hero-aurora {
      position: absolute; inset: 0; overflow: hidden; z-index: 4;
    }
    .aurora-1, .aurora-2, .aurora-3 {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.15;
    }
    .aurora-1 {
      width: 600px; height: 300px;
      background: linear-gradient(90deg, #4ac8a0, #2c8f6a);
      top: 15%; left: -10%;
      animation: auroraDrift 18s ease-in-out infinite alternate;
    }
    .aurora-2 {
      width: 500px; height: 250px;
      background: linear-gradient(90deg, #2c5f8a, #5a9fd4);
      top: 30%; right: -5%;
      animation: auroraDrift 22s ease-in-out infinite alternate-reverse;
    }
    .aurora-3 {
      width: 400px; height: 200px;
      background: linear-gradient(90deg, #7a4ac4, #4a7cd4);
      top: 60%; left: 30%;
      animation: auroraDrift 16s ease-in-out infinite alternate;
    }
    @keyframes auroraDrift {
      from { transform: translate(0, 0) rotate(0deg) scale(1); }
      to { transform: translate(40px, 20px) rotate(6deg) scale(1.1); }
    }

    .hero-content {
      position: relative; z-index: 10;
      text-align: center; max-width: 820px;
      padding: 80px 24px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 18px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px; backdrop-filter: blur(8px);
      font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85);
      letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 28px;
      animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s both;
    }
    .hero-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #4ac8a0;
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: none; }
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      font-weight: 700; line-height: 1.08;
      letter-spacing: -0.025em;
      color: white;
      margin-bottom: 24px;
      animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.2s both;
    }
    .hero-title em {
      font-style: italic; color: #7ec8f0;
    }
    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,0.68); line-height: 1.65;
      max-width: 600px; margin: 0 auto 40px;
      animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both;
    }
    .hero-cta {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; flex-wrap: wrap;
      animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.4s both;
    }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 0; right: 0;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.6s both;
      cursor: pointer; z-index: 10;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 0.9; transform: scaleY(1.15); }
    }

    /* ===== SECTION HEADERS ===== */
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 14px;
    }
    .eyebrow-line {
      display: block; width: 28px; height: 2px;
      background: var(--accent); border-radius: 2px;
    }
    .section-title-lg {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
      color: var(--text); margin-bottom: 16px;
    }
    .section-desc {
      font-size: 1.05rem; color: var(--text-soft);
      line-height: 1.65; max-width: 560px;
    }
    .section-header-centered { text-align: center; }
    .section-header-centered .section-desc { margin: 0 auto; }

    /* ===== INTRO / ABOUT STRIP ===== */
    #intro { padding: 80px 0; background: var(--off-white); }
    .intro-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .intro-visual {
      position: relative;
    }
    .intro-img-stack {
      position: relative; height: 420px;
    }
    .img-placeholder {
      border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, var(--stone) 0%, var(--cream) 100%);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
    }
    .intro-img-main {
      position: absolute; inset: 0 40px 40px 0;
      box-shadow: var(--shadow-lg);
    }
    .intro-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .intro-img-secondary {
      position: absolute; right: 0; bottom: 0;
      width: 60%; height: 52%;
      border: 4px solid var(--white);
      box-shadow: var(--shadow-lg);
    }
    .intro-img-secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .intro-badge-float {
      position: absolute;
      top: 20px;
      left: 0;
      z-index: 2;
      transform: none; /* was translateX(-40px) which pushed off-screen */
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: var(--radius);
      padding: 14px 18px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .intro-badge-float:hover {
      /* transform: translateY(-2px); */
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    }

    /* ICON CONTAINER */
    .float-badge-icon {
      width: 42px;
      height: 42px;

      border-radius: 14px;

      background: linear-gradient(135deg, var(--accent-light), #ffffff);

      display: flex;
      align-items: center;
      justify-content: center;

      flex-shrink: 0;

      position: relative;
    }

    /* CLEAN MODERN DOT ICON */
    .float-badge-icon .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);

      box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.05);
    }

    /* TEXT */
    .float-badge-text strong {
      display: block;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }

    .float-badge-text span {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    .intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
    .intro-stat { text-align: center; padding: 20px 12px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
    .intro-stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--accent); }
    .intro-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

    /* ===== SERVICES TEASER ===== */
    #services { padding: 100px 0; background: var(--white); }
    .services-teaser-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 52px;
    }
    .service-tile-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .service-tile-pricing {
      text-align: right;
      flex-shrink: 0;
    }
    .service-tile-from {
      display: block;
      font-size: 0.68rem;
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1;
      margin-bottom: 2px;
    }

    .service-tile-price {
      display: block;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .service-tile-per {
      display: block;
      font-size: 0.68rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 2px;
    }

    .service-tile-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
      padding-top: 4px;
    }

    .service-meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 50px;
      background: var(--stone);
      color: var(--text-soft);
      white-space: nowrap;
    }

    .service-meta-pill--year {
      background: #e6f4ec;
      color: #2a7a4f;
    }

    .service-meta-pill--seasonal {
      background: #fef3e2;
      color: #a06020;
    }
    .service-tile {
      position: relative;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px 24px;
      text-decoration: none; color: inherit;
      transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      display: flex; flex-direction: column; gap: 12px;
      overflow: hidden;
    }
    /* .service-tile::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    } */
    .service-tile:hover {
      border-color: var(--accent);
      background: var(--white);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .service-tile:hover::after { transform: scaleX(1); }
    .service-tile-icon {
      width: 48px; height: 48px;
      background: var(--accent-light); border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
    }
    .service-tile-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .service-tile-title { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.3; }
    .service-tile-desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.55; flex: 1; }
    .service-tile-arrow {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.82rem; font-weight: 700; color: var(--accent);
      margin-top: 4px;
    }
    .services-cta-row {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-top: 40px; flex-wrap: wrap;
    }
    .services-cta-note {
      font-size: 0.88rem; color: var(--text-muted);
    }

    /* ===== TOURS HIGHLIGHT ===== */
    #tours { padding: 100px 0; background: var(--off-white); }
    .tours-feature-grid {
      display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
      margin-top: 56px;
    }
    .tour-card-large {
      background: var(--text); border-radius: var(--radius-xl); overflow: hidden;
      position: relative; min-height: 480px;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 36px;
    }
    .tour-card-large-bg {
      position: absolute;
      inset: 0;
      background-image: url("https://www.dangerous-business.com/wp-content/uploads/2023/08/DJI_0262.jpg");
      background-size: cover;
      background-position: 20% center; /* 👈 shift left/right here */
    }
    .tour-card-large-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 30%, transparent 70%);
    }
    .tour-card-large-content { position: relative; z-index: 2; }
    .tour-card-tag {
      display: inline-block; padding: 6px 14px;
      background: rgba(74,200,160,0.2); border: 1px solid rgba(74,200,160,0.4);
      border-radius: 6px; color: #4ac8a0;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .tour-card-large-title {
      font-family: var(--font-display); font-size: 2rem; font-weight: 700;
      color: white; line-height: 1.2; margin-bottom: 10px;
    }
    .tour-card-large-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.6; }
    .tour-card-large-meta { display: flex; align-items: center; gap: 20px; }
    .tour-meta-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 0.82rem; font-weight: 500; }
    .tour-meta-icon { font-size: 0.9rem; }

    .tours-side { display: flex; flex-direction: column; gap: 24px; }
    .tour-card-small {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 24px;
      display: flex; gap: 18px; align-items: flex-start;
      transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      cursor: pointer;
      flex-direction: column;
      gap: 14px;
    }
    .tour-card-small:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow); }
    .tour-small-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: var(--accent-light); border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--accent);
    }
    .tour-small-content { flex: 1; }
    .tour-small-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .tour-small-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.5; }
    .tour-small-badge {
      display: inline-block; margin-top: 8px;
      padding: 3px 10px; border-radius: 50px;
      background: var(--gold-light); color: var(--gold);
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
    }
    .tour-small-cta {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent);
      text-decoration: none;
      padding: 6px 14px;
      border: 1.5px solid var(--accent);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      margin-top: 2px;
    }

    .tour-small-cta:hover {
      background: var(--accent);
      color: white;
    }

    /* ===== FLEET TEASER ===== */
    #fleet { padding: 100px 0; background: var(--white); }
    .fleet-teaser {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .fleet-teaser-pills {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .fleet-pill {
      display: flex; align-items: center; gap: 16px;
      padding: 16px 20px;
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); text-decoration: none; color: inherit;
      transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
      width: 100%;
      box-sizing: border-box;
    }
    .fleet-pill:hover {
      border-color: var(--accent); background: var(--white);
      transform: translateX(6px); box-shadow: var(--shadow);
    }
    .fleet-pill-capacity {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--accent); color: white;
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    }
    .fleet-pill-info { flex: 1; }
    .fleet-pill-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
    .fleet-pill-info span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
    .fleet-pill-arrow { color: var(--text-muted); font-size: 0.9rem; transition: transform var(--transition); }
    .fleet-pill:hover .fleet-pill-arrow { transform: translateX(3px); color: var(--accent); }
    .fleet-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fleet-vehicle-card {
      text-decoration: none;
      color: inherit;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }
    .fleet-vehicle-card:hover {
      border-color: var(--accent);
      background: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .fleet-vehicle-img {
      position: relative;
      height: 110px;
      background: linear-gradient(135deg, var(--stone) 0%, var(--cream) 100%);
      overflow: hidden;
    }

    .fleet-vehicle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;

    }

    .fleet-vehicle-img-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* Hide fallback when image loads successfully */
    .fleet-vehicle-img img + .fleet-vehicle-img-fallback {
      display: none;
    }

    .fleet-vehicle-body {
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .fleet-vehicle-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .fleet-vehicle-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
    }

    /* .fleet-seat-badge {
      flex-shrink: 0;
      background: var(--accent);
      color: white;
      font-family: var(--font-display);
      font-size: 0.85rem;
      font-weight: 700;
      width: 30px;
      height: 30px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    } */
.fleet-seat-badge {
  flex-shrink: 0;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

    .fleet-vehicle-type {
      font-size: 0.76rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    
    /* ===== ABOUT SECTION ===== */
    #about { padding: 100px 0; background: var(--cream); }
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-text p { font-size: 1rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
    .about-feature {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px; background: var(--white);
      border: 1px solid var(--border); border-radius: var(--radius);
    }
    .about-feature-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--accent-light); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--accent);
    }
    .about-feature-text strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
    .about-feature-text span { font-size: 0.8rem; color: var(--text-muted); }

    .team-cards { display: flex; flex-direction: column; gap: 16px; }
    .team-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 24px;
      display: flex; gap: 18px; align-items: center;
      transition: all var(--transition);
    }
    .team-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
    .team-avatar {
      width: 60px; height: 60px; flex-shrink: 0;
      border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      display: flex; align-items: center; justify-content: center;
      color: white; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    }
    .team-info strong { display: block; font-size: 1.05rem; font-weight: 700; }
    .team-info span { font-size: 0.85rem; color: var(--text-muted); }
    .team-badge {
      margin-left: auto; padding: 5px 12px;
      background: var(--accent-light); color: var(--accent);
      border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    }

    /* ===== GALLERY ===== */
    #gallery { padding: 100px 0; background: var(--white); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 16px; margin-top: 56px;
    }
    .gallery-item {
      border-radius: var(--radius); overflow: hidden;
      background: linear-gradient(135deg, var(--stone), var(--cream));
      position: relative; cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .gallery-item:hover { transform: scale(0.98); }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(15,32,48,0.7) 0%, transparent 50%);
      opacity: 0; transition: opacity var(--transition);
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label { color: white; font-size: 0.85rem; font-weight: 600; }
    .gallery-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
      background: linear-gradient(135deg, var(--stone) 0%, var(--cream) 100%);
    }
    .gallery-cta { text-align: center; margin-top: 36px; }

    /* ===== BOOKING / CONTACT ===== */
    #contact { padding: 100px 0; background: var(--off-white); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
    }
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .contact-info-title {
      font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
      line-height: 1.2; margin-bottom: 8px;
    }
    .contact-info-desc { font-size: 0.95rem; color: var(--text-soft); line-height: 1.65; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px; background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .detail-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--accent-light); border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--accent);
    }
    .detail-text strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
    .detail-text span { font-size: 0.95rem; font-weight: 500; color: var(--text); }

    .map-placeholder {
      height: 180px; border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, #cfe2f0 0%, #a8c8e0 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; border: 1px solid var(--border);
    }
    .map-pin {
      width: 32px; height: 32px; background: var(--accent);
      border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
      border: 3px solid white; box-shadow: var(--shadow);
      display: flex; align-items: center; justify-content: center;
      transform: rotate(-45deg);
    }
    .map-pin::after { content: ''; display: block; width: 10px; height: 10px; background: white; border-radius: 50%; }

    /* Form */
    .booking-form {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius-xl); padding: 36px;
      box-shadow: var(--shadow);
    }
    .form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
    .form-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-label { font-size: 0.82rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
    .form-input, .form-select, .form-textarea {
      padding: 11px 14px;
      background: var(--off-white); border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
      transition: all var(--transition); outline: none; width: 100%;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--accent);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(44,95,138,0.1);
    }
    .form-textarea { resize: vertical; min-height: 100px; }
    .form-select { appearance: none; cursor: pointer; }
    .form-submit { margin-top: 8px; width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }
    .form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
    .form-success {
      display: none; padding: 16px; background: #f0faf5;
      border: 1px solid #a3d9b9; border-radius: var(--radius);
      color: var(--success); font-size: 0.9rem; font-weight: 500;
      text-align: center; margin-top: 16px;
    }

    /* ===== TESTIMONIAL / TRUST STRIP ===== */
    #trust { padding: 72px 0; background: var(--accent); }
    .trust-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 48px; flex-wrap: wrap;
    }
    .trust-text { flex: 1; min-width: 260px; }
    .trust-title {
      font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
      color: white; margin-bottom: 10px; line-height: 1.2;
    }
    .trust-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }
    .trust-stats { display: flex; gap: 36px; flex-wrap: wrap; }
    .trust-stat { text-align: center; }
    .trust-stat-value { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: white; line-height: 1; }
    .trust-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--text); color: rgba(255,255,255,0.75);
      padding: 64px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand { display: flex; flex-direction: column; gap: 14px; }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo-icon {
      width: 34px; height: 34px;
      /* background: var(--accent); */
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1rem;
    }
    .footer-logo-icon img { width: 20px; }
    .footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: white; }
    .footer-desc { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 240px; }
    .footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; list-style: none; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
    .footer-links a:hover { color: white; }
    .footer-bottom {
      padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
      font-size: 0.82rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color var(--transition); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

    /* ===== NOTIFICATION TOAST ===== */
    .toast {
      position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(100px);
      background: var(--text); color: white;
      padding: 14px 24px; border-radius: var(--radius);
      font-size: 0.9rem; font-weight: 500;
      box-shadow: var(--shadow-xl); z-index: 99999;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      display: flex; align-items: center; gap: 10px;
      max-width: calc(100vw - 48px);
    }
    .toast.show { transform: translateX(-50%) translateY(0); }
    .toast-icon { color: #4ac8a0; font-size: 1.1rem; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .fleet-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
    }

    @media (max-width: 900px) {
      .intro-inner, .about-inner, .contact-inner, .tours-feature-grid { grid-template-columns: 1fr; gap: 40px; }
      .intro-img-stack { height: 300px; }
      .tours-feature-grid { grid-template-columns: 1fr; }
      .tour-card-large { min-height: 340px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
      .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: auto; }
      .trust-inner { flex-direction: column; text-align: center; }
      .trust-stats { justify-content: center; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-cta { display: none; }
      .services-teaser-grid { grid-template-columns: 1fr; }
      .fleet-teaser { grid-template-columns: 1fr; gap: 40px; }
      .fleet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .services-teaser-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full { grid-column: 1; }
      .about-features { grid-template-columns: 1fr; }
      .intro-stats { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .booking-form { padding: 24px 20px; }
      .hero-cta { flex-direction: column; align-items: stretch; }
      .hero-cta .btn { justify-content: center; }
      .fleet-pill { width: 100%; }
      .intro-badge-float { left: 0; right: auto; max-width: calc(100% - 40px); }
      .fleet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .fleet-vehicle-img {
        height: 90px;
      }
    }

    @media (max-width: 420px) {
      .fleet-grid { grid-template-columns: 1fr; }
      .intro-stats { grid-template-columns: 1fr; gap: 12px; }
    }