:root {
    --ink: #17233b;
    --muted: #697487;
    --paper: #ffffff;
    --soft: #f7f9fc;
    --cream: #fff8f2;
    --line: #e8edf4;
    --coral: #f47f6d;
    --coral-dark: #df6655;
    --teal: #1db7a6;
    --navy: #11213a;
    --gold: #f5c76f;
    --radius: 8px;
    --shadow: 0 22px 55px rgba(17, 33, 58, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0 clamp(18px, 5vw, 96px);
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(17, 33, 58, .06);
    backdrop-filter: blur(14px);
}

.header-main-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    width: min(1280px, 100%);
    min-height: 82px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.logo img {
    display: block;
    width: clamp(112px, 9.5vw, 132px);
    height: auto;
}

.logo span,
.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy);
    font-size: 12px;
    font-weight: 900;
}

.header-nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
    padding: 6px;
    border: 1px solid rgba(232, 237, 244, .9);
    border-radius: 999px;
    background: rgba(247, 249, 252, .92);
    white-space: nowrap;
}

.main-nav a {
    color: var(--ink);
    padding: 9px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: #fff;
    background: var(--navy);
    transform: translateY(-1px);
}

.header-menu-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-menu-tools .button {
    min-width: 118px;
    padding-inline: 18px;
    white-space: nowrap;
}

.language-dropdown {
    position: relative;
    min-width: 168px;
}

.language-dropdown summary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    color: var(--ink);
    border: 1px solid rgba(232, 237, 244, .95);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 33, 58, .08);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-dropdown summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
    opacity: .65;
}

.language-dropdown[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.language-flag {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--soft);
    font-size: 15px;
    line-height: 1;
}

.language-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.language-short {
    color: var(--muted);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 80;
    display: grid;
    gap: 5px;
    width: max(100%, 220px);
    padding: 8px;
    border: 1px solid rgba(232, 237, 244, .95);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(17, 33, 58, .18);
    backdrop-filter: blur(12px);
}

.language-dropdown-menu a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--ink);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 850;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.language-dropdown-menu a:hover,
.language-dropdown-menu a.is-active {
    color: #fff;
    background: var(--navy);
    transform: translateY(-1px);
}

.language-dropdown-menu a:hover .language-short,
.language-dropdown-menu a.is-active .language-short {
    color: rgba(255, 255, 255, .72);
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, #f79a88, var(--coral-dark));
    box-shadow: 0 16px 30px rgba(244, 127, 109, .28);
}

.button.glass {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
}

.button.ghost {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(17, 33, 58, .14);
}

.button.is-disabled,
.button[aria-disabled="true"] {
    opacity: .56;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17, 33, 58, .18), rgba(17, 33, 58, .64)),
        var(--hero),
        var(--hero-fallback, var(--hero)),
        linear-gradient(135deg, #7abeb6, #f2b097);
    background-size: cover;
    background-position: center;
}

.home-travel-hero {
    display: grid;
    min-height: calc(100vh - 82px);
    padding: clamp(92px, 12vw, 166px) clamp(20px, 6vw, 96px) clamp(108px, 13vw, 180px);
    place-items: center;
    text-align: center;
}

.home-travel-hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 56px;
    background: #fff;
    clip-path: polygon(0 42%, 8% 58%, 16% 46%, 26% 70%, 38% 52%, 48% 76%, 62% 54%, 72% 72%, 84% 48%, 100% 64%, 100% 100%, 0 100%);
    content: "";
}

.home-hero-layout {
    position: relative;
    z-index: 1;
    display: block;
    width: min(980px, 100%);
    margin: 0 auto;
}

.hero-copy {
    width: min(900px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.hero .eyebrow {
    color: #fff;
    font-size: clamp(18px, 2.1vw, 26px);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    color: inherit;
}

h1 {
    margin: 0;
    font-size: clamp(46px, 8vw, 104px);
    line-height: .96;
}

h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
}

h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.home-travel-hero h1 {
    max-width: 920px;
    margin-inline: auto;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    text-wrap: balance;
}

.home-travel-hero .hero-copy > p {
    max-width: 710px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .93);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.hero-chip-row,
.hero-facts,
.premium-finder-shell,
.offer-strip-band {
    display: none;
}

.band {
    padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 96px);
}

