/* =============================================
   LUXHOLIA — Premium Flight Search
   style.css — Core Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
    --navy:     #0A1628;
    --navy-mid: #112240;
    --navy-lt:  #1a3a5c;
    --gold:     #C9A84C;
    --gold-lt:  #E4C47A;
    --gold-dk:  #A8822A;
    --white:    #FFFFFF;
    --off-white:#F8F6F1;
    --grey-lt:  #F2F0EB;
    --grey:     #9A9A9A;
    --grey-dk:  #4A4A4A;
    --text:     #1C1C1C;
    --red:      #E53E3E;
    --green:    #2D7D46;
    --green-lt: #E8F5EE;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;

    --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
    --shadow-md:  0 6px 24px rgba(10,22,40,0.12);
    --shadow-lg:  0 16px 48px rgba(10,22,40,0.18);
    --shadow-xl:  0 24px 72px rgba(10,22,40,0.22);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  32px;

    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 100px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.5);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── STICKY HEADER ── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    transition: all var(--transition);
}

.header-top {
    background: var(--navy-mid);
    padding: 6px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-contact-strip {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-contact-strip a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.header-contact-strip a:hover { color: var(--gold-lt); }
.header-contact-strip .icon { font-size: 0.9rem; }

.header-top-ctas { display: flex; gap: 8px; align-items: center; }

.main-nav {
    padding: 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-accent { color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-lt);
    background: rgba(201,168,76,0.1);
}

.nav-ctas { display: flex; gap: 10px; align-items: center; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p {
    font-size: 1.1rem;
    color: var(--grey-dk);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── TRUST BADGES ── */
.trust-section {
    background: var(--off-white);
    padding: 32px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.trust-text span {
    font-size: 0.78rem;
    color: var(--grey);
}

/* ── POPULAR DESTINATIONS ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform var(--transition);
}

.destination-card:hover { transform: translateY(-6px); }

.destination-card .dest-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.destination-card:hover .dest-bg { transform: scale(1.06); }

.destination-card .dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 50%, transparent 100%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 24px 20px;
}

.dest-flag { font-size: 1.5rem; margin-bottom: 8px; }

.dest-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.dest-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }

.dest-price {
    font-size: 0.8rem;
    color: var(--gold-lt);
    font-weight: 600;
    margin-bottom: 14px;
}

.dest-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── DEALS ── */
.deals-section { background: var(--navy); color: var(--white); }
.deals-section .section-header .overline { color: var(--gold-lt); }
.deals-section .section-header h2 { color: var(--white); }
.deals-section .section-header p { color: rgba(255,255,255,0.7); }

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deal-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all var(--transition);
}

.deal-card:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
}

.deal-route {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.deal-city {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.deal-arrow { color: var(--gold); font-size: 1rem; }

.deal-meta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.deal-price-wrap { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }

.deal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.deal-per { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--off-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201,168,76,0.1);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.t-text {
    font-size: 1rem;
    color: var(--grey-dk);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.t-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.t-location { font-size: 0.78rem; color: var(--grey); }
.t-route {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--gold-dk);
    background: rgba(201,168,76,0.1);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 4px;
    font-weight: 600;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-lt), var(--gold));
    z-index: 0;
}

.step-item { text-align: center; position: relative; z-index: 1; }

.step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    border: 3px solid var(--off-white);
    box-shadow: var(--shadow-md);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc { font-size: 0.88rem; color: var(--grey-dk); line-height: 1.6; }

/* ── ACTIVITY TICKER ── */
.activity-ticker {
    background: rgba(10,22,40,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 32px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    animation: fadeSlideIn 0.4s ease;
}
.activity-item:last-child { border-bottom: none; }

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.activity-time { color: var(--grey); margin-left: auto; }

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 50%, #0d2847 100%);
    color: var(--white);
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.6); }

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.footer-contact-item .f-icon { color: var(--gold); width: 18px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-fab {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }

.whatsapp-fab-label {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* ── STICKY CALL BAR ── */
.sticky-call-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 899;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sticky-call-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-call-text strong { color: var(--gold-lt); }

@media (min-width: 769px) {
    .sticky-call-bar-mobile { display: none; }
}

@media (max-width: 768px) {
    .sticky-call-bar-desktop { display: none; }
    .sticky-call-bar {
        padding: 0;
        display: block;
    }
    .sticky-call-bar a {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gold);
        color: var(--navy);
        font-size: 1rem;
        font-weight: 700;
        padding: 16px;
        text-decoration: none;
    }
    .whatsapp-fab { bottom: 80px; }
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #DDD;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-control::placeholder { color: #AAA; }

select.form-control { cursor: pointer; }

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--red);
    margin-top: 4px;
}

/* ── QUICK QUOTE FORM ── */
.quick-quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201,168,76,0.15);
}

.quick-quote-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.quick-quote-card .subtitle {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 28px;
}

/* ── CARDS ── */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); }

/* ── BADGES ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-direct { background: var(--green-lt); color: var(--green); }
.badge-stop   { background: #FFF3E0; color: #E65100; }
.badge-refund { background: var(--green-lt); color: var(--green); }
.badge-gold   { background: rgba(201,168,76,0.1); color: var(--gold-dk); }

/* ── ALERTS ── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-success { background: var(--green-lt); color: var(--green); border: 1px solid #B2DFCA; }
.alert-error   { background: #FFF5F5; color: var(--red); border: 1px solid #FEB2B2; }
.alert-info    { background: #EBF4FF; color: #2B6CB0; border: 1px solid #BEE3F8; }

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
    padding: 60px 0 48px;
    color: var(--white);
}

.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── ANIMATIONS ── */
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-grey   { color: var(--grey); }
.text-white  { color: var(--white); }
.fw-700      { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    body { padding-top: 80px; }
    .header-top { display: none; }
    .main-nav { height: 60px; }
    .nav-links, .nav-ctas, .header-top-ctas { display: none; }
    .hamburger { display: flex; }
    .nav-logo a { font-size: 1.3rem; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .trust-grid { gap: 24px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .quick-quote-card { padding: 24px 20px; }
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 24px 32px;
    overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-nav .nav-links a {
    font-size: 1.1rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: block;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-contact { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
