*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0d1f3c; --navy-mid: #163256; --navy-light: #1e4480;
    --gold: #c8a84b; --gold-light: #e2c675; --white: #ffffff;
    --off-white: #f6f7fb; --gray: #8899aa; --text: #1a2a3a;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,31,60,0.97); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 68px;
    border-bottom: 1px solid rgba(200,168,75,0.25);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
  .nav-logo img { width: 46px; height: 46px; object-fit: contain; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a.active, .nav-links a[href='#booking'] { color: var(--gold-light); }
  .nav-phone { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
  .nav-phone a { font-size: 0.88rem; font-weight: 500; color: var(--gold); text-decoration: none; }
  .nav-phone a:hover { color: var(--gold-light); }

  .hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.62) 55%, rgba(10,20,40,0.88) 100%),
      url('https://images.unsplash.com/photo-1612544409025-a13b5f45e4ea?w=1600&q=80') center 40%/cover no-repeat;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 100px 5% 60px; position: relative;
  }
  .hero-logo { width: clamp(140px, 22vw, 210px); height: clamp(140px, 22vw, 210px); object-fit: contain; margin-bottom: 1.8rem; filter: drop-shadow(0 4px 28px rgba(0,0,0,0.55)); animation: fadeUp 0.9s ease both; }
  .hero-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 20px; border-radius: 2px; margin-bottom: 1.4rem; animation: fadeUp 0.9s ease 0.15s both; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; max-width: 780px; animation: fadeUp 0.9s ease 0.25s both; }
  .hero h1 em { color: var(--gold); font-style: normal; }
  .hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.78); max-width: 460px; line-height: 1.8; margin-bottom: 2.5rem; animation: fadeUp 0.9s ease 0.35s both; }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.9s ease 0.45s both; }
  @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }

  .btn-primary { background: var(--gold); color: var(--navy); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 36px; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 36px; border: 1px solid rgba(255,255,255,0.45); border-radius: 2px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll { position: absolute; bottom: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; animation: float 2.2s ease-in-out infinite; }
  .hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

  section { padding: 90px 5%; }
  .section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; max-width: 520px; }

  .why { background: var(--off-white); }
  .why-inner { max-width: 1100px; margin: 0 auto; }
  .why-header { text-align: center; margin-bottom: 3.5rem; }
  .why-header .section-label, .why-header .section-title { display: block; text-align: center; max-width: 100%; }
  .operate-content { max-width: 1000px; margin: 0 auto; line-height: 1.8; color: var(--text); }
  .operate-intro { font-size: 1.15rem; font-weight: 500; text-align: center; margin-bottom: 3.5rem; color: var(--navy); max-width: 850px; margin-left: auto; margin-right: auto; }
  .operate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3.5rem; }
  .operate-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 6px; box-shadow: 0 8px 30px rgba(13,31,60,0.06); border-top: 4px solid var(--gold); transition: transform 0.2s; }
  .operate-card:hover { transform: translateY(-5px); }
  .operate-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
  .operate-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
  .operate-card p { font-size: 1rem; color: var(--gray); line-height: 1.75; }
  .operate-footer { text-align: center; border-top: 1px solid rgba(13,31,60,0.08); padding-top: 3rem; }
  .operate-footer p { font-size: 1.05rem; color: var(--gray); margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
  .operate-signoff { font-weight: 700; color: var(--navy); font-size: 1.2rem; }

  .pricing { background: var(--white); }
  .pricing-inner { max-width: 1100px; margin: 0 auto; }
  .pricing-header { margin-bottom: 3rem; }
  .pricing-tabs { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
  .tab-btn { background: transparent; border: 1px solid var(--navy-light); color: var(--navy-light); padding: 8px 22px; border-radius: 2px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
  .tab-btn:hover, .tab-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .pricing-panel { display: none; }
  .pricing-panel.active { display: block; }
  .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
  .price-card { border: 1px solid #dde4ef; border-radius: 4px; padding: 1.75rem 1.5rem; transition: box-shadow 0.2s, transform 0.2s; background: var(--white); }
  .price-card:hover { box-shadow: 0 8px 30px rgba(13,31,60,0.1); transform: translateY(-2px); }
  .price-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.4rem; }
  .vehicle-types { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
  .price-range { font-size: 1.7rem; font-weight: 700; color: var(--navy-light); letter-spacing: -0.02em; }
  .price-duration { font-size: 0.82rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
  .price-divider { width: 36px; height: 2px; background: var(--gold); margin: 1rem 0; }
  .price-includes { list-style: none; }
  .price-includes li { font-size: 0.85rem; color: var(--text); padding: 3px 0 3px 18px; position: relative; }
  .price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
  .price-desc { font-size: 0.85rem; color: var(--gray); font-style: italic; }

  .addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
  .addon-card { background: var(--off-white); border-left: 3px solid var(--gold); padding: 1.25rem; border-radius: 0 4px 4px 0; }
  .addon-card h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
  .addon-card .addon-price { font-size: 1.2rem; font-weight: 700; color: var(--navy-light); }
  .addon-card p { font-size: 0.82rem; color: var(--gray); margin-top: 0.3rem; line-height: 1.5; }

  .contact { background: var(--navy); }
  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .contact .section-label { color: var(--gold-light); }
  .contact .section-title { color: var(--white); max-width: 100%; }
  .contact-info { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-row { display: flex; align-items: center; gap: 1rem; }
  .contact-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .contact-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; }
  .contact-value { font-size: 1rem; color: var(--white); margin-top: 2px; }
  .contact-right { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.2); border-radius: 4px; padding: 2.5rem; }
  .contact-right h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 1.5rem; }
  .contact-right p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1.5rem; }
  .call-buttons { display: flex; flex-direction: column; gap: 0.75rem; }

  footer { background: var(--navy-mid); border-top: 1px solid rgba(200,168,75,0.15); padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
  .footer-logo img { width: 38px; height: 38px; object-fit: contain; }
  .footer-logo span { color: var(--gold); }
  .footer-right { text-align: right; }
  .footer-right p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-scroll { display: none; }
    .footer-right { text-align: left; }
  }

  /* ── BOOKING CALENDAR ── */
  .booking { background: var(--off-white); }
  .booking-inner { max-width: 1100px; margin: 0 auto; }
  .booking-header { text-align: center; margin-bottom: 3rem; }
  .booking-header .section-label, .booking-header .section-title { display: block; text-align: center; max-width: 100%; }
  .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  @media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

  /* Calendar widget */
  .cal-card { background: var(--white); border-radius: 6px; box-shadow: 0 4px 24px rgba(13,31,60,0.08); padding: 1.75rem; }
  .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
  .cal-header h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; }
  .cal-nav-btn { background: none; border: 1px solid var(--gold); color: var(--gold); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
  .cal-nav-btn:hover { background: var(--gold); color: var(--white); }
  .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
  .cal-day-label { font-size: 0.72rem; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 6px; }
  .cal-day { width: 100%; aspect-ratio: 1; border: none; background: none; border-radius: 50%; cursor: pointer; font-size: 0.85rem; color: var(--text); transition: background 0.15s, color 0.15s; display: flex; align-items: center; justify-content: center; }
  .cal-day:hover:not(:disabled):not(.empty) { background: rgba(200,168,75,0.18); color: var(--navy); }
  .cal-day.selected { background: var(--gold) !important; color: var(--white) !important; font-weight: 700; }
  .cal-day.today { font-weight: 700; color: var(--navy-light); }
  .cal-day.past, .cal-day:disabled { color: #ccc; cursor: not-allowed; }
  .cal-day.closed { color: #ddd; cursor: not-allowed; }
  .cal-day.has-booking { position: relative; }
  .cal-day.has-booking::after { content: ''; position: absolute; bottom: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--navy); }
  .cal-day.has-pending { position: relative; }
  .cal-day.has-pending::after { content: ''; position: absolute; bottom: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .cal-day.empty { visibility: hidden; pointer-events: none; }
  .cal-legend { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; justify-content: center; }
  .cal-legend span { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
  .cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

  /* Time slots */
  .slots-card { background: var(--white); border-radius: 6px; box-shadow: 0 4px 24px rgba(13,31,60,0.08); padding: 1.75rem; }
  .slots-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 1.25rem; }
  .slots-empty { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }
  .slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1.5rem; }
  .slot-btn { border: 1px solid #dde4ef; border-radius: 4px; padding: 9px 6px; font-size: 0.8rem; cursor: pointer; background: var(--white); color: var(--navy); transition: all 0.15s; text-align: center; }
  .slot-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
  .slot-btn.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
  .slot-btn.pending { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.05); }
  .slot-btn:disabled, .slot-btn.taken { color: #ccc; border-color: #eee; cursor: not-allowed; background: #f9f9f9; }

  /* Booking form */
  .booking-form { margin-top: 1.5rem; border-top: 1px solid #eee; padding-top: 1.5rem; display: none; }
  .booking-form.visible { display: block; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
  .form-field { display: flex; flex-direction: column; gap: 5px; }
  .form-field label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
  .form-field input, .form-field select, .form-field textarea { border: 1px solid #dde4ef; border-radius: 4px; padding: 10px 12px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); width: 100%; transition: border-color 0.2s; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
  .form-field textarea { resize: vertical; min-height: 72px; }
  .addons-checkboxes { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .addon-check { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--navy); cursor: pointer; text-transform: none; letter-spacing: normal; }
  .addon-check input { width: auto; cursor: pointer; }
  .form-full { grid-column: 1 / -1; }
  .booking-summary { background: var(--off-white); border-left: 3px solid var(--gold); padding: 0.9rem 1.1rem; border-radius: 0 4px 4px 0; margin-bottom: 1rem; font-size: 0.88rem; color: var(--navy); line-height: 1.7; }
  .booking-summary strong { color: var(--gold); }
  .btn-book { background: var(--gold); color: var(--navy); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 32px; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s, transform 0.15s; width: 100%; margin-top: 0.5rem; }
  .btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }
  .booking-success { display: none; text-align: center; padding: 2rem 1rem; }
  .booking-success.visible { display: block; }
  .booking-success .success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
  .booking-success h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.3rem; margin-bottom: 0.5rem; }
  .booking-success p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
  .btn-book-another { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 22px; border-radius: 4px; font-size: 0.85rem; cursor: pointer; margin-top: 1rem; transition: all 0.2s; }
  .btn-book-another:hover { background: var(--gold); color: var(--white); }

  /* Hours info */
  .hours-card { background: var(--navy); border-radius: 6px; padding: 1.75rem; color: var(--white); }
  .hours-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 1.25rem; }
  .hours-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .hours-list li { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hours-list li:last-child { border-bottom: none; }
  .hours-list .day-name { color: rgba(255,255,255,0.6); }
  .hours-list .day-time { color: var(--white); font-weight: 500; }
  .hours-list .closed-day { color: rgba(255,255,255,0.3); }
  .hours-note { margin-top: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