.section-head,
.package-grid,
.destination-grid,
.info-grid,
.metric-grid,
.collection-grid,
.premium-pillars-grid,
.landing-panels-grid,
.landing-link-grid,
.landing-compare-table,
.activity-list,
.hotel-strip,
.itinerary-layout,
.package-detail,
.static-content-band,
.facts-band,
.contact-cta-strip > *,
.footer-brand,
.footer-columns {
    width: min(1280px, 100%);
    margin-inline: auto;
}

.section-head {
    display: block;
    margin-bottom: 34px;
    text-align: center;
}

.section-head h2 {
    max-width: 820px;
    margin: 8px auto 0;
    color: var(--ink);
}

.section-note {
    max-width: 620px;
    margin: 14px auto 0;
    color: var(--muted);
}

.drl-highlight-band,
.premium-packages,
.collection-band,
.packages-band {
    background: #fff;
}

.drl-highlight-band {
    padding-top: clamp(72px, 9vw, 118px);
}

.metric-grid,
.collection-grid,
.info-grid,
.premium-pillars-grid,
.landing-panels-grid,
.landing-link-grid,
.activity-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
}

.metric-grid div,
.collection-grid article,
.info-card,
.hotel-card,
.activity-list article,
.premium-pillars-grid article,
.landing-panels-grid article,
.landing-link-card,
.landing-compare-table article,
.quote-panel,
.detail-main,
.reservation-planner-card,
.payment-card,
.thank-you-card,
.lead-form,
.testimonial-card,
.trust-fact-card,
.contact-action-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 33, 58, .08);
}

.metric-grid div,
.collection-grid article,
.info-card,
.hotel-card,
.activity-list article,
.premium-pillars-grid article,
.landing-panels-grid article,
.landing-link-card,
.landing-compare-table article {
    padding: 24px;
}

.metric-grid strong,
.collection-grid strong,
.fact strong {
    display: block;
    color: var(--ink);
    font-size: 24px;
}

.metric-grid span,
.collection-grid p,
.info-card p,
.hotel-card span,
.activity-list p,
.premium-pillars-grid p,
.landing-panels-grid p,
.landing-link-card span,
.landing-compare-table span {
    color: var(--muted);
}

.premium-packages .package-grid,
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.premium-package-card,
.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .22s ease;
}

.premium-package-card:hover,
.package-card:hover,
.info-card:hover,
.hotel-card:hover,
.activity-list article:hover,
.landing-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 64px rgba(17, 33, 58, .16);
}

.premium-card-media,
.card-media {
    position: relative;
    display: block;
    height: 252px;
    overflow: hidden;
    background: #dfe7ef;
}

.premium-card-media img,
.card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 252px;
    object-fit: cover;
    transition: transform .35s ease;
}

.premium-package-card:hover .premium-card-media img {
    transform: scale(1.04);
}

.premium-card-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(17, 33, 58, .62));
    content: "";
}

.premium-card-media span {
    position: absolute;
    z-index: 1;
    left: 16px;
    bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    background: var(--coral);
    font-size: 12px;
    font-weight: 900;
}

.premium-card-body,
.card-body,
.package-card {
    padding: 26px;
}

.premium-package-card .premium-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 13px;
}

.premium-card-body h3 {
    color: var(--ink);
    font-size: 23px;
}

.premium-card-body p,
.package-points li,
.check-list li {
    color: var(--muted);
}

.package-meta,
.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-meta span,
.package-price-row span,
.card-body span,
.info-card span,
.activity-list span {
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.package-points,
.check-list,
.travel-assurance-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.package-points li,
.check-list li,
.travel-assurance-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.45;
}

.package-points li::before,
.check-list li::before,
.travel-assurance-list li::before {
    position: absolute;
    left: 0;
    color: var(--coral);
    content: "✓";
    font-weight: 900;
}

.package-price-row {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.package-price-row strong {
    color: var(--coral-dark);
    font-size: 24px;
}

.collection-band,
.facts-band,
.home-search-band {
    background: var(--soft);
}

.drl-premium-story,
.split-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 48px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(17, 33, 58, .94), rgba(25, 122, 117, .84));
    color: #fff;
}

.drl-premium-story h2,
.split-band h2 {
    color: #fff;
}

.drl-premium-story p,
.split-band p,
.drl-premium-story .metric-grid span,
.split-band .metric-grid span {
    color: rgba(255, 255, 255, .8);
}

.drl-premium-story .metric-grid,
.split-band .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drl-premium-story .metric-grid div,
.split-band .metric-grid div {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.drl-premium-story .metric-grid strong,
.split-band .metric-grid strong {
    color: #fff;
}

.tour-index-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 500px);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    min-height: 560px;
    padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 96px);
    color: #fff;
    background: linear-gradient(120deg, #11213a 0%, #1b847f 100%);
}

