    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --primary: #077349;
      --primary-dark: #055a38;
      --primary-light: #0a9960;
      --accent: #f5a623;
      --accent-hover: #e09515;
      --text-dark: #1a1a2e;
      --text-body: #333333;
      --text-light: #555555;
      --bg-white: #ffffff;
      --bg-light: #f7faf8;
      --bg-green-tint: #eef6f2;
      --bg-dark: #0b2e1f;
      --border-light: #d4e8dc;
      --shadow-sm: 0 2px 8px rgba(7,115,73,0.08);
      --shadow-md: 0 4px 20px rgba(7,115,73,0.12);
      --shadow-lg: 0 8px 40px rgba(7,115,73,0.15);
      --radius: 10px;
      --radius-lg: 16px;
      --transition: 0.3s ease;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 70px; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text-body); line-height: 1.7; background: var(--bg-white); -webkit-font-smoothing: antialiased; }
    h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--text-dark); line-height: 1.25; }
    h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
    h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); margin-bottom: 0.4rem; }
    p { margin-bottom: 1rem; }
    a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
    a:hover { color: var(--primary-dark); }
    img { max-width: 100%; height: auto; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-padding { padding: 80px 0; }
    .btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; text-align: center; cursor: pointer; transition: all var(--transition); border: none; text-decoration: none; }
    .btn-primary { background: var(--accent); color: var(--text-dark); }
    .btn-primary:hover { background: var(--accent-hover); color: var(--text-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-green { background: var(--primary); color: #fff; }
    .btn-green:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
    .btn-outline:hover { background: #fff; color: var(--primary-dark); }
    .btn-hero-call { background: #ffffff; color: var(--primary-dark); font-weight: 700; border: 2px solid #fff; }
    .btn-hero-call:hover { background: var(--accent); color: var(--text-dark); border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-sm { padding: 10px 22px; font-size: 0.9rem; }
    .btn-lg { padding: 18px 40px; font-size: 1.1rem; }
    .btn-block { display: block; width: 100%; }
    .text-center { text-align: center; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
    .section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 720px; margin: 0 auto 2.5rem; }

    /* HEADER */
    .site-header { position: sticky; top: 0; z-index: 1000; background: var(--primary); box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 70px; }
    .header-logo img { height: 44px; width: auto; }
    .header-nav { display: flex; align-items: center; gap: 0; }
    .header-nav a { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all var(--transition); }
    .header-nav a:hover { color: #fff; background: rgba(255,255,255,0.12); }
    .header-ctas { display: flex; align-items: center; gap: 10px; }
    .header-ctas a { font-size: 0.85rem; white-space: nowrap; }
    .header-phone { color: rgba(255,255,255,0.95); font-weight: 600; font-size: 0.88rem; }
    .header-phone:hover { color: #fff; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
    .hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: var(--transition); }
    .mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--primary-dark); z-index: 999; padding: 30px 24px; flex-direction: column; gap: 8px; overflow-y: auto; }
    .mobile-nav.active { display: flex; }
    .mobile-nav a { color: #fff; font-size: 1.1rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .mobile-nav-head { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; color: #fff; font-family: inherit; font-size: 1.1rem; font-weight: 500; text-align: left; padding: 14px 0; cursor: pointer; }
    .mobile-nav-caret { font-size: 0.75em; opacity: 0.7; transition: transform var(--transition); }
    .mobile-nav-group.open .mobile-nav-caret { transform: rotate(180deg); }
    .mobile-nav-panel { display: none; padding-bottom: 6px; }
    .mobile-nav-group.open .mobile-nav-panel { display: block; }
    .mobile-nav-panel a { display: block; }
    .mobile-nav-panel a:last-child { border-bottom: none; }
    .mobile-nav .nav-highlight { text-align: center; padding: 14px 16px; border-bottom: none; margin-top: 8px; }
    .mobile-nav-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; padding-bottom: 40px; }
    .mobile-nav-ctas .btn { width: 100%; padding: 15px 20px; font-size: 1.05rem; border-bottom: none; }

    /* TRUST BAR CAROUSEL */
    .trust-bar { background: var(--bg-green-tint); border-bottom: 1px solid var(--border-light); overflow: hidden; padding: 16px 0; }
    .trust-track { display: flex; align-items: center; animation: trustScroll 7s linear infinite; white-space: nowrap; will-change: transform; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
    .trust-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--primary-dark); padding: 0 32px; flex-shrink: 0; }
    .trust-icon { font-size: 1.3rem; }
    @keyframes trustScroll { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

    /* HERO */
    .hero { position: relative; min-height: 85vh; display: flex; align-items: center; background: var(--bg-dark); overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; z-index: 1; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
    .hero-content { position: relative; z-index: 2; max-width: 800px; padding: 60px 24px; margin: 0 auto; text-align: center; color: #fff; }
    .hero h1 { color: #fff; font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: 1.2rem; }
    .hero h1 span { display: block; font-family: 'Inter', sans-serif; font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 500; opacity: 0.9; margin-top: 0.6rem; }
    .hero-summary { font-size: 1.1rem; line-height: 1.75; margin-bottom: 2rem; max-width: 680px; margin-left: auto; margin-right: auto; opacity: 0.95; }
    .hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 1.5rem; }
    .hero-microtrust { font-size: 0.88rem; opacity: 0.8; }

    /* CARDS */
    .dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 2.5rem; }
    .dest-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all var(--transition); }
    .dest-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .dest-card img { width: 100%; height: 220px; object-fit: cover; }
    .dest-card-body { padding: 24px; }
    .dest-card-body h3 { color: var(--primary-dark); margin-bottom: 0.6rem; }
    .dest-card-body p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 1rem; }
    .btn-inline { font-weight: 600; font-size: 0.92rem; color: var(--primary); }
    .btn-inline:hover { color: var(--accent); }
    .city-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1rem; }
    .city-grid span, .city-grid a { background: var(--bg-green-tint); border: 1px solid var(--border-light); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; color: var(--primary-dark); }
    .city-grid a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    /* GUARANTEE */
    .guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .airline-list { list-style: none; margin-bottom: 1.2rem; }
    .airline-list li { padding: 6px 0; font-size: 0.95rem; }
    .airline-list.positive li { color: var(--primary-dark); }
    .guarantee-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }

    /* GLOBAL */
    .global-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 2.5rem; }
    .global-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all var(--transition); }
    .global-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .global-card img { width: 100%; height: 200px; object-fit: cover; }
    .global-card-body { padding: 22px; }
    .global-card-body h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
    .global-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }

    /* HOLIDAYS */
    .holidays-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 2rem; }
    .holidays-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }

    /* INLINE CTA ROW - fix wrapping */
    .inline-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 1.5rem; }

    /* CTA BANNER */
    .cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 60px 24px; text-align: center; }
    .cta-banner h2 { color: #fff; margin-bottom: 0.8rem; }
    .cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
    .cta-banner-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

    /* TESTIMONIALS */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
    .testimonial-card { background: var(--bg-white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
    .testimonial-card p { font-size: 0.95rem; font-style: italic; color: var(--text-light); margin-bottom: 1rem; }
    .testimonial-footer { font-size: 0.88rem; }
    .testimonial-footer strong { color: var(--text-dark); }
    .stars { color: var(--accent); margin-left: 6px; }

    /* FAQ */
    .faq-list { max-width: 820px; margin: 2rem auto 0; }
    .faq-item { border-bottom: 1px solid var(--border-light); }
    .faq-item summary { padding: 18px 0; cursor: pointer; list-style: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--text-dark); display: flex; align-items: center; justify-content: space-between; }
    .faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); font-weight: 300; }
    .faq-item[open] summary::after { content: "\2212"; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-answer { padding: 0 0 18px; font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

    /* FORM */
    .form-section { background: var(--bg-green-tint); }
    .quote-form { max-width: 760px; margin: 2rem auto 0; background: var(--bg-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
    .form-group { display: flex; flex-direction: column; }
    .form-group.full-width { grid-column: 1 / -1; }
    .form-group label { font-weight: 600; font-size: 0.88rem; margin-bottom: 5px; color: var(--text-dark); }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid var(--border-light); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-body); transition: border-color var(--transition); background: var(--bg-white); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(7,115,73,0.1); }
    .form-group textarea { resize: vertical; }
    .form-submit { text-align: center; margin-top: 24px; }
    .form-reassurance { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; }

    /* FOOTER */
    .site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.85); padding: 60px 0 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand p { font-size: 0.9rem; margin-top: 1rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
    .footer-brand img { height: 40px; width: auto; margin-bottom: 0.5rem; }
    .footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
    .footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.88rem; padding: 4px 0; transition: color var(--transition); }
    .footer-col a:hover { color: var(--accent); }
    .footer-contact p, .footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
    .footer-contact a:hover { color: var(--accent); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

    /* FLOATING MOBILE BAR */
    .mobile-float-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: #fff; box-shadow: 0 -2px 12px rgba(0,0,0,0.12); padding: 10px 12px; gap: 10px; }
    .mobile-float-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 10px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; text-align: center; }
    .float-call { background: var(--primary); color: #fff; }
    .float-call:hover { color: #fff; }
    .float-quote { background: var(--accent); color: var(--text-dark); }
    .float-quote:hover { color: var(--text-dark); }

    /* WHY US */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2.5rem; }
    .why-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: all var(--transition); }
    .why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .why-icon { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
    .why-card h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
    .why-card p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 0; }

    /* STEPS */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2.5rem; counter-reset: step; }
    .step-card { position: relative; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 30px 24px 24px; box-shadow: var(--shadow-sm); }
    .step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.8rem; }
    .step-card h3 { color: var(--primary-dark); font-size: 1.1rem; margin-bottom: 0.4rem; }
    .step-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

    /* GUIDE */
    .guide-wrap { max-width: 880px; margin: 2rem auto 0; }
    .guide-block { margin-bottom: 2.2rem; }
    .guide-block h3 { color: var(--primary-dark); margin-bottom: 0.6rem; }
    .guide-block p { font-size: 0.98rem; color: var(--text-body); }
    .guide-block ul { margin: 0 0 1rem 1.2rem; }
    .guide-block ul li { font-size: 0.96rem; color: var(--text-body); padding: 4px 0; }
    .guide-note { background: var(--bg-green-tint); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 18px 22px; margin-top: 1rem; }
    .guide-note p { margin-bottom: 0; font-size: 0.95rem; color: var(--primary-dark); }

    /* SEASON TABLE */
    .table-wrap { overflow-x: auto; margin-top: 1rem; }
    .season-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 560px; }
    .season-table th, .season-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-light); }
    .season-table th { background: var(--bg-green-tint); color: var(--primary-dark); font-weight: 700; }
    .season-table td { color: var(--text-light); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .guarantee-grid, .holidays-grid { grid-template-columns: 1fr; }
      .guarantee-image { order: -1; }
      .global-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .header-nav { display: none; }
      .header-ctas .btn-primary, .header-ctas .btn-green { display: none; }
      .hamburger { display: flex; }
      .dest-grid { grid-template-columns: 1fr; }
      .global-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .quote-form { padding: 24px; }
      .hero { min-height: 70vh; }
      .hero-content { padding: 40px 20px; }
      .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 0.8rem; }
      .hero-summary { font-size: 0.95rem; margin-bottom: 1.5rem; }
      .hero-ctas .btn-lg { padding: 14px 28px; font-size: 1rem; }
      .section-padding { padding: 50px 0; }
      .cta-banner { padding: 40px 20px; }
      .cta-banner-btns { flex-direction: column; align-items: center; }
      .cta-banner-btns .btn { width: 100%; max-width: 320px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .mobile-float-bar { display: flex; }
      .site-footer { padding-bottom: 80px; }
      .trust-item { font-size: 0.84rem; padding: 0 24px; }
      .dest-card img, .global-card img { height: 180px; }
      .inline-cta-row { flex-direction: column; align-items: flex-start; }
      .why-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .hero h1 { font-size: 1.5rem; }
      .hero h1 span { font-size: 0.88rem; }
      .hero-summary { font-size: 0.88rem; }
      .hero-ctas { flex-direction: column; align-items: center; }
      .hero-ctas .btn-lg { width: 100%; padding: 16px 20px; }
      .hero-microtrust { font-size: 0.78rem; }
      .btn-lg { padding: 16px 28px; font-size: 1rem; }
    }

    /* ============ MULTI-STEP QUOTE FORM ============ */
    .a1qf { --qf-radius: 14px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-body); line-height: 1.5; }
    .a1qf *, .a1qf *::before, .a1qf *::after { box-sizing: border-box; }
    .a1qf .qf-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--qf-radius); padding: 20px 18px 22px; box-shadow: var(--shadow-md); max-width: 520px; margin: 0 auto; }
    @media (min-width: 600px) { .a1qf .qf-card { padding: 28px 30px; } }
    .a1qf .qf-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--primary-dark); background: var(--bg-green-tint); border: 1px solid var(--border-light); padding: 4px 10px; border-radius: 100px; margin-bottom: 8px; }
    .a1qf .qf-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; line-height: 1.2; color: var(--text-dark); margin: 0 0 4px; }
    @media (min-width: 600px) { .a1qf .qf-title { font-size: 1.6rem; } }
    .a1qf .qf-sub { font-size: 0.86rem; color: var(--text-light); margin: 0; }
    .a1qf .qf-trust { font-size: 11.5px; color: var(--text-light); font-weight: 600; margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--border-light); line-height: 1.55; }
    .a1qf .qf-trust .qf-dot { margin: 0 5px; opacity: .5; }
    .a1qf .qf-progwrap { display: flex; align-items: center; justify-content: space-between; margin: 14px 0; }
    .a1qf .qf-bars { display: flex; gap: 5px; flex: 1; }
    .a1qf .qf-bars i { flex: 1; height: 5px; border-radius: 5px; background: var(--border-light); transition: background .25s; font-style: normal; }
    .a1qf .qf-bars i.on { background: var(--accent); }
    .a1qf .qf-stepnum { font-size: 11px; font-weight: 700; color: var(--primary-dark); margin-left: 10px; white-space: nowrap; }
    .a1qf .qf-step { display: none; }
    .a1qf .qf-step.active { display: block; animation: qfIn .2s ease; }
    @keyframes qfIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
    .a1qf .qf-q { font-size: 13px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--primary-dark); margin: 14px 0 8px; }
    .a1qf .qf-q:first-of-type { margin-top: 0; }
    .a1qf .qf-hint { font-size: 11px; color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 5px; }
    .a1qf .qf-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .a1qf .qf-chip { border: 2px solid var(--border-light); background: #fff; border-radius: 100px; padding: 7px 13px; font-size: 12.5px; font-weight: 600; cursor: pointer; user-select: none; line-height: 1.2; color: var(--text-body); transition: border-color .15s, background .15s, color .15s; }
    .a1qf .qf-chip:hover { border-color: var(--primary); }
    .a1qf .qf-chip.sel { background: var(--primary); border-color: var(--primary); color: #fff; }
    .a1qf .qf-chip:focus-visible { outline: 3px solid rgba(7,115,73,.35); outline-offset: 2px; }
    .a1qf .qf-field { margin-bottom: 12px; }
    .a1qf .qf-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
    .a1qf .qf-field .req { color: #dc2626; }
    .a1qf .qf-field .opt { color: var(--text-light); font-weight: 400; }
    .a1qf .qf-field input, .a1qf .qf-field textarea { width: 100%; border: 2px solid var(--border-light); border-radius: 9px; padding: 11px 13px; font-size: 16px; font-family: inherit; color: var(--text-body); background: #fff; transition: border-color .15s; }
    .a1qf .qf-field input:focus, .a1qf .qf-field textarea:focus { outline: none; border-color: var(--primary); }
    .a1qf .qf-field textarea { resize: vertical; min-height: 60px; }
    .a1qf .qf-err { border-color: #dc2626 !important; background: #fef2f2; }
    .a1qf .qf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .a1qf .qf-msg { display: none; font-size: 12.5px; font-weight: 600; color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 8px 11px; margin-top: 10px; }
    .a1qf .qf-msg.show { display: block; }
    .a1qf .qf-actions { display: flex; gap: 9px; margin-top: 16px; }
    .a1qf .qf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; flex: 1; padding: 13px 18px; border-radius: 9px; font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700; cursor: pointer; border: 2px solid transparent; min-height: 48px; text-decoration: none; transition: background .18s, transform .12s; }
    .a1qf .qf-btn:active { transform: scale(.98); }
    .a1qf .qf-gold { background: var(--accent); color: var(--text-dark); border-color: var(--accent); }
    .a1qf .qf-gold:hover { background: var(--accent-hover); color: var(--text-dark); }
    .a1qf .qf-green { background: var(--primary); color: #fff; border-color: var(--primary); }
    .a1qf .qf-green:hover { background: var(--primary-dark); color: #fff; }
    .a1qf .qf-back { background: #fff; color: var(--primary-dark); border: 2px solid var(--border-light); flex: 0 0 auto; min-width: 80px; }
    .a1qf .qf-back:hover { border-color: var(--primary); }
    .a1qf .qf-btn[disabled] { opacity: .7; cursor: default; }
    .a1qf .qf-fine { font-size: 11px; color: var(--text-light); margin: 10px 0 0; text-align: center; line-height: 1.5; }
    .a1qf .qf-success { display: none; text-align: center; padding: 6px 2px; }
    .a1qf .qf-success.show { display: block; animation: qfIn .25s ease; }
    .a1qf .qf-tick { width: 56px; height: 56px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; margin: 2px auto 14px; font-size: 28px; color: #16a34a; }
    .a1qf .qf-success h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: var(--primary-dark); margin: 0 0 8px; }
    .a1qf .qf-success p { font-size: 13.5px; color: var(--text-body); margin: 0 auto 10px; max-width: 340px; }
    .a1qf .qf-ref { display: inline-block; background: var(--bg-light); border: 1px dashed var(--border-light); border-radius: 8px; padding: 7px 14px; font-size: 13px; color: var(--text-light); margin: 4px 0 16px; }
    .a1qf .qf-ref b { color: var(--primary-dark); letter-spacing: .5px; }
    .a1qf .qf-success-actions { display: flex; flex-direction: column; gap: 8px; }
    .a1qf .qf-success-actions .qf-btn { flex: none; width: 100%; }

    /* ============ MODAL ============ */
    .a1-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(11,46,31,.72); backdrop-filter: blur(3px); overflow-y: auto; }
    .a1-modal.open { display: flex; animation: qfIn .2s ease; }
    .a1-modal__inner { position: relative; width: 100%; max-width: 560px; margin: auto; }
    .a1-modal__close { position: absolute; top: -14px; right: -6px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: none; background: #fff; color: var(--text-dark); font-size: 20px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; }
    .a1-modal__close:hover { background: var(--accent); }
    @media (max-width: 600px) { .a1-modal { padding: 14px; align-items: flex-start; } .a1-modal__close { top: -10px; right: 0; } }

    /* ============ EXIT INTENT ============ */
    .a1-exit__banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 22px 26px 18px; text-align: center; }
    .a1-exit__banner h2 { color: #fff; font-size: 1.5rem; margin: 0 0 6px; }
    .a1-exit__banner p { color: rgba(255,255,255,.92); font-size: 0.92rem; margin: 0; }
    .a1-exit__badge { display: inline-block; background: var(--accent); color: var(--text-dark); font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; margin-bottom: 10px; }
    .a1-exit .qf-card { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-top: none; max-width: none; }
    .a1-exit__decline { display: block; width: 100%; margin-top: 12px; background: none; border: none; color: var(--text-light); font-family: 'Inter', sans-serif; font-size: 12.5px; text-decoration: underline; cursor: pointer; padding: 6px; }
    .a1-exit__decline:hover { color: var(--text-dark); }

    @media (prefers-reduced-motion: reduce) { .trust-track, .a1-modal.open, .a1qf .qf-step.active { animation: none !important; } }

    /* ============================================================
       NEW COMPONENTS FOR THE MULTI-PAGE SITE
       Everything above this line is the original homepage design
       system. Everything below extends it using the same tokens.
       ============================================================ */

    /* DROPDOWN NAV */
    .nav-drop { position: relative; }
    .nav-drop > a { display: inline-flex; align-items: center; gap: 4px; }
    .nav-caret { font-size: 0.7em; opacity: 0.8; }
    .nav-drop-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); padding: 8px 0; display: none; z-index: 1001; }
    .nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
    .nav-drop-menu a { display: block; color: var(--text-body); padding: 10px 18px; font-size: 0.88rem; border-radius: 0; }
    .nav-drop-menu a:hover { background: var(--bg-green-tint); color: var(--primary-dark); }
    .nav-drop:nth-last-child(-n+3) .nav-drop-menu { left: auto; right: 0; }
    .nav-drop-menu a.nav-quote-link { font-weight: 700; color: var(--primary-dark); background: var(--bg-green-tint); border-bottom: 1px solid var(--border-light); }
    .nav-drop-menu a.nav-quote-link:hover { background: var(--accent); color: var(--text-dark); }
    .nav-drop-menu a:last-child { font-weight: 600; color: var(--primary-dark); border-top: 1px solid var(--border-light); }
    .nav-highlight { background: var(--accent); color: var(--text-dark) !important; font-weight: 700; border-radius: 6px; }
    .nav-highlight:hover { background: var(--accent-hover) !important; }
    .mobile-nav-sub { padding-left: 22px !important; font-size: 0.95rem !important; opacity: 0.85; }

    /* BREADCRUMBS */
    .breadcrumbs { background: var(--bg-light); border-bottom: 1px solid var(--border-light); padding: 10px 0; font-size: 0.85rem; }
    .breadcrumbs .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
    .breadcrumbs a { color: var(--text-light); }
    .breadcrumbs a:hover { color: var(--primary); }
    .breadcrumbs [aria-current] { color: var(--primary-dark); font-weight: 600; }
    .crumb-sep { color: var(--border-light); }

    /* INNER PAGE HERO */
    .page-hero { position: relative; background: var(--bg-green-tint); overflow: hidden; }
    .page-hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 56px 24px; text-align: center; }
    .page-hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.7rem); margin-bottom: 0.8rem; }
    .page-hero--image { background: var(--bg-dark); }
    .page-hero-bg { position: absolute; inset: 0; z-index: 1; }
    .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
    .page-hero--image h1, .page-hero--image .page-intro, .page-hero--image .article-meta { color: #fff; }
    .page-hero--image .page-intro { opacity: 0.95; }
    .page-eyebrow { display: inline-block; background: var(--accent); color: var(--text-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
    .page-intro { font-size: 1.08rem; line-height: 1.75; color: var(--text-light); max-width: 720px; margin: 0 auto 1.4rem; }
    .article-meta { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.2rem; }
    .page-hero .hero-ctas { margin-bottom: 0.8rem; }
    .page-hero .hero-microtrust { color: inherit; font-size: 0.85rem; opacity: 0.85; }

    /* LONG-FORM PROSE */
    .prose { max-width: 820px; }
    .prose h2 { margin-top: 2.4rem; }
    .prose h3 { margin-top: 1.6rem; color: var(--primary-dark); }
    .prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
    .prose li { padding: 3px 0; }
    .prose img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 1.4rem 0; }
    .prose blockquote { border-left: 4px solid var(--primary); background: var(--bg-green-tint); border-radius: var(--radius); padding: 16px 20px; margin: 1.4rem 0; }
    .prose blockquote p { margin: 0; color: var(--primary-dark); }
    .prose table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin: 1rem 0 1.4rem; }
    .prose table th, .prose table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-light); }
    .prose table th { background: var(--bg-green-tint); color: var(--primary-dark); font-weight: 700; }
    .quote-inline { font-weight: 700; color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; cursor: pointer; }
    .quote-inline:hover { color: var(--accent-hover); }

    /* HUB GRID */
    .hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .hub-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: all var(--transition); display: flex; flex-direction: column; color: var(--text-body); }
    .hub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); color: var(--text-body); }
    .hub-card img { width: 100%; height: 170px; object-fit: cover; }
    .hub-card-body { padding: 20px 22px; }
    .hub-card-body h3 { color: var(--primary-dark); font-size: 1.08rem; margin-bottom: 0.4rem; }
    .hub-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.7rem; }

    /* RELATED BLOCK */
    .related-block { padding: 60px 0; background: var(--bg-light); border-top: 1px solid var(--border-light); }
    .related-block h2 { margin-bottom: 1.4rem; }
    .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .related-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; transition: all var(--transition); color: var(--text-body); }
    .related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .related-card strong { color: var(--primary-dark); font-size: 0.98rem; line-height: 1.4; }
    .related-card span { font-size: 0.84rem; color: var(--text-light); }

    /* PLAN YOUR TRIP CROSS-LINK BLOCK */
    .plan-trip { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 34px 34px 28px; }
    .plan-trip h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 1.2rem; }
    .plan-trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 1.4rem; }
    .plan-trip-card { display: flex; flex-direction: column; gap: 4px; background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px 18px; transition: all var(--transition); color: var(--text-body); }
    .plan-trip-card:hover { background: var(--bg-green-tint); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
    .plan-trip-card strong { color: var(--primary-dark); font-size: 0.95rem; }
    .plan-trip-card span { font-size: 0.82rem; color: var(--text-light); }
    .plan-trip-icon { font-size: 1.4rem; }
    .plan-trip-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--border-light); padding-top: 18px; }
    .plan-trip-cta p { margin: 0; font-weight: 600; color: var(--text-dark); }

    /* AFFILIATE WIDGET SLOTS */
    .widget-section .container { max-width: 980px; }
    .widget-slot { margin-bottom: 2.4rem; }
    .widget-heading { color: var(--primary-dark); }
    .widget-sub { font-size: 0.92rem; color: var(--text-light); max-width: 720px; }
    .vip-widget-actions { margin: 0 0 2.6rem; }
    .vip-widget-actions .btn { margin-bottom: 0.8rem; }
    .vip-widget-actions p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
    .vip-hotel-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0.6rem 0 1.1rem; }
    .vip-hotel-chips .btn { margin-bottom: 0; }
    .vip-secondary-partner { margin-top: 1rem !important; padding-top: 0.9rem; border-top: 1px solid var(--border-light); }
    .vip-dest { margin-bottom: 2.2rem; }
    .vip-dest-heading { color: var(--primary-dark); font-size: 1.05rem; margin: 0 0 0.5rem; padding-bottom: 0.35rem; border-bottom: 2px solid var(--accent); display: inline-block; }
    .widget-placeholder { display: flex; gap: 16px; align-items: center; background: var(--bg-white); border: 2px dashed var(--border-light); border-radius: var(--radius-lg); padding: 26px 28px; }
    .widget-placeholder-icon { font-size: 2rem; }
    .widget-placeholder p { margin: 0; font-size: 0.9rem; color: var(--text-light); }
    .widget-placeholder code { background: var(--bg-green-tint); padding: 1px 6px; border-radius: 4px; font-size: 0.84em; }
    .aff-disclosure { font-size: 0.82rem; color: var(--text-light); border-top: 1px solid var(--border-light); padding-top: 14px; margin-top: 0.5rem; }
    .aff-link { font-weight: 600; }

    /* ROUTE PAGES */
    .route-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 1.4rem; }
    .route-facts span { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); color: #fff; border-radius: 100px; padding: 7px 16px; font-size: 0.85rem; }
    .page-hero:not(.page-hero--image) .route-facts span { background: var(--bg-white); border-color: var(--border-light); color: var(--primary-dark); }
    .route-facts strong { font-weight: 700; margin-right: 6px; }
    .section-note { max-width: 780px; color: var(--text-light); font-size: 0.95rem; }

    /* HOTEL / LISTICLE CARDS */
    .listing-card { display: grid; grid-template-columns: 1fr; gap: 6px; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 26px 28px; margin-bottom: 1.4rem; }
    .listing-card h3 { margin-top: 0 !important; display: flex; align-items: baseline; gap: 10px; }
    .listing-rank { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
    .listing-meta { font-size: 0.84rem; color: var(--text-light); display: flex; flex-wrap: wrap; gap: 14px; }
    .listing-meta strong { color: var(--primary-dark); }
    .listing-card p { margin-bottom: 0.6rem; }
    .listing-card .listing-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

    /* EXIT INTENT COUNTDOWN */
    .a1-exit__timer { display: flex; align-items: center; justify-content: center; gap: 10px; background: rgba(0,0,0,0.22); border-radius: 100px; padding: 8px 18px; margin-top: 12px; }
    .a1-exit__timer-label { font-size: 0.82rem; color: rgba(255,255,255,0.92); }
    .a1-exit__timer-clock { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--accent); letter-spacing: 1px; min-width: 62px; text-align: center; }

    /* QUOTE FORM CITY SUB-STEP */
    .qf-qhint { display: block; font-weight: 400; font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
    .qf-citywrap { margin-top: 14px; }

    /* DEALS TABLE */
    .deals-table td:first-child { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--primary-dark); white-space: nowrap; }
    .deal-code { background: var(--bg-green-tint); border: 1px dashed var(--primary); border-radius: 6px; padding: 3px 10px; font-size: 0.9em; cursor: pointer; }

    /* RESPONSIVE FOR NEW COMPONENTS */
    @media (max-width: 1024px) {
      .hub-grid { grid-template-columns: 1fr 1fr; }
      .related-grid { grid-template-columns: 1fr 1fr; }
      .plan-trip-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .hub-grid { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: 1fr; }
      .plan-trip-grid { grid-template-columns: 1fr; }
      .plan-trip { padding: 24px 20px; }
      .plan-trip-cta { flex-direction: column; align-items: flex-start; }
    }
