:root {
    --navy: #0d1b3e;
    --navy-dark: #08112b;
    --gold: #c9962a;
    --gold-light: #e8b84b;
    --gold-shine: #f5d070;
    --silver: #a8b2c0;
    --white: #ffffff;
    --light-bg: #f2f4f7;
    --text-dark: #1a2340;
    --text-mid: #4a5568;
    --card-bg: #ffffff;
    --card-border: #dde2ec;
    --nav-bg: #08112b;
    --nav-text: #ffffff;
    --section-alt: #f2f4f7;
  }
  [data-theme="light"] {
    --card-bg: #ffffff;
    --card-border: #d0d7e8;
    --nav-bg: #f5f7ff;
    --nav-text: #0d1b3e;
    --section-alt: #f0f2f8;
    --light-bg: #f8f9fc;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--nav-bg);
    border-bottom: 2px solid var(--gold);
    display: flex; align-items: center;
    padding: 8px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: background 0.3s;
  }
  .nav-logo { flex: 1; }
  .nav-logo img { height: 90px; width: auto; filter: drop-shadow(0 0 8px rgba(201,150,42,0.6)); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--nav-text); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.04em; transition: color 0.2s;
    position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--gold-light);
    transform: scaleX(0); transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--gold-light); }
  .nav-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
  .nav-phone { color: var(--nav-text); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
  .btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em;
    padding: 10px 22px; border: none; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 4px 14px rgba(201,150,42,0.4);
    transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,150,42,0.6); }
  .theme-toggle {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--nav-text); border-radius: 6px; width: 36px; height: 36px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border 0.2s;
    font-size: 1.1rem;
  }
  .theme-toggle:hover { background: rgba(201,150,42,0.2); border-color: var(--gold); }
  [data-theme="light"] .theme-toggle { background: rgba(13,27,62,0.08); border-color: rgba(13,27,62,0.2); }
  .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(--nav-text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 700px) {
    nav { padding: 8px 20px; }
    .hamburger { display: flex; }
    .nav-links {
      display: none; flex-direction: column; gap: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--nav-bg); border-top: 1px solid rgba(201,150,42,0.3);
      padding: 12px 0; z-index: 300;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li a { padding: 12px 24px; display: block; }
    .nav-links a::after { display: none; }
    .nav-phone { display: none; }
    .btn-book { font-size: 0.8rem; padding: 8px 14px; }
  }

  /* HERO */
  .hero { position: relative; min-height: 540px; overflow: hidden; display: flex; align-items: center; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(0.35) saturate(0.8); }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(8,17,43,0.92) 0%, rgba(8,17,43,0.7) 50%, rgba(8,17,43,0.2) 100%);
  }
  /* particles */
  .hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
  .particle {
    position: absolute; width: 3px; height: 3px; border-radius: 50%;
    background: var(--gold-light); opacity: 0;
    animation: drift 8s infinite ease-in-out;
  }
  .particle:nth-child(1)  { left: 15%; top: 30%; animation-delay: 0s; }
  .particle:nth-child(2)  { left: 40%; top: 60%; animation-delay: 1.5s; }
  .particle:nth-child(3)  { left: 65%; top: 25%; animation-delay: 3s; }
  .particle:nth-child(4)  { left: 80%; top: 55%; animation-delay: 0.8s; }
  .particle:nth-child(5)  { left: 25%; top: 75%; animation-delay: 2.2s; }
  .particle:nth-child(6)  { left: 55%; top: 45%; animation-delay: 4s; }
  @keyframes drift {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-20px) scale(1.5); }
    80% { opacity: 0.5; }
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 520px; padding: 80px 80px;
    animation: fadeInLeft 0.8s ease both;
  }
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 14px;
  }
  .hero h1 {
    font-family: 'Cinzel', serif; font-size: 2.9rem; font-weight: 900;
    line-height: 1.15; color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6); margin-bottom: 18px;
  }
  .hero p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.65; margin-bottom: 34px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.06em;
    padding: 14px 30px; border: none; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 6px 20px rgba(201,150,42,0.45);
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,150,42,0.65); }
  .btn-outline {
    background: transparent; color: #ffffff; font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.06em; padding: 14px 30px; border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px; cursor: pointer; text-transform: uppercase;
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

  /* GOLD DIVIDER */
  .gold-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); opacity: 0.6; }

  /* SECTION HEADER */
  .section-header { text-align: center; padding: 60px 20px 40px; }
  .section-header h2 {
    font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--text-dark);
    position: relative; display: inline-block; padding-bottom: 14px;
  }
  .section-header h2::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px;
  }
  .section-sub { text-align: center; color: var(--text-mid); font-size: 0.95rem; margin-top: -24px; margin-bottom: 28px; padding-bottom: 0; }

  /* PACKAGES */
  .packages-section { background: var(--section-alt); padding-bottom: 70px; }
  .packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 960px; margin: 0 auto; padding: 0 30px;
  }
  .pkg-card {
    background: var(--card-bg); border: 2px solid var(--card-border); border-radius: 10px;
    padding: 32px 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s;
  }
  .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
  .pkg-card.featured {
    background: linear-gradient(160deg, #b8820a 0%, #e8a820 40%, #c9962a 100%);
    border-color: var(--gold); color: #ffffff;
    box-shadow: 0 10px 40px rgba(201,150,42,0.4); transform: scale(1.04);
  }
  .pkg-card.featured:hover { transform: scale(1.04) translateY(-6px); }
  .pkg-card.platinum { background: var(--navy); border-color: var(--navy); color: #ffffff; }
  .pkg-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--navy-dark); color: var(--gold-light);
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 20px; white-space: nowrap;
  }
  .pkg-name { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
  .pkg-card:not(.featured):not(.platinum) .pkg-name { color: var(--text-dark); }
  .pkg-price { text-align: center; margin-bottom: 24px; }
  .pkg-price .amount { font-family: 'Barlow Condensed', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1; }
  .pkg-card:not(.featured):not(.platinum) .amount { color: var(--text-dark); }
  .pkg-card.featured .amount { color: #ffffff; }
  .pkg-card.platinum .amount { color: var(--gold-light); }
  .pkg-price .period { font-size: 0.8rem; opacity: 0.7; display: block; margin-top: 4px; }
  .pkg-features { list-style: none; margin-bottom: 28px; }
  .pkg-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0; font-size: 0.9rem; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pkg-card:not(.featured):not(.platinum) .pkg-features li { border-bottom-color: rgba(0,0,0,0.07); color: var(--text-mid); }
  .pkg-features li::before { content: '✓'; color: var(--gold-light); font-weight: 900; font-size: 1rem; flex-shrink: 0; }
  .pkg-card:not(.featured):not(.platinum) .pkg-features li::before { color: var(--gold); }
  .btn-pkg {
    width: 100%; padding: 13px; border-radius: 5px; font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; border: 2px solid;
    transition: all 0.2s; text-decoration: none; display: block; text-align: center;
  }
  .btn-pkg-default { border-color: #ccc; background: transparent; color: var(--text-dark); }
  .btn-pkg-default:hover { border-color: var(--gold); color: var(--gold); }
  .btn-pkg-gold { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--gold-light); }
  .btn-pkg-gold:hover { background: #000; }
  .btn-pkg-platinum { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: transparent; color: var(--navy-dark); }
  .btn-pkg-platinum:hover { opacity: 0.9; }
  .pkg-link { text-align: center; margin-top: 32px; }
  .pkg-link a { color: var(--gold); font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
  .pkg-link a:hover { color: var(--gold-light); }

  /* WHY CHOOSE US */
  .why-section { background: var(--white); padding: 20px 0 60px; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; padding: 0 30px; }
  .why-item { text-align: center; padding: 20px 12px; }
  .why-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,150,42,0.12), rgba(201,150,42,0.04));
    border: 2px solid rgba(201,150,42,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .why-item:hover .why-icon { transform: scale(1.1); box-shadow: 0 8px 24px rgba(201,150,42,0.25); }
  .why-item h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; }
  .why-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

  /* HOW IT WORKS */
  .how-section { background: var(--navy); padding: 50px 30px; text-align: center; position: relative; overflow: hidden; }
  .how-section::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 20px);
  }
  .how-section h2 { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); margin-bottom: 36px; position: relative; }
  .how-steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
  .how-step { display: flex; align-items: center; gap: 12px; padding: 16px 20px; color: #ffffff; font-weight: 700; font-size: 1rem; letter-spacing: 0.04em; }
  .how-step .step-icon { font-size: 1.8rem; filter: drop-shadow(0 0 6px rgba(201,150,42,0.5)); }
  .how-arrow { color: var(--gold-light); font-size: 1.4rem; padding: 0 4px; }

  /* GALLERY */
  .gallery-section { background: var(--section-alt); padding-bottom: 70px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 960px; margin: 0 auto; padding: 0 30px; }
  .gallery-item {
    aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
    position: relative; background: var(--navy); cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s;
  }
  .gallery-item:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.3s; filter: brightness(0.92) saturate(1.1); }
  .gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.25); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,17,43,0.8) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 12px 14px;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }

  /* CTA */
  .cta-section {
    background: var(--navy-dark); border-top: 3px solid var(--gold);
    padding: 70px 30px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(201,150,42,0.08) 0%, transparent 65%);
  }
  .cta-logo { margin-bottom: 24px; position: relative; }
  .cta-logo img { height: 200px; filter: drop-shadow(0 4px 24px rgba(201,150,42,0.55)); }
  .cta-section h2 { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: #ffffff; margin-bottom: 30px; position: relative; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-call {
    background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.6);
    font-weight: 800; font-size: 0.95rem; letter-spacing: 0.07em; padding: 16px 40px;
    border-radius: 4px; cursor: pointer; text-transform: uppercase;
    transition: all 0.25s; text-decoration: none; display: inline-block;
  }
  .btn-cta-call:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-light); color: var(--gold-light); }

  /* FOOTER */
  footer {
    background: #060e1f; border-top: 1px solid rgba(201,150,42,0.2);
    padding: 28px 60px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 20px;
  }
  footer img { height: 76px; filter: drop-shadow(0 0 8px rgba(201,150,42,0.4)); }
  .footer-nav { display: flex; gap: 28px; list-style: none; }
  .footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--gold-light); }
  .footer-contact { text-align: right; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
  .footer-contact span { display: block; }
  .footer-contact a { color: var(--gold-light); text-decoration: none; }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* TABLET */
  @media (max-width: 860px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 440px; }
    .pkg-card.featured { transform: scale(1); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { padding: 60px 48px; }
  }

  /* MOBILE */
  @media (max-width: 700px) {
    /* Nav */
    .nav-logo img { height: 60px; }
    /* Hero */
    .hero { min-height: 400px; }
    .hero-content { padding: 36px 20px; max-width: 100%; }
    .hero h1 { font-size: 1.9rem; line-height: 1.2; }
    .hero p { font-size: 0.92rem; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { text-align: center; padding: 14px; width: 100%; max-width: 280px; }
    /* Sections */
    .section-header { padding: 40px 16px 28px; }
    .section-header h2 { font-size: 1.5rem; }
    /* Packages */
    .packages-section { padding-bottom: 40px; }
    .packages-grid { grid-template-columns: 1fr; max-width: 100%; padding: 0 16px; }
    .pkg-card.featured { transform: scale(1); }
    .pkg-card { padding: 24px 18px; }
    /* Why */
    .why-section { padding: 10px 0 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 12px; }
    .why-icon { width: 64px; height: 64px; font-size: 1.6rem; }
    /* How */
    .how-section { padding: 36px 16px; }
    .how-section h2 { font-size: 1.3rem; margin-bottom: 22px; }
    .how-steps { flex-direction: column; gap: 2px; align-items: center; }
    .how-arrow { transform: rotate(90deg); font-size: 1rem; padding: 0; }
    .how-step { padding: 10px 16px; font-size: 0.9rem; }
    /* Gallery */
    .gallery-section { padding-bottom: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; gap: 8px; }
    /* CTA */
    .cta-section { padding: 48px 20px; }
    .cta-logo img { height: 120px; }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-btns { flex-direction: column; gap: 10px; align-items: center; }
    .btn-cta-call { padding: 14px 30px; width: 100%; max-width: 280px; text-align: center; }
    .btn-primary[style] { width: 100%; max-width: 280px; }
    /* Footer */
    footer { padding: 24px 16px; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .footer-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .footer-contact { text-align: center; }
  }

  /* SMALL PHONE */
  @media (max-width: 420px) {
    .hero h1 { font-size: 1.65rem; }
    .hero-eyebrow { font-size: 0.72rem; }
    .section-header h2 { font-size: 1.35rem; }
    .why-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 12px; }
    .pkg-card { padding: 20px 14px; }
    .pkg-price .amount { font-size: 2.1rem; }
  }

/* ===== SERVICES PAGE ===== */
:root {
    --navy: #0d1b3e;
    --navy-dark: #08112b;
    --gold: #c9962a;
    --gold-light: #e8b84b;
    --gold-shine: #f5d070;
    --silver: #a8b2c0;
    --white: #ffffff;
    --light-bg: #f2f4f7;
    --text-dark: #1a2340;
    --text-mid: #4a5568;
    --card-bg: #ffffff;
    --card-border: #dde2ec;
    --nav-bg: #08112b;
    --nav-text: #ffffff;
    --section-alt: #f2f4f7;
  }
  [data-theme="light"] {
    --card-bg: #ffffff;
    --card-border: #d0d7e8;
    --nav-bg: #f5f7ff;
    --nav-text: #0d1b3e;
    --section-alt: #f0f2f8;
    --light-bg: #f8f9fc;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--nav-bg); border-bottom: 2px solid var(--gold);
    display: flex; align-items: center;
    padding: 8px 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: background 0.3s;
  }
  .nav-logo { flex: 1; }
  .nav-logo img { height: 90px; width: auto; filter: drop-shadow(0 0 8px rgba(201,150,42,0.6)); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--nav-text); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.04em; transition: color 0.2s;
    position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--gold-light); transform: scaleX(0); transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--gold-light); }
  .nav-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
  .nav-phone { color: var(--nav-text); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
  .btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em;
    padding: 10px 22px; border: none; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 4px 14px rgba(201,150,42,0.4);
    transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,150,42,0.6); }
  .theme-toggle {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--nav-text); border-radius: 6px; width: 36px; height: 36px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; font-size: 1.1rem;
  }
  .theme-toggle:hover { background: rgba(201,150,42,0.2); border-color: var(--gold); }
  [data-theme="light"] .theme-toggle { background: rgba(13,27,62,0.08); border-color: rgba(13,27,62,0.2); }
  .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(--nav-text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 700px) {
    nav { padding: 8px 20px; }
    .hamburger { display: flex; }
    .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg); border-top: 1px solid rgba(201,150,42,0.3); padding: 12px 0; z-index: 300; }
    .nav-links.nav-open { display: flex; }
    .nav-links li a { padding: 12px 24px; display: block; }
    .nav-links a::after { display: none; }
    .nav-phone { display: none; }
    .btn-book { font-size: 0.8rem; padding: 8px 14px; }
  }

  /* PAGE HERO */
  .page-hero {
    background: var(--navy-dark); border-bottom: 3px solid var(--gold);
    padding: 60px 20px; position: relative;
    display: flex; flex-direction: column; align-items: center;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center top, rgba(201,150,42,0.1) 0%, transparent 60%);
  }
  .page-hero-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    position: relative; text-align: center;
  }
  .page-hero h1 {
    font-family: 'Cinzel', serif; font-size: 2.6rem; font-weight: 900;
    color: #ffffff; margin-bottom: 12px; position: relative; text-align: center;
  }
  .page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 500px; position: relative; text-align: center; }

  /* GOLD DIVIDER */
  .gold-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); opacity: 0.6; }

  /* SECTION HEADER */
  .section-header { text-align: center; padding: 60px 20px 40px; }
  .section-header h2 {
    font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--text-dark);
    position: relative; display: inline-block; padding-bottom: 14px;
  }
  .section-header h2::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px;
  }

  /* TIERS */
  .tiers-section { background: var(--section-alt); padding-bottom: 80px; }
  .tier-block {
    max-width: 900px; margin: 0 auto 40px; padding: 0 30px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .tier-block.reverse .tier-image { order: 2; }
  .tier-block.reverse .tier-info  { order: 1; }
  .tier-image { position: relative; min-height: 320px; overflow: hidden; }
  .tier-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .tier-block:hover .tier-image img { transform: scale(1.05); }
  .tier-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,17,43,0.4) 0%, transparent 60%);
  }
  .tier-info {
    background: var(--card-bg); padding: 44px 40px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .tier-info.dark { background: var(--navy); color: #ffffff; }
  .tier-info.gold-bg { background: linear-gradient(160deg, #b8820a 0%, #e8a820 50%, #c9962a 100%); color: #ffffff; }
  .tier-badge {
    display: inline-block; font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold); padding: 4px 14px;
    border-radius: 20px; margin-bottom: 14px;
  }
  .tier-info.gold-bg .tier-badge { color: #fff; border-color: rgba(255,255,255,0.6); }
  .tier-info.dark .tier-badge { color: var(--gold-light); border-color: var(--gold); }
  .tier-name {
    font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900;
    margin-bottom: 6px; color: var(--text-dark);
  }
  .tier-info.dark .tier-name, .tier-info.gold-bg .tier-name { color: #ffffff; }
  .tier-pricing { margin-bottom: 20px; }
  .tier-pricing .price-row { display: flex; gap: 20px; }
  .tier-pricing .price-item { text-align: left; }
  .tier-pricing .vehicle-type { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 2px; }
  .tier-info.dark .vehicle-type, .tier-info.gold-bg .vehicle-type { color: rgba(255,255,255,0.65); }
  .tier-pricing .price-val {
    font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800;
    line-height: 1; color: var(--text-dark);
  }
  .tier-info.dark .price-val { color: var(--gold-light); }
  .tier-info.gold-bg .price-val { color: #ffffff; }
  .tier-divider { height: 1px; background: rgba(0,0,0,0.1); margin: 16px 0; }
  .tier-info.dark .tier-divider, .tier-info.gold-bg .tier-divider { background: rgba(255,255,255,0.2); }
  .tier-includes { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 10px; }
  .tier-info.dark .tier-includes, .tier-info.gold-bg .tier-includes { color: rgba(255,255,255,0.55); }
  .tier-features { list-style: none; margin-bottom: 24px; }
  .tier-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 5px 0; font-size: 0.88rem; font-weight: 500;
    color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .tier-info.dark .tier-features li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.08); }
  .tier-info.gold-bg .tier-features li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
  .tier-features li::before { content: '✓'; font-weight: 900; font-size: 0.9rem; flex-shrink: 0; color: var(--gold); }
  .tier-info.dark .tier-features li::before, .tier-info.gold-bg .tier-features li::before { color: var(--gold-light); }
  .tier-footer {
    font-size: 0.78rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px;
  }
  .tier-info.dark .tier-footer, .tier-info.gold-bg .tier-footer { color: rgba(255,255,255,0.55); }
  .btn-tier {
    display: inline-block; padding: 13px 28px; border-radius: 5px; font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; border: 2px solid;
  }
  .btn-tier-default { border-color: var(--gold); color: var(--gold); background: transparent; }
  .btn-tier-default:hover { background: var(--gold); color: var(--navy-dark); }
  .btn-tier-white { border-color: #fff; color: #fff; background: transparent; }
  .btn-tier-white:hover { background: rgba(255,255,255,0.15); }
  .btn-tier-dark { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--gold-light); }
  .btn-tier-dark:hover { background: #000; }

  /* TABLET */
  @media (max-width: 860px) {
    .tier-block { grid-template-columns: 1fr; max-width: 560px; }
    .tier-block.reverse .tier-image { order: 1; }
    .tier-block.reverse .tier-info  { order: 2; }
    .tier-image { min-height: 240px; }
  }

  /* MOBILE */
  @media (max-width: 700px) {
    .tier-block { grid-template-columns: 1fr; max-width: 100%; margin: 0 16px 32px; padding: 0; }
    .tier-block.reverse .tier-image { order: 1; }
    .tier-block.reverse .tier-info  { order: 2; }
    .tier-image { min-height: 200px; }
    .tier-info { padding: 28px 20px; }
    .tier-name { font-size: 1.6rem; }
    .tier-pricing .price-val { font-size: 1.6rem; }
  }

  /* ADD-ONS */
  .addons-section { background: var(--white); padding-bottom: 80px; }
  .addons-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 900px; margin: 0 auto; padding: 0 30px;
  }
  .addon-card {
    background: var(--card-bg); border: 2px solid var(--card-border);
    border-radius: 10px; padding: 28px 24px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .addon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: var(--gold); }
  .addon-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
  .addon-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 4px; }
  .addon-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--gold); margin-bottom: 10px; }
  .addon-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

  @media (max-width: 700px) { .addons-grid { grid-template-columns: 1fr 1fr; } }

  /* CTA */
  .cta-section {
    background: var(--navy-dark); border-top: 3px solid var(--gold);
    padding: 70px 30px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(201,150,42,0.08) 0%, transparent 65%);
  }
  .cta-section h2 { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; color: #ffffff; margin-bottom: 12px; position: relative; }
  .cta-section p { color: rgba(255,255,255,0.6); margin-bottom: 28px; position: relative; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.06em;
    padding: 15px 38px; border: none; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 6px 20px rgba(201,150,42,0.45);
    transition: all 0.25s; text-decoration: none; display: inline-block; position: relative;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,150,42,0.65); }

  /* FOOTER */
  footer {
    background: #060e1f; border-top: 1px solid rgba(201,150,42,0.2);
    padding: 28px 60px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 20px;
  }
  footer img { height: 76px; filter: drop-shadow(0 0 8px rgba(201,150,42,0.4)); }
  .footer-nav { display: flex; gap: 28px; list-style: none; }
  .footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--gold-light); }
  .footer-contact { text-align: right; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
  .footer-contact span { display: block; }
  .footer-contact a { color: var(--gold-light); text-decoration: none; }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE — remaining */
  @media (max-width: 700px) {
    /* Nav */
    .nav-logo img { height: 60px; }
    /* Page hero */
    .page-hero { padding: 40px 16px; }
    .page-hero h1 { font-size: 1.8rem; }
    /* Sections */
    .section-header { padding: 36px 16px 24px; }
    .section-header h2 { font-size: 1.5rem; }
    .tiers-section { padding-bottom: 48px; }
    /* Add-ons */
    .addons-section { padding-bottom: 48px; }
    .addons-grid { padding: 0 16px; }
    /* CTA */
    .cta-section { padding: 48px 16px; }
    .cta-section h2 { font-size: 1.5rem; }
    .btn-primary { padding: 14px 28px; }
    /* Footer */
    footer { padding: 24px 16px; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .footer-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .footer-contact { text-align: center; }
  }

  /* SMALL PHONE */
  @media (max-width: 420px) {
    .page-hero h1 { font-size: 1.5rem; }
    .tier-name { font-size: 1.4rem; }
    .tier-info { padding: 22px 16px; }
    .addons-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.3rem; }
  }

/* ===== CONTACT PAGE ===== */
:root {
    --navy: #0d1b3e;
    --navy-dark: #08112b;
    --gold: #c9962a;
    --gold-light: #e8b84b;
    --gold-shine: #f5d070;
    --silver: #a8b2c0;
    --white: #ffffff;
    --light-bg: #f2f4f7;
    --text-dark: #1a2340;
    --text-mid: #4a5568;
    --card-bg: #ffffff;
    --card-border: #dde2ec;
    --nav-bg: #08112b;
    --nav-text: #ffffff;
    --section-alt: #f2f4f7;
    --input-bg: #ffffff;
    --input-border: #d0d9e8;
    --input-text: #1a2340;
    --label-text: #4a5568;
  }
  [data-theme="light"] {
    --card-bg: #ffffff;
    --card-border: #d0d7e8;
    --nav-bg: #f5f7ff;
    --nav-text: #0d1b3e;
    --section-alt: #f0f2f8;
    --light-bg: #f8f9fc;
    --input-bg: #ffffff;
    --input-border: #c8d0e0;
    --input-text: #1a2340;
    --label-text: #3a4a60;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Barlow', sans-serif; background: var(--section-alt); color: var(--text-dark); overflow-x: hidden; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--nav-bg); border-bottom: 2px solid var(--gold);
    display: flex; align-items: center;
    padding: 8px 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: background 0.3s;
  }
  .nav-logo { flex: 1; }
  .nav-logo img { height: 90px; width: auto; filter: drop-shadow(0 0 8px rgba(201,150,42,0.6)); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--nav-text); text-decoration: none; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 0.04em; transition: color 0.2s;
    position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--gold-light); transform: scaleX(0); transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--gold-light); }
  .nav-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
  .nav-phone { color: var(--nav-text); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
  .btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em;
    padding: 10px 22px; border: none; border-radius: 4px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 4px 14px rgba(201,150,42,0.4);
    transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,150,42,0.6); }
  .theme-toggle {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--nav-text); border-radius: 6px; width: 36px; height: 36px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s; font-size: 1.1rem;
  }
  .theme-toggle:hover { background: rgba(201,150,42,0.2); border-color: var(--gold); }
  [data-theme="light"] .theme-toggle { background: rgba(13,27,62,0.08); border-color: rgba(13,27,62,0.2); }
  .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(--nav-text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 700px) {
    nav { padding: 8px 20px; }
    .hamburger { display: flex; }
    .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--nav-bg); border-top: 1px solid rgba(201,150,42,0.3); padding: 12px 0; z-index: 300; }
    .nav-links.nav-open { display: flex; }
    .nav-links li a { padding: 12px 24px; display: block; }
    .nav-links a::after { display: none; }
    .nav-phone { display: none; }
    .btn-book { font-size: 0.8rem; padding: 8px 14px; }
  }

  /* GOLD DIVIDER */
  .gold-divider { height: 3px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent); opacity: 0.6; }

  /* PAGE HERO */
  .page-hero {
    background: var(--navy-dark); border-bottom: 3px solid var(--gold);
    padding: 60px 20px; position: relative;
    display: flex; flex-direction: column; align-items: center;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at center top, rgba(201,150,42,0.1) 0%, transparent 60%);
  }
  .page-hero-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; position: relative; text-align: center; }
  .page-hero h1 { font-family: 'Cinzel', serif; font-size: 2.4rem; font-weight: 900; color: #ffffff; margin-bottom: 12px; position: relative; text-align: center; }
  .page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 480px; position: relative; text-align: center; }

  /* CONTACT GRID */
  .contact-section { padding: 60px 40px; max-width: 1100px; margin: 0 auto; }
  .contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }

  /* LEFT COLUMN */
  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .info-block {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 10px; padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .info-block-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px;
  }
  .contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .contact-item:last-child { margin-bottom: 0; }
  .contact-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(201,150,42,0.15), rgba(201,150,42,0.05));
    border: 1px solid rgba(201,150,42,0.3);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  }
  .contact-detail { flex: 1; }
  .contact-detail .label { font-size: 0.72rem; color: var(--text-mid); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
  .contact-detail a { color: var(--text-dark); text-decoration: none; font-weight: 700; font-size: 1rem; transition: color 0.2s; }
  .contact-detail a:hover { color: var(--gold); }
  .contact-detail span { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; }

  /* Trust badges */
  .trust-badge {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--card-border);
  }
  .trust-badge:last-child { border-bottom: none; padding-bottom: 0; }
  .trust-badge-icon { font-size: 1.3rem; }
  .trust-badge-text { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
  .trust-badge-sub { font-size: 0.75rem; color: var(--text-mid); }

  /* QR Code */
  .qr-block { text-align: center; }
  .qr-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
  .qr-grid { display: inline-grid; grid-template-columns: repeat(7, 18px); gap: 3px; margin-bottom: 10px; }
  .qr-cell { width: 18px; height: 18px; border-radius: 2px; }
  .qr-cell.on { background: var(--navy-dark); }
  .qr-cell.off { background: transparent; }
  .qr-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.4; }

  /* RIGHT COLUMN – FORM */
  .booking-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 12px; padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .booking-title {
    font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 6px;
  }
  .booking-subtitle { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 28px; }

  /* Success message */
  .success-msg {
    display: none; background: linear-gradient(135deg, rgba(201,150,42,0.12), rgba(201,150,42,0.05));
    border: 2px solid var(--gold); border-radius: 10px;
    padding: 36px 30px; text-align: center;
  }
  .success-msg.show { display: block; animation: fadeInUp 0.4s ease; }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  .success-check { font-size: 3rem; margin-bottom: 12px; display: block; }
  .success-msg h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 8px; }
  .success-msg p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

  /* Form */
  .booking-form { display: flex; flex-direction: column; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--label-text); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--input-bg); border: 2px solid var(--input-border);
    border-radius: 6px; padding: 11px 14px; font-family: 'Barlow', sans-serif;
    font-size: 0.9rem; color: var(--input-text); transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { outline: none; border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group select { appearance: none; cursor: pointer; }

  /* Add-ons */
  .addons-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--label-text); margin-bottom: 10px; display: block;
  }
  .addon-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .addon-check-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 6px; cursor: pointer;
    border: 2px solid var(--input-border); background: var(--input-bg);
    transition: border-color 0.2s, background 0.2s;
  }
  .addon-check-item:hover { border-color: var(--gold); }
  .addon-check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
  .addon-check-item input[type="checkbox"]:checked + .addon-check-label { color: var(--gold); }
  .addon-check-item:has(input:checked) { border-color: var(--gold); background: rgba(201,150,42,0.05); }
  .addon-check-label { display: flex; flex-direction: column; gap: 1px; }
  .addon-check-name { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
  .addon-check-price { font-size: 0.75rem; color: var(--text-mid); }

  /* Estimate panel */
  .estimate-panel {
    background: var(--navy-dark); border-radius: 10px; padding: 24px;
    border: 2px solid rgba(201,150,42,0.2); transition: border-color 0.3s;
    margin-top: 4px;
  }
  .estimate-panel.has-value { border-color: var(--gold); animation: pulse-border 0.3s ease; }
  @keyframes pulse-border { 0%,100% { box-shadow: none; } 50% { box-shadow: 0 0 0 4px rgba(201,150,42,0.15); } }
  .estimate-panel-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px;
  }
  .estimate-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; min-height: 24px; }
  .estimate-row { display: flex; justify-content: space-between; align-items: center; }
  .estimate-row-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
  .estimate-row-val { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); }
  .estimate-divider { height: 1px; background: rgba(201,150,42,0.3); margin-bottom: 12px; }
  .estimate-total-row { display: flex; justify-content: space-between; align-items: center; }
  .estimate-total-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .estimate-total-val { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold-light); transition: transform 0.2s; }
  .estimate-total-val.pop { animation: pop 0.25s ease; }
  @keyframes pop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
  .estimate-note { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 10px; line-height: 1.4; }

  /* Submit */
  .btn-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.06em;
    padding: 16px; border: none; border-radius: 6px; cursor: pointer;
    text-transform: uppercase; box-shadow: 0 6px 20px rgba(201,150,42,0.4);
    transition: all 0.25s; width: 100%;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,150,42,0.6); }

  /* FOOTER */
  footer {
    background: #060e1f; border-top: 1px solid rgba(201,150,42,0.2);
    padding: 28px 60px; display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 20px;
    margin-top: 0;
  }
  footer img { height: 76px; filter: drop-shadow(0 0 8px rgba(201,150,42,0.4)); }
  .footer-nav { display: flex; gap: 28px; list-style: none; }
  .footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
  .footer-nav a:hover { color: var(--gold-light); }
  .footer-contact { text-align: right; font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
  .footer-contact span { display: block; }
  .footer-contact a { color: var(--gold-light); text-decoration: none; }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* TABLET */
  @media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 40px 20px; }
    .addon-checkboxes { grid-template-columns: 1fr 1fr; }
  }

  /* MOBILE */
  @media (max-width: 700px) {
    /* Nav */
    .nav-logo img { height: 60px; }
    /* Page hero */
    .page-hero { padding: 40px 16px; }
    .page-hero h1 { font-size: 1.8rem; }
    /* Section */
    .contact-section { padding: 28px 14px; }
    /* Info blocks */
    .info-block { padding: 20px 16px; }
    /* Form */
    .booking-card { padding: 22px 16px; }
    .booking-title { font-size: 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .addon-checkboxes { grid-template-columns: 1fr; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 1rem; padding: 12px 14px; } /* prevent iOS zoom (must be ≥16px rendered — 1rem at 16px base) */
    .btn-submit { padding: 16px; font-size: 0.9rem; }
    /* Estimate */
    .estimate-panel { padding: 18px 16px; }
    .estimate-total-val { font-size: 1.6rem; }
    /* Footer */
    footer { padding: 24px 16px; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .footer-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .footer-contact { text-align: center; }
    /* QR block */
    .qr-grid { grid-template-columns: repeat(7, 16px); gap: 2px; }
    .qr-cell { width: 16px; height: 16px; }
  }

  /* SMALL PHONE */
  @media (max-width: 420px) {
    .page-hero h1 { font-size: 1.5rem; }
    .booking-card { padding: 18px 12px; }
    .addon-check-item { padding: 9px 10px; }
    .addon-check-name { font-size: 0.78rem; }
    .contact-section { padding: 20px 10px; }
    .info-block { padding: 16px 14px; }
  }