.tour-index-hero > div,
.tour-index-hero figure {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tour-index-hero h1 {
    color: #fff;
    font-size: clamp(46px, 6vw, 86px);
}

.tour-index-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, .84);
    font-size: 19px;
}

.tour-index-hero figure {
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .12);
}

.tour-index-hero img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    object-fit: cover;
}

.tour-index-metrics,
.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tour-index-metrics span,
.hero-facts span,
.content-signal-bar span {
    padding: 12px 17px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .12);
    font-size: 13px;
    font-weight: 800;
}

.tour-index-metrics strong,
.hero-facts strong {
    color: #fff;
    font-size: 22px;
}

.destination-hero,
.package-hero,
.compact-hero {
    min-height: 68vh;
    padding: clamp(78px, 10vw, 128px) clamp(20px, 6vw, 96px) clamp(70px, 9vw, 110px);
    display: grid;
    align-items: end;
}

.destination-hero .hero-copy,
.package-hero .hero-copy,
.compact-hero .hero-copy {
    margin: 0;
}

.destination-hero h1,
.package-hero h1,
.compact-hero h1 {
    max-width: 920px;
    color: #fff;
    font-size: clamp(44px, 6vw, 84px);
}

.destination-hero p,
.package-hero p,
.compact-hero p {
    max-width: 740px;
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
}

.content-signal-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.breadcrumb-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    width: min(1280px, calc(100% - 40px));
    margin: 18px auto;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.breadcrumb-bar a {
    color: var(--muted);
}

.breadcrumb-bar strong {
    color: var(--ink);
}

.contact-cta-strip {
    position: sticky;
    top: 82px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(20px, 6vw, 96px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 34px rgba(17, 33, 58, .08);
    backdrop-filter: blur(12px);
}

.contact-cta-strip div {
    min-width: 0;
}

.contact-cta-strip strong {
    display: block;
}

.contact-cta-strip span {
    color: var(--muted);
    font-size: 13px;
}

.contact-cta-strip nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-media,
.hotel-media,
.activity-media {
    display: block;
    width: calc(100% + 48px);
    max-width: none;
    height: 180px;
    margin: -24px -24px 18px;
    object-fit: cover;
    background: #dfe7ef;
}

.hotel-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.hotel-card strong {
    display: inline-grid;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: var(--coral);
}

.package-detail,
.package-overview,
.static-content-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 34px;
    align-items: start;
    background: var(--soft);
}

.detail-main,
.quote-panel,
.reservation-planner-card,
.payment-card,
.thank-you-card,
.lead-form,
.contact-action-panel,
.trust-fact-card {
    padding: clamp(22px, 3vw, 34px);
}

.quote-panel {
    position: sticky;
    top: 112px;
}

.quote-panel > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.quote-panel strong {
    display: block;
    margin: 8px 0;
    color: var(--coral-dark);
    font-size: 34px;
    line-height: 1.1;
}

.quote-panel small {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
}

.itinerary-band,
.media-grid-band,
.faq-band,
.landing-faq-band,
.content-band {
    background: #fff;
}

.itinerary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 26px;
    align-items: start;
}

.itinerary-list {
    display: grid;
    gap: 16px;
}

.itinerary-list article {
    display: grid;
    grid-template-columns: 90px 220px minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 33, 58, .08);
}

.itinerary-list article > strong {
    display: grid;
    min-height: 100%;
    padding: 18px;
    place-items: center;
    color: #fff;
    background: var(--navy);
    text-align: center;
}

.itinerary-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.itinerary-copy {
    padding: 22px 22px 22px 0;
}

.itinerary-copy span {
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.itinerary-copy p,
.article-flow p,
.page-title p,
.lead-band p {
    color: var(--muted);
}

.itinerary-side-panel {
    position: sticky;
    top: 112px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 33, 58, .14);
}

.itinerary-side-head {
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #1b847f);
}

.itinerary-side-head .eyebrow {
    margin-bottom: 8px;
    color: #fff;
}

.itinerary-side-head h3 {
    color: #fff;
}

.itinerary-side-head p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .86);
}

