:root {
    --navy: #071A2B;
    --navy-2: #0C253F;
    --gold: #D6A85F;
    --gold-light: #EDC981;
    --cream: #FAF8F4;
    --text: #212529;
    --muted: #667085;
    --blue-text: #12234d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--text);
    font-family: "Poppins", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
.narrow { width: min(960px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(7, 26, 43, .18);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}
.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: flex;
    align-items: center;
    color: #fff;
    min-width: 96px;
}
.brand img { width: 72px; height: 58px; object-fit: contain; }
.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex: 1;
}
.menu a { padding: 12px 0; }
.menu a:hover, .menu a.active { color: var(--gold-light); }
.menu-dropdown { position: relative; }
.submenu {
    position: absolute;
    top: 100%;
    left: -18px;
    display: none;
    min-width: 170px;
    padding: 10px 16px;
    background: var(--navy);
    border: 1px solid rgba(214,168,95,.35);
    border-radius: 10px;
}
.menu-dropdown:hover .submenu { display: grid; gap: 6px; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.support-link { display: flex; align-items: center; gap: 10px; }
.support-link svg { width: 24px; height: 24px; color: var(--gold-light); }
.support-link span { display: grid; line-height: 1.15; }
.support-link strong { font-size: 14px; font-weight: 800; }
.support-link small { color: rgba(255,255,255,.76); font-size: 11px; }
.mobile-menu-button { display: none; }
.btn {
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    box-shadow: 0 12px 24px rgba(214,168,95,.22);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-whatsapp { background: #17a85d; color: #fff; border-radius: 999px; }

.home-hero {
    position: relative;
    min-height: 805px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}
.hero-slide {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 26, 43, .9) 0%, rgba(7, 26, 43, .36) 48%, rgba(7, 26, 43, .76) 100%),
        url("https://images.unsplash.com/photo-1595815771614-ade9d652a65d?auto=format&fit=crop&w=1920&q=90") center/cover;
}
.home-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 805px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
    gap: 72px;
    padding-top: 78px;
}
.home-hero-copy { padding-top: 44px; }
.home-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: 70px;
    line-height: .98;
    font-weight: 800;
    letter-spacing: 0;
}
.script-title {
    margin: 8px 0 22px;
    color: var(--gold-light);
    font-family: "Allura", cursive;
    font-size: 70px;
    line-height: .9;
}
.hero-intro {
    max-width: 640px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 28px;
    margin-top: 42px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.trust-item svg {
    width: 34px;
    height: 34px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
}
.trust-item span { display: grid; line-height: 1.2; }
.trust-item small { color: #fff; font-weight: 700; }
.dream-form {
    width: 430px;
    border: 1.5px solid var(--gold);
    border-radius: 18px;
    background: rgba(7, 26, 43, .48);
    box-shadow: 0 25px 75px rgba(0,0,0,.3);
    backdrop-filter: blur(18px);
    padding: 28px;
}
.dream-form h2 {
    margin: 0 0 22px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
}
.glass-field {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.glass-field input,
.glass-field select {
    width: 100%;
    height: 45px;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 7px;
    background: rgba(255,255,255,.1);
    color: #fff;
    outline: 0;
    padding: 0 13px;
}
.glass-field option { color: var(--text); }
.glass-field input::placeholder { color: rgba(255,255,255,.74); }
.phone-row { display: grid; grid-template-columns: 84px 1fr; gap: 10px; }
.phone-row select { color: var(--gold-light); font-weight: 800; }
.glass-counts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dream-submit { width: 100%; min-height: 58px; margin-top: 24px; font-weight: 900; }

.stats-strip {
    background: #fff;
    box-shadow: 0 -8px 28px rgba(7,26,43,.08);
}
.stat-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-strip-grid article {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-right: 1px solid #e4e7ec;
}
.stat-strip-grid article:last-child { border-right: 0; }
.stat-strip-grid svg { width: 35px; height: 35px; color: var(--gold); stroke-width: 1.6; }
.stat-strip-grid strong { display: block; color: var(--blue-text); font-size: 27px; line-height: 1; font-weight: 800; }
.stat-strip-grid span { color: var(--muted); font-size: 13px; }

.welcome-faq-section {
    background: #fff;
    padding: 46px 0 24px;
}
.welcome-faq-grid {
    display: flex;
    justify-content: center;
}
.welcome-card,
.faq-card {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #fbfaf7);
    box-shadow: 0 14px 34px rgba(7,26,43,.08);
    padding: 26px;
}
.welcome-card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.welcome-kicker {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}
.welcome-card h2,
.faq-card h2 {
    margin: 0 0 14px;
    color: var(--blue-text);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}
.welcome-card p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
}
.faq-card details {
    border-top: 1px solid #e4e7ec;
    padding: 13px 0;
}
.faq-card details:last-child { padding-bottom: 0; }
.faq-card summary {
    color: var(--blue-text);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}
.faq-card summary::marker { color: var(--gold); }
.faq-card details p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.faq-section {
    background: #fff;
    padding: 18px 0 46px;
}
.faq-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
    align-items: start;
}
.faq-intro {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}
.faq-intro h2 {
    margin: 0;
    color: var(--blue-text);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
}

.home-section, .plans-section, .top-selling {
    background: #fff;
    padding: 28px 0 10px;
}
.compact-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.compact-head p {
    margin: 0 0 4px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
}
.compact-head h2,
.top-selling h2 {
    margin: 0;
    color: var(--blue-text);
    font-size: 27px;
    line-height: 1.15;
    font-weight: 800;
}
.compact-head a {
    min-width: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    background: #fff;
    color: var(--blue-text);
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 800;
}
.compact-head svg { width: 16px; height: 16px; }
.mockup-card-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.destination-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: 0 10px 20px rgba(7,26,43,.16);
}
.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,43,.03), rgba(7,26,43,.82)), var(--bg) center/cover;
    transition: transform .55s ease;
}
.destination-card:hover::before { transform: scale(1.08); }
.destination-card button {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: end;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 16px;
}
.destination-card span {
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
}
.destination-card small { display: none; }
.home-plan-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.home-plan-card, .more-plan-card {
    position: relative;
    min-height: 205px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 20px rgba(7,26,43,.16);
}
.home-plan-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-plan-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,43,.02), rgba(7,26,43,.88));
}
.plan-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    border-radius: 6px;
    background: var(--gold-light);
    color: var(--navy);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
}
.home-plan-card div {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: 14px;
}
.home-plan-card h3 { margin: 0 0 9px; color: #fff; font-size: 22px; font-weight: 800; }
.home-plan-card p { margin: 0; color: #fff; font-size: 12px; font-weight: 700; }
.home-plan-card strong { font-size: 16px; }
.more-plan-card {
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
}
.more-plan-card > svg { width: 45px; height: 45px; color: var(--gold); }
.more-plan-card strong { margin-top: 10px; font-size: 32px; font-weight: 900; }
.more-plan-card span { font-size: 18px; font-weight: 800; }
.more-plan-card small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--gold-light);
    font-weight: 900;
}
.more-plan-card small svg { width: 15px; height: 15px; }
.timeline-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    margin-top: 12px;
    color: var(--blue-text);
    font-size: 11px;
    text-align: center;
}
.timeline-row span {
    position: relative;
    display: grid;
    gap: 2px;
    border-top: 1px solid #ead7ad;
    padding: 10px 3px 0;
    font-weight: 800;
}
.timeline-row b {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--gold);
    padding: 0 5px;
}
.timeline-row small { color: var(--blue-text); font-weight: 700; }
.international-home { padding-top: 22px; }
.top-selling { padding-bottom: 28px; }
.top-selling h2 { margin-bottom: 16px; font-size: 21px; }
.icon-destination-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    border-top: 1px solid #eee7dc;
    border-bottom: 1px solid #eee7dc;
}
.icon-destination-grid button {
    display: grid;
    justify-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--blue-text);
    padding: 13px 4px;
    font-size: 11px;
}
.icon-destination-grid svg { width: 25px; height: 25px; color: var(--gold); stroke-width: 1.6; }
.top-image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.top-image-grid button {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 10px 20px rgba(7,26,43,.16);
    padding: 0;
    text-align: left;
}
.top-image-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.top-image-grid button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,26,43,.1), rgba(7,26,43,.86));
}
.top-image-grid button:hover img { transform: scale(1.08); }
.top-image-grid span,
.top-image-grid strong,
.top-image-grid small {
    position: relative;
    z-index: 1;
}
.top-image-grid span {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--navy);
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 900;
}
.top-image-grid strong {
    display: block;
    margin: 120px 14px 4px;
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
}
.top-image-grid small {
    display: block;
    margin: 0 14px 14px;
    color: rgba(255,255,255,.82);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.why-band {
    background:
        linear-gradient(90deg, var(--navy) 0%, var(--navy) 56%, rgba(7,26,43,.78) 100%),
        url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1500&q=85") right center/cover;
    color: #fff;
    padding: 28px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 34px;
}
.why-band h2 { margin: 0 0 24px; color: #fff; font-size: 27px; font-weight: 800; }
.why-icons { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.why-icons article {
    display: grid;
    justify-items: center;
    gap: 5px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.22);
    padding: 0 10px;
}
.why-icons article:last-child { border-right: 0; }
.why-icons svg { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.6; }
.why-icons strong { font-size: 12px; font-weight: 800; }
.why-icons span { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 600; }
.why-grid > img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; }

.home-cta {
    background: #fff;
    padding: 42px 0;
}
.home-cta-panel {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: var(--navy);
    color: #fff;
    padding-right: 34px;
}
.home-cta-panel img { width: 100%; height: 250px; object-fit: cover; }
.home-cta-panel p { margin: 0 0 8px; color: var(--gold-light); font-weight: 800; }
.home-cta-panel h2 { margin: 0; color: #fff; font-size: 42px; line-height: 1.05; }
.home-cta-panel span { display: block; margin: 12px 0 20px; color: rgba(255,255,255,.78); }

.footer {
    background: #fff;
    color: var(--blue-text);
    padding: 34px 0 18px;
    border-top: 1px solid #e4e7ec;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1fr 1fr 1fr 1.1fr;
    gap: 26px;
}
.footer img { height: 54px; filter: none; }
.footer h3 { margin: 0 0 12px; color: var(--blue-text); font-size: 14px; font-weight: 800; }
.footer p, .footer a {
    color: var(--blue-text);
    font-size: 12px;
    line-height: 1.7;
}
.footer-brand p { color: var(--muted); }
.footer-column {
    display: grid;
    align-content: start;
    gap: 8px;
}
.footer-column p {
    display: flex;
    align-items: start;
    gap: 8px;
    margin: 0;
}
.footer-column p svg { width: 15px; height: 15px; color: var(--gold); flex: 0 0 auto; }
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
}
.social-row svg { width: 20px; height: 20px; color: var(--blue-text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    border-top: 1px solid #e4e7ec;
    padding-top: 16px;
    color: var(--muted);
    font-size: 12px;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(7,26,43,.72);
}
.modal.is-open { display: flex; }
.modal-panel, .lead-form, .admin-card, .contact-panel {
    width: min(560px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    padding: 24px;
    box-shadow: 0 24px 70px rgba(7,26,43,.2);
}
.modal-top { display: flex; justify-content: space-between; gap: 16px; }
.modal-panel h2, .lead-form h2 { margin: 0 0 10px; color: var(--blue-text); }
.modal-close { border: 0; background: transparent; color: var(--muted); font-size: 34px; line-height: 1; }
.field {
    display: block;
    margin-top: 14px;
    color: var(--blue-text);
    font-size: 13px;
    font-weight: 800;
}
.field input, .field select, .field textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    padding: 13px 14px;
    outline: 0;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.modal-phone-row { display: grid; grid-template-columns: 82px 1fr; gap: 10px; }
.form-submit { width: 100%; margin-top: 18px; }
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
}
.mobile-sticky-actions { display: none; }

.section { padding: 72px 0; }
.subpage-hero {
    min-height: 430px;
    display: grid;
    align-items: end;
    padding: 118px 0 70px;
    color: #fff;
    background: linear-gradient(90deg, rgba(7,26,43,.84), rgba(7,26,43,.42)), var(--hero) center/cover;
}
.subpage-hero h1 { margin: 0; color: #fff; font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.subpage-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.84); font-size: 17px; line-height: 1.7; }
.eyebrow { margin: 0 0 10px; color: var(--gold-light); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.about-hero { --hero: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1700&q=85"); }
.packages-hero { --hero: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1700&q=85"); }
.domestic-hero { --hero: url("https://images.unsplash.com/photo-1548013146-72479768bada?auto=format&fit=crop&w=1700&q=85"); }
.international-hero { --hero: url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&w=1700&q=85"); }
.visa-hero { --hero: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1700&q=85"); }
.contact-hero { --hero: url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=1700&q=85"); }
.split-grid, .contact-grid, .package-choice-grid, .plan-grid, .visa-grid, .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.contact-grid, .split-grid { grid-template-columns: .9fr 1.1fr; }
.package-choice-grid { grid-template-columns: repeat(2, 1fr); }
.plan-card, .visa-grid article, .feature-list article {
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(7,26,43,.08);
}
.plan-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.plan-body, .visa-grid article, .feature-list article { padding: 18px; }
.duration { color: var(--gold); font-size: 12px; font-weight: 900; }
.world-band { background: var(--navy); color: #fff; }
.region-block { margin-top: 32px; }
.region-block h3 { color: var(--gold-light); }
.destination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.destination-grid.mini { grid-template-columns: repeat(5, 1fr); }
.destination-card.tall { min-height: 260px; }

@media (max-width: 1180px) {
    .container { width: min(100% - 36px, 1000px); }
    .header-actions { display: none; }
    .menu { gap: 22px; }
    .home-hero-grid { grid-template-columns: 1fr; padding-bottom: 44px; }
    .dream-form { width: min(430px, 100%); }
    .mockup-card-grid, .home-plan-grid { grid-template-columns: repeat(3, 1fr); }
    .icon-destination-grid, .top-image-grid { grid-template-columns: repeat(4, 1fr); }
    .destination-grid, .destination-grid.mini { grid-template-columns: repeat(3, 1fr); }
    .faq-wrap { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-icons { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
    .home-hero-copy h1 { font-size: 58px; }
    .script-title { font-size: 58px; }
    .trust-row { grid-template-columns: repeat(2, max-content); }
    .stat-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-strip-grid article:nth-child(2) { border-right: 0; }
    .mockup-card-grid, .home-plan-grid { grid-template-columns: repeat(2, 1fr); }
    .top-image-grid { grid-template-columns: repeat(3, 1fr); }
    .destination-grid, .destination-grid.mini, .plan-grid, .visa-grid, .feature-list { grid-template-columns: repeat(2, 1fr); }
    .contact-grid, .split-grid, .package-choice-grid { grid-template-columns: 1fr; }
    .home-cta-panel { grid-template-columns: 280px 1fr; }
    .home-cta-panel h2 { font-size: 34px; }
}

@media (max-width: 760px) {
    body { padding-bottom: 66px; }
    .container { width: min(100% - 28px, 560px); }
    .topbar { position: sticky; background: var(--navy); }
    .nav { min-height: 70px; flex-wrap: wrap; }
    .brand { min-width: auto; }
    .brand img { width: 62px; height: 50px; }
    .mobile-menu-button {
        display: inline-flex;
        margin-left: auto;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 8px;
        background: transparent;
        color: #fff;
        padding: 9px 12px;
        font-weight: 800;
    }
    .menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--navy);
        border: 1px solid rgba(214,168,95,.35);
        border-radius: 10px;
        padding: 10px 16px;
    }
    .menu.is-open { display: flex; }
    .submenu { position: static; display: grid; border: 0; padding: 6px 0 6px 18px; }
    .home-hero { min-height: 0; }
    .home-hero-grid { min-height: 0; padding: 60px 0 34px; gap: 26px; }
    .home-hero-copy { padding-top: 0; }
    .home-hero-copy h1 { font-size: 45px; }
    .script-title { font-size: 45px; }
    .hero-intro { font-size: 15px; }
    .trust-row, .stat-strip-grid, .mockup-card-grid, .home-plan-grid, .timeline-row,
    .footer-top, .home-cta-panel, .form-grid, .counter-grid, .split-grid, .contact-grid,
    .package-choice-grid, .plan-grid, .visa-grid, .feature-list, .destination-grid, .destination-grid.mini {
        grid-template-columns: 1fr;
    }
    .welcome-faq-section { padding: 30px 0 10px; }
    .welcome-card, .faq-card { padding: 20px; border-radius: 10px; }
    .welcome-card h2, .faq-card h2, .faq-intro h2 { font-size: 25px; }
    .welcome-card p:last-child { font-size: 14px; line-height: 1.75; }
    .faq-section { padding: 24px 0 34px; }
    .faq-wrap { grid-template-columns: 1fr; gap: 16px; }
    .faq-intro { padding-left: 14px; }
    .glass-counts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dream-form { padding: 20px; }
    .stat-strip-grid article { border-right: 0; border-bottom: 1px solid #e4e7ec; }
    .compact-head { align-items: start; flex-direction: column; }
    .destination-card { min-height: 215px; }
    .timeline-row { display: none; }
    .icon-destination-grid, .top-image-grid { grid-template-columns: repeat(2, 1fr); }
    .why-icons { grid-template-columns: repeat(2, 1fr); }
    .why-icons article { border-right: 0; }
    .home-cta-panel { padding: 0 0 24px; }
    .home-cta-panel div { padding: 0 22px; }
    .home-cta-panel h2 { font-size: 30px; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { display: none; }
    .mobile-sticky-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--navy);
        border-top: 1px solid rgba(214,168,95,.35);
    }
    .mobile-sticky-actions a, .mobile-sticky-actions button {
        display: grid;
        justify-items: center;
        gap: 3px;
        border: 0;
        background: transparent;
        color: #fff;
        padding: 9px 4px;
        font-size: 11px;
        font-weight: 800;
    }
    .mobile-sticky-actions svg { width: 20px; height: 20px; color: var(--gold); }
}

@media (max-width: 460px) {
    .container { width: min(100% - 22px, 420px); }
    .home-hero-copy h1 { font-size: 38px; }
    .script-title { font-size: 38px; }
    .trust-row { grid-template-columns: 1fr; gap: 14px; }
    .glass-counts { grid-template-columns: 1fr; }
    .phone-row, .modal-phone-row { grid-template-columns: 74px 1fr; }
    .top-image-grid { grid-template-columns: 1fr; }
    .compact-head h2, .top-selling h2 { font-size: 23px; }
    .footer-top { gap: 20px; }
}
