
    :root {
      --bg: #0d0d0d;
      --bg-soft: #151515;
      --bg-card: rgba(175, 158, 158, 0.04);
      --gold: #c7a86b;
      --gold-soft: #e3c48a;
      --white: #ffffff;
      --text: #d8d8d8;
      --muted: #9b9b9b;
      --border: rgba(255,255,255,0.08);
      --shadow: 0 10px 35px rgba(0,0,0,0.28);
      --radius: 10px;
      --transition: all 0.35s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 92%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section {
      padding: 95px 0;
      position: relative;
    }

    .section-title {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 55px;
    }

    .eyebrow {
      display: inline-block;
      color: var(--gold);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      line-height: 1.15;
      font-weight: 600;
    }

    h1 {
      font-size: clamp(44px, 7vw, 78px);
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(34px, 5vw, 56px);
      margin-bottom: 18px;
    }

    h3 {
      font-size: 28px;
      margin-bottom: 12px;
    }

    p {
      font-size: 16.5px;
      color: var(--text);
    }

    .muted {
      color: var(--muted);
    }

    .btn-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 600;
      transition: var(--transition);
      border: 1px solid transparent;
      min-height: 52px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-soft));
      color: #111;
      box-shadow: 0 10px 25px rgba(199,168,107,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(199,168,107,0.28);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.18);
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
      transform: translateY(-2px);
    }

    /* =========================
       LUXURY HEADER + NAVBAR
    ========================= */
    .lux-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      transition: var(--transition);
      padding: 18px 0;
      background: transparent;
    }

    .lux-header.scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .lux-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .lux-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--white);
      min-width: fit-content;
    }

    .lux-logo img {
      width: 200px;
      height: 80px;
      object-fit: contain;
      border-radius: 10%;
      background: rgba(255,255,255,0.05);
      padding: 1px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .lux-logo-text strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      line-height: 1;
      color: var(--white);
      letter-spacing: 0.4px;
    }

    .lux-logo-text span {
      display: block;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 4px;
    }

    .lux-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .lux-nav ul {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .lux-nav ul li a {
      position: relative;
      color: var(--white);
      font-size: 15px;
      font-weight: 500;
      transition: var(--transition);
    }

    .lux-nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: var(--transition);
    }

    .lux-nav ul li a:hover {
      color: var(--gold-soft);
    }

    .lux-nav ul li a:hover::after {
      width: 100%;
    }

    .lux-header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .lux-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition);
    }

    .lux-phone:hover {
      color: var(--gold-soft);
    }

    .lux-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition);
      min-height: 48px;
      white-space: nowrap;
    }

    .lux-btn-outline {
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      background: transparent;
    }

    .lux-btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
      transform: translateY(-2px);
    }

    .lux-btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-soft));
      color: #111;
      box-shadow: 0 10px 22px rgba(199,168,107,0.22);
    }

    .lux-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(199,168,107,0.28);
    }

    .lux-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .lux-toggle:hover {
      border-color: var(--gold);
    }

    .lux-toggle span,
    .lux-toggle span::before,
    .lux-toggle span::after {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      position: relative;
      transition: var(--transition);
    }

    .lux-toggle span::before,
    .lux-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .lux-toggle span::before {
      top: -7px;
    }

    .lux-toggle span::after {
      top: 7px;
    }

    .lux-toggle.active span {
      background: transparent;
    }

    .lux-toggle.active span::before {
      transform: rotate(45deg);
      top: 0;
    }

    .lux-toggle.active span::after {
      transform: rotate(-45deg);
      top: 0;
    }

    .lux-mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      max-width: 90%;
      height: 100vh;
      background: rgba(12, 12, 12, 0.98);
      backdrop-filter: blur(16px);
      box-shadow: -10px 0 35px rgba(0,0,0,0.35);
      z-index: 10000;
      transition: var(--transition);
      padding: 90px 28px 28px;
      border-left: 1px solid var(--border);
      overflow-y: auto;
    }

    .lux-mobile-menu.active {
      right: 0;
    }

    .lux-mobile-menu ul {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
    }

    .lux-mobile-menu ul li {
      margin-bottom: 18px;
    }

    .lux-mobile-menu ul li a {
      color: var(--white);
      font-size: 17px;
      font-weight: 500;
      transition: var(--transition);
    }

    .lux-mobile-menu ul li a:hover {
      color: var(--gold-soft);
    }

    .lux-mobile-actions {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 30px;
    }

    .lux-mobile-phone {
      color: var(--text);
      font-size: 15px;
      margin-bottom: 10px;
      display: inline-block;
    }

    .lux-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .lux-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* =========================
       HERO
    ========================= */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      background:
        linear-gradient(110deg, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.68) 45%, rgba(10,10,10,0.55) 100%),
        url('../images/orly-airport-shuttle-paris-banner.webp') center/cover no-repeat;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 140px;
      background: linear-gradient(to top, var(--bg), transparent);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 2;
      padding-top: 140px;
      padding-bottom: 80px;
    }

    .hero-copy p {
      max-width: 720px;
      font-size: 18px;
      color: #efefef;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 28px 0 10px;
    }

    .badge {
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      font-size: 14px;
      color: #f0f0f0;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
    }

    .booking-card {
      background: rgba(16,16,16,0.78);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 26px;
      padding: 34px 30px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .booking-card h3 {
      font-size: 34px;
      margin-bottom: 10px;
    }

    .booking-card p {
      color: var(--muted);
      margin-bottom: 26px;
    }

    .booking-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-bottom: 28px;
    }

    .booking-list li {
      padding: 14px 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      color: var(--text);
      font-size: 15px;
    }

    .stats-strip {
      margin-top: -55px;
      position: relative;
      z-index: 4;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .stat-box {
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      padding: 28px 24px;
      border-radius: 22px;
      text-align: center;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .stat-box h3 {
      font-size: 42px;
      color: var(--gold-soft);
      margin-bottom: 6px;
    }

    .grid-3, .grid-4, .grid-2 {
      display: grid;
      gap: 24px;
    }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }

    .lux-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: var(--transition);
      box-shadow: var(--shadow);
      height: 100%;
    }

    .lux-card:hover {
      transform: translateY(-8px);
      border-color: rgba(199,168,107,0.28);
    }

    .lux-card .icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: rgba(199,168,107,0.12);
      color: var(--gold-soft);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .image-panel {
      border-radius: 28px;
      overflow: hidden;
      min-height: 520px;
      background: url('https://orly-airport-shuttle.fr/wp-content/uploads/paris-luxury-transfer.jpg') center/cover no-repeat;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .feature-list {
      list-style: none;
      display: grid;
      gap: 16px;
      margin-top: 26px;
    }

    .feature-list li {
      padding: 18px 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .dark-panel {
      background: linear-gradient(180deg, #111, #0b0b0b);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 50px 40px;
      box-shadow: var(--shadow);
    }

    .route-chip-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-top: 32px;
    }

    .route-chip {
      padding: 14px 20px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: #ededed;
      font-size: 15px;
      transition: var(--transition);
    }

    .route-chip:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
      transform: translateY(-2px);
    }

    .testimonial-card {
      position: relative;
      padding-top: 42px;
    }

    .testimonial-card::before {
      content: "“";
      position: absolute;
      top: -8px;
      left: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 82px;
      color: rgba(199,168,107,0.24);
      line-height: 1;
    }

    .faq-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px 24px;
    }

    .faq-item h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .final-cta {
      background:
        linear-gradient(135deg, rgba(10,10,10,0.92), rgba(18,18,18,0.82)),
        url('https://orly-airport-shuttle.fr/wp-content/uploads/chauffeur-luxury-paris.jpg') center/cover no-repeat;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    footer {
      padding: 28px 0;
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      border-top: 1px solid rgba(255,255,255,0.05);
      background: #090909;
    }

    @media (max-width: 1100px) {
      .lux-nav,
      .lux-header-actions {
        display: none;
      }

      .lux-toggle {
        display: inline-flex;
      }

      .hero-grid,
      .split-section,
      .grid-2 {
        grid-template-columns: 1fr;
      }

      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }

      .grid-4,
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .image-panel {
        min-height: 420px;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 75px 0;
      }

      .lux-logo img {
        width: 48px;
        height: 48px;
      }

      .lux-logo-text strong {
        font-size: 24px;
      }

      .lux-header {
        padding: 14px 0;
      }

      .lux-header.scrolled {
        padding: 10px 0;
      }

      .hero {
        min-height: auto;
      }

      .hero-grid {
        padding-top: 130px;
        padding-bottom: 70px;
      }

      .btn-wrap {
        flex-direction: column;
        align-items: stretch;
      }

      .btn,
      .lux-btn {
        width: 100%;
      }

      .grid-3,
      .grid-4,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .booking-card,
      .dark-panel {
        padding: 28px 22px;
      }

      .stat-box h3 {
        font-size: 34px;
      }
    }