.itinerary-reservation-form {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.planner-date-spot {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid #dce6ef;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #f8fbff, #fff);
}

.planner-date-spot span,
.pax-picker > span,
.sticky-reservation-summary h4,
.planner-package-benefits h4 {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.planner-date-spot strong {
    color: var(--ink);
    font-size: 18px;
}

.planner-field {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.planner-field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: var(--soft);
    font-weight: 900;
}

.pax-picker {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.pax-stepper {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
}

.pax-btn,
.pax-input {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
    font-weight: 900;
}

.pax-btn {
    cursor: pointer;
}

.pax-input {
    width: 100%;
    text-align: center;
}

.pax-picker small {
    color: var(--muted);
}

.sticky-reservation-summary.in-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #dce6ef;
    border-radius: var(--radius);
    background: #f8fbff;
    box-shadow: none;
}

.sticky-reservation-summary.in-panel ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    list-style: none;
}

.sticky-reservation-summary.in-panel li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}

.sticky-reservation-summary.in-panel li:last-child {
    border-bottom: 0;
}

.sticky-reservation-summary.in-panel li span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.sticky-reservation-summary.in-panel li strong {
    color: var(--ink);
    text-align: right;
}

.planner-price-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: end;
    padding: 16px;
    border: 0;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    box-shadow: none;
}

.planner-price-box span,
.planner-price-box small {
    color: rgba(255, 255, 255, .72);
}

.planner-price-box strong {
    color: #fff;
    font-size: 24px;
    text-align: right;
}

.planner-package-benefits {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: none;
}

.planner-package-benefits ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.planner-package-benefits li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
}

.planner-package-benefits li::before {
    position: absolute;
    left: 0;
    color: var(--teal);
    content: "✓";
    font-weight: 900;
}

.planner-actions .button {
    width: 100%;
}

.itinerary-reservation-form > small {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: #8a5b00;
    background: #fff6df;
    font-size: 13px;
}

.faq-band details,
.landing-faq-band details {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.faq-band summary,
.landing-faq-band summary {
    cursor: pointer;
    font-weight: 900;
}

.page-title {
    padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 96px);
    text-align: center;
    background: var(--soft);
}

.page-title h1 {
    max-width: 900px;
    margin-inline: auto;
    color: var(--ink);
    font-size: clamp(40px, 5vw, 76px);
}

.page-title p {
    max-width: 740px;
    margin: 18px auto 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.premium-finder-form input,
.premium-finder-form select,
.install-form input,
.wide-search input,
.mini-search input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: 3px solid rgba(244, 127, 109, .22);
    border-color: var(--coral);
}

.site-footer {
    display: grid;
    gap: 34px;
    padding: clamp(50px, 7vw, 86px) clamp(20px, 6vw, 96px);
    color: rgba(255, 255, 255, .74);
    background: var(--navy);
}

.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 26px;
}

.footer-brand p,
.footer-brand small {
    color: rgba(255, 255, 255, .72);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.footer-col {
    display: grid;
    gap: 9px;
}

.footer-col h4 {
    margin: 0 0 8px;
    color: #fff;
}

.footer-col a,
.footer-col small {
    color: rgba(255, 255, 255, .72);
}

.footer-col a:hover {
    color: #fff;
}

.screen-reader-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ad-banner {
    display: flex;
    justify-content: center;
    padding: 18px clamp(20px, 6vw, 96px);
    background: #fff;
}

.media-lightbox[hidden] {
    display: none;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(17, 33, 58, .88);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    cursor: pointer;
}

.media-lightbox img {
    max-height: 82vh;
    border-radius: var(--radius);
}

.testimonial-grid,
.answer-grid,
.decision-grid,
.tier-grid,
.priority-grid,
.cluster-list,
.bridge-links,
.term-cloud,
.admin-media-grid,
.checkout-value-strip,
.checkout-hero-metrics,
.checkout-trust-stack,
.checkout-steps,
.checkout-layout,
.checkout-grid,
.guest-grid,
.payment-chip-row,
.checkout-hero-badges,
.bank-card-meta,
.planner-actions,
.planner-package-benefits,
.payment-plan-options,
.reservation-summary,
.checkout-summary,
.checkout-total-box,
.checkout-security-badge {
    display: grid;
    gap: 18px;
}

.testimonial-grid,
.answer-grid,
.decision-grid,
.tier-grid,
.priority-grid,
.admin-media-grid,
.checkout-value-strip,
.checkout-hero-metrics,
.checkout-steps,
.guest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-compare-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.term-cloud,
.bridge-links,
.cluster-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.term-cloud a,
.bridge-links a,
.cluster-list a,
.priority-grid a,
.trust-links a {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 33, 58, .07);
}

.term-cloud a,
.bridge-links a,
.trust-links a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 900;
}

.priority-grid a span,
.cluster-list a span,
.landing-link-card span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.priority-grid a small,
.cluster-list a small {
    color: var(--muted);
}

.testimonial-card footer {
    display: grid;
    gap: 2px;
    margin-top: 18px;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.rating-row strong {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--coral);
}

.rating-row span,
.testimonial-card footer span {
    color: var(--muted);
    font-size: 13px;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 24px;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.price-calculator-form,
.calculator-result,
.checkout-main,
.checkout-payment-rail,
.checkout-summary,
.sticky-reservation-summary,
.premium-checkout-shell,
.premium-checkout-form,
.checkout-agency-card,
.guest-card,
.planner-field,
.planner-price-box,
.planner-package-benefits,
.reservation-mode label,
.payment-plan-options label,
.bank-card-visual,
.checkout-total-box,
.checkout-security-badge,
.checkout-commission-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 33, 58, .08);
}

.price-calculator-form,
.calculator-result,
.checkout-main,
.checkout-payment-rail,
.checkout-summary,
.sticky-reservation-summary,
.premium-checkout-shell,
.premium-checkout-form,
.checkout-agency-card,
.guest-card,
.planner-field,
.planner-price-box,
.planner-package-benefits,
.bank-card-visual,
.checkout-total-box,
.checkout-security-badge,
.checkout-commission-note {
    padding: 24px;
}

.price-calculator-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.price-calculator-form label,
.checkout-wizard-form label,
.premium-checkout-form label,
.reservation-form label,
.lead-form label,
.planner-field label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-calculator-form input,
.price-calculator-form select,
.checkout-wizard-form input,
.checkout-wizard-form select,
.checkout-wizard-form textarea,
.premium-checkout-form input,
.premium-checkout-form select,
.premium-checkout-form textarea,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
}

.calculator-result span,
.planner-price-box span,
.checkout-total-box span,
.checkout-summary span,
.checkout-security-badge span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.calculator-result strong,
.planner-price-box strong,
.checkout-total-box strong {
    display: block;
    color: var(--coral-dark);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.checkout-summary {
    position: sticky;
    top: 98px;
    align-self: start;
}

.checkout-summary h3 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.15;
}

.checkout-summary ul {
    display: grid;
    gap: 0;
    overflow: hidden;
    margin: 0 0 18px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    list-style: none;
}

.checkout-summary li {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.checkout-summary li:last-child {
    border-bottom: 0;
}

.checkout-summary li span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.checkout-summary li strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.checkout-total-box strong {
    font-size: clamp(30px, 3vw, 44px);
}

.checkout-wizard-band,
.reservation-band,
.price-calculator-band,
.geo-answer-band,
.trust-decision-band,
.package-decision-band,
.tier-band,
.testimonial-band,
.seo-priority-band,
.seo-hub-band,
.landing-bridge-band,
.landing-compare-band {
    background: var(--soft);
}

.checkout-hero-strip {
    display: grid;
    gap: 20px;
    padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 96px);
    color: #fff;
    background: linear-gradient(120deg, var(--navy), #1b847f);
}

.checkout-hero-strip h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(40px, 5vw, 78px);
}

.checkout-hero-strip p {
    max-width: 780px;
    color: rgba(255, 255, 255, .82);
}

.checkout-hero-badges,
.checkout-hero-metrics,
.payment-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout-hero-badges span,
.checkout-hero-metrics span,
.payment-chip-row span,
.checkout-security-badge,
.checkout-agency-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    font-size: 13px;
    font-weight: 900;
}

.checkout-hero-metrics em {
    font-style: normal;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    width: min(1280px, 100%);
    margin-inline: auto;
}

.checkout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
}

.checkout-steps span {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #fff;
    font-weight: 900;
    text-align: center;
}

.checkout-steps .is-active {
    color: #fff;
    border-color: var(--coral);
    background: var(--coral);
}

.pax-stepper,
.pax-picker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pax-btn {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.pax-input {
    width: 76px;
    text-align: center;
}

.admin-media-grid {
    width: min(1280px, 100%);
    margin-inline: auto;
}

.admin-media-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 33, 58, .08);
}

.media-grid-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.admin-media-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-media-grid figcaption {
    padding: 12px 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.static-side-stack,
.trust-links {
    display: grid;
    gap: 14px;
}

.wide-search,
.mini-search {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.wide-search button,
.mini-search button {
    border: 0;
    padding: 0 16px;
    color: #fff;
    background: var(--coral);
    cursor: pointer;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1180px) {
    .premium-packages .package-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-grid,
    .footer-columns,
    .testimonial-grid,
    .answer-grid,
    .decision-grid,
    .tier-grid,
    .priority-grid,
    .admin-media-grid,
    .checkout-value-strip,
    .checkout-hero-metrics,
    .checkout-steps,
    .guest-grid,
    .price-calculator-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-index-hero,
    .package-detail,
    .package-overview,
    .static-content-band,
    .itinerary-layout,
    .calculator-layout,
    .checkout-layout,
    .drl-premium-story,
    .split-band {
        grid-template-columns: 1fr;
    }

    .quote-panel {
        position: static;
    }

    .itinerary-side-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 0 16px;
    }

    .header-main-row {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 66px;
        gap: 12px;
    }

    .logo {
        font-size: 14px;
        white-space: normal;
    }

    .logo img {
        width: 124px;
    }

    .logo span {
        width: 42px;
        height: 42px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .header-nav-panel {
        display: none;
        grid-column: 1 / -1;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .site-header.is-mobile-open .header-nav-panel {
        display: grid;
        gap: 12px;
    }

    .main-nav,
    .header-menu-tools {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        justify-content: stretch;
    }

    .main-nav a {
        padding: 12px 14px;
        border-radius: var(--radius);
        background: var(--soft);
        white-space: normal;
    }

    .language-dropdown,
    .header-login {
        width: 100%;
    }

    .language-dropdown summary {
        border-radius: var(--radius);
        min-height: 48px;
    }

    .language-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        border-radius: var(--radius);
        box-shadow: none;
        background: var(--soft);
    }

    .home-travel-hero {
        min-height: calc(100vh - 66px);
        padding: 78px 18px 94px;
    }

    .home-travel-hero h1 {
        font-size: 48px;
    }

    .home-travel-hero .hero-copy > p {
        font-size: 17px;
    }

    .premium-packages .package-grid,
    .package-grid,
    .metric-grid,
    .collection-grid,
    .info-grid,
    .testimonial-grid,
    .answer-grid,
    .decision-grid,
    .tier-grid,
    .priority-grid,
    .admin-media-grid,
    .checkout-value-strip,
    .checkout-hero-metrics,
    .checkout-steps,
    .checkout-grid,
    .guest-grid,
    .price-calculator-form,
    .landing-compare-table,
    .premium-pillars-grid,
    .landing-panels-grid,
    .landing-link-grid,
    .activity-list,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .tour-index-hero {
        min-height: auto;
        padding: 48px 18px;
    }

    .tour-index-hero h1,
    .destination-hero h1,
    .package-hero h1,
    .compact-hero h1,
    .page-title h1 {
        font-size: 40px;
    }

    .destination-hero,
    .package-hero,
    .compact-hero {
        min-height: 58vh;
        padding: 58px 18px;
    }

    .contact-cta-strip {
        position: static;
        display: grid;
        padding: 16px 18px;
    }

    .contact-cta-strip nav,
    .contact-cta-strip nav .button {
        width: 100%;
    }

    .hotel-strip {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .itinerary-list article {
        grid-template-columns: 1fr;
    }

    .itinerary-list article > strong {
        min-height: auto;
        justify-content: start;
        text-align: left;
    }

    .itinerary-visual img {
        height: 210px;
    }

    .itinerary-copy {
        padding: 0 22px 22px;
    }

    .sticky-reservation-summary.in-panel li,
    .planner-price-box {
        grid-template-columns: 1fr;
    }

    .sticky-reservation-summary.in-panel li strong,
    .planner-price-box strong {
        text-align: left;
    }
}

@media (max-width: 420px) {
    h1,
    .home-travel-hero h1 {
        font-size: 42px;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }
}

.landing-compare-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 22px 54px rgba(17, 33, 58, .1);
}

.landing-compare-table article {
    display: grid;
    grid-template-columns: minmax(160px, .42fr) minmax(0, 1fr);
    gap: 0;
    min-height: 82px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.landing-compare-table article:nth-child(odd) {
    background: #fbf7f1;
}

.landing-compare-table article:last-child {
    border-bottom: 0;
}

.landing-compare-table strong,
.landing-compare-table span {
    display: flex;
    align-items: center;
    padding: 18px 20px;
}

.landing-compare-table strong {
    color: var(--navy);
    background: rgba(15, 47, 45, .04);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.landing-compare-table span {
    color: var(--ink);
    line-height: 1.65;
}

.contact-action-panel,
.trust-fact-card,
.trust-links {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(17, 33, 58, .09);
}

.contact-action-panel .button + .button {
    margin-top: 10px;
}

.trust-fact-list {
    overflow: hidden;
    margin-top: 18px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.trust-fact-list li {
    display: block;
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 750;
}

.trust-fact-list li::before {
    display: none;
}

.trust-fact-list li:last-child {
    border-bottom: 0;
}

.trust-links {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.trust-links a {
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.trust-links a:last-child {
    border-bottom: 0;
}

.static-hero {
    min-height: 62vh;
}

.premium-static-panel {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 22px 56px rgba(17, 33, 58, .1);
}

.premium-static-panel h2 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
}

.static-info-table {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.static-info-table div {
    display: grid;
    grid-template-columns: minmax(150px, .36fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.static-info-table div:nth-child(odd) {
    background: #fbf7f1;
}

.static-info-table div:last-child {
    border-bottom: 0;
}

.static-info-table strong,
.static-info-table span {
    padding: 16px 18px;
}

.static-info-table strong {
    color: var(--navy);
    background: rgba(15, 47, 45, .045);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.static-info-table span {
    color: var(--ink);
    font-weight: 760;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.office-card,
.about-depth-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 50px rgba(17, 33, 58, .09);
}

.office-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.office-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.office-image-trigger img {
    transition: transform .35s ease;
}

.office-image-trigger:hover img {
    transform: scale(1.025);
}

.about-section-heading {
    margin: 32px 0 8px;
    color: var(--navy);
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
}

.about-founder-quote {
    margin: 26px 0;
    padding: 22px 24px;
    color: var(--navy);
    border-left: 4px solid var(--coral);
    background: var(--soft);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 1.45;
}

html[dir="rtl"] .about-founder-quote {
    border-right: 4px solid var(--coral);
    border-left: 0;
}

.office-card > div,
.about-depth-panel {
    padding: 24px;
}

.office-card h2,
.about-depth-panel h2 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.12;
}

.office-card p,
.about-depth-panel p,
.about-depth-panel li {
    color: var(--muted);
}

.about-depth-panel.accent {
    background: #fbf7f1;
}

.about-depth-list {
    display: grid;
    gap: 12px;
}

.about-depth-list div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.about-depth-list strong {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--coral);
}

.featured-places-band {
    background: #fff;
}

.featured-place-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.featured-place-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 33, 58, .08);
}

.featured-place-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.featured-place-card div {
    padding: 20px;
}

.featured-place-card span {
    color: var(--teal);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.featured-place-card h3 {
    margin: 8px 0;
    color: var(--navy);
}

.featured-place-card p {
    color: var(--muted);
}

.view-static .contact-action-panel h2,
.view-static .trust-fact-card h2 {
    font-size: 26px;
    line-height: 1.16;
}

.view-static .static-side-stack {
    display: grid;
    gap: 18px;
}

.video-archive-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: end;
    width: min(1280px, calc(100% - 48px));
    margin: 24px auto 0;
    padding: clamp(58px, 8vw, 110px);
    color: #fff;
    background: linear-gradient(120deg, rgba(17, 33, 58, .94), rgba(24, 126, 115, .72)), url('https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?auto=format&fit=crop&w=1800&q=82') center/cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.video-archive-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5vw, 78px);
}

.video-archive-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
}

.video-archive-stat {
    display: grid;
    gap: 4px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.video-archive-stat strong {
    color: #fff;
    font-size: 58px;
    line-height: 1;
}

.video-archive-stat span,
.video-archive-stat small {
    color: rgba(255, 255, 255, .84);
    font-weight: 800;
}

.featured-video-card,
.company-video-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: center;
    width: min(1280px, 100%);
    margin-inline: auto;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    background: var(--navy);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.featured-video-card h3,
.company-video-feature h3 {
    margin: 10px 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.08;
}

.featured-video-card span,
.company-video-feature span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.video-table-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(1280px, 100%);
    margin: 24px auto 0;
}

.video-table-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 35px rgba(17, 33, 58, .08);
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--navy);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.video-thumb span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    background: var(--coral);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(244, 127, 109, .35);
}

.video-card:hover .video-thumb img {
    transform: scale(1.04);
}

.video-card-body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.video-card h3 {
    min-height: 54px;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.video-meta-table {
    display: grid;
    margin: 0;
    border: 1px solid var(--line);
}

.video-meta-table div {
    display: grid;
    grid-template-columns: 96px 1fr;
}

.video-meta-table div + div {
    border-top: 1px solid var(--line);
}

.video-meta-table dt,
.video-meta-table dd {
    margin: 0;
    padding: 10px 12px;
    font-size: 12px;
}

.video-meta-table dt {
    color: var(--muted);
    background: var(--soft);
    font-weight: 900;
    text-transform: uppercase;
}

.video-meta-table dd {
    color: var(--ink);
    font-weight: 800;
}

.motor-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: min(1280px, 100%);
    margin-inline: auto;
}

.motor-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 35px rgba(17, 33, 58, .08);
}

.motor-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--soft);
}

.motor-card div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.motor-card span {
    color: var(--coral);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.motor-card h3 {
    margin: 0;
    font-size: 20px;
}

.motor-card p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .video-archive-hero,
    .featured-video-card,
    .company-video-feature,
    .video-table-grid,
    .video-table-grid.compact,
    .motor-fleet-grid {
        grid-template-columns: 1fr;
    }

    .video-archive-hero {
        width: min(100% - 28px, 1280px);
        padding: 44px 22px;
    }
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .main-nav,
html[dir="rtl"] .header-menu-tools,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-chip-row,
html[dir="rtl"] .footer-columns,
html[dir="rtl"] .checkout-hero-badges,
html[dir="rtl"] .payment-chip-row {
    direction: rtl;
}

html[dir="rtl"] .language-dropdown-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .language-dropdown-menu a {
    direction: rtl;
}

@media (max-width: 700px) {
    .landing-compare-table article {
        grid-template-columns: 1fr;
    }

    .landing-compare-table strong,
    .landing-compare-table span {
        padding: 14px 16px;
    }

    .static-info-table div {
        grid-template-columns: 1fr;
    }

    .premium-static-panel {
        padding: 22px;
    }

    .featured-place-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-summary li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.home-service-bar {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: min(1180px, calc(100% - 32px));
    margin: -34px auto 0;
    padding: 10px;
    border: 1px solid rgba(18, 32, 28, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(18, 32, 28, .18);
    backdrop-filter: blur(18px);
}

.home-service-bar a {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 90px;
    padding: 10px;
    border: 1px solid #e2e9e4;
    border-radius: 12px;
    color: var(--ink);
    background: linear-gradient(180deg, #fff, #f7faf8);
}

.home-service-bar a > span {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: var(--service-photo);
    background-size: cover;
    background-position: center;
}

.home-service-bar strong,
.home-service-bar small {
    display: block;
    min-width: 0;
}

.home-service-bar strong {
    font-size: 15px;
    line-height: 1.15;
}

.home-service-bar small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.checkout-security-badge.success {
    margin-bottom: 16px;
    border-color: rgba(22, 163, 74, .28);
    background: #ecfdf3;
}

.payment-chip-row .muted {
    color: #8a938f;
    background: #eef2f0;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.payment-method-card {
    padding: 18px;
    border: 1px solid #d8e4df;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18, 32, 28, .1);
}

.payment-method-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #0f513f;
    background: #dff7ed;
    font-size: 12px;
    font-weight: 900;
}

.payment-method-card.is-disabled {
    opacity: .72;
    background: #f5f7f6;
}

.payment-method-card.is-disabled span {
    color: #6f5a14;
    background: #fff3c4;
}

.swift-bank-panel,
.payment-notification-form {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #dce7e1;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8fbf9);
}

.swift-bank-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
}

.swift-bank-table div {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid #dfe8e3;
    border-radius: 10px;
    background: #fff;
}

.swift-bank-table dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.swift-bank-table dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.payment-notification-form {
    display: grid;
    gap: 12px;
}

.payment-notification-form label {
    display: grid;
    gap: 6px;
    color: #26342f;
    font-weight: 900;
}

.payment-notification-form input,
.payment-notification-form textarea {
    width: 100%;
    border: 1px solid #dce5df;
    border-radius: 10px;
    padding: 12px 13px;
    font: inherit;
}

@media (max-width: 980px) {
    .home-service-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -18px;
    }
}

@media (max-width: 640px) {
    .home-service-bar,
    .payment-method-grid,
    .swift-bank-table {
        grid-template-columns: 1fr;
    }

    .home-service-bar {
        width: calc(100% - 24px);
    }
}
