:root {
    --ceiba-green: #7cda24;
    --ceiba-green-dark: #5fb31a;
    --ceiba-blue: #007aff;
    --ceiba-blue-dark: #057bfa;
    --ceiba-ink: #151515;
    --ceiba-muted: #545454;
    --ceiba-line: #e4e4e4;
    --ceiba-bg: #f7f7f7;
    --ceiba-white: #ffffff;
    --header-h: 92px;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.ceiba-body {
    margin: 0;
    font-family: "Roboto", "Noto Sans", "Open Sans", Arial, sans-serif;
    color: var(--ceiba-ink);
    background: var(--ceiba-white);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }

.container {
    width: 80%;
    max-width: none;
    margin: 0 auto;
}

/* Header — transparent on the slider, solid on inner pages */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    box-shadow: none;
}
.is-inner .site-header {
    position: sticky;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.header-inner {
    width: 90%;
    display: grid;
    grid-template-columns: 168px 1fr auto;
    align-items: center;
    min-height: var(--header-h);
    gap: 12px 28px;
    padding: 8px 0 4px;
}
.header-menus { display: contents; }
.brand {
    display: block;
    width: 158px;
    position: relative;
    z-index: 2;
}
.brand img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}
.is-inner .brand img { filter: none; }

.nav, .util-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav > li, .util-nav > li { position: relative; list-style: none; }
.nav > li > a,
.nav .drawer-row > a,
.util-nav > li > a,
.util-nav .drawer-row > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 18px 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.45);
    white-space: nowrap;
}
.nav > li > a,
.nav .drawer-row > a {
    font-family: "Roboto Slab", Georgia, serif;
}
.util-nav > li > a,
.util-nav .drawer-row > a {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}
.nav > li > a:hover,
.nav > li > a.is-active,
.nav .drawer-row > a:hover,
.nav .drawer-row > a.is-active,
.util-nav > li > a:hover,
.util-nav > li > a.is-active,
.util-nav .drawer-row > a:hover { color: #fff; }
.nav > li > a::after,
.nav .drawer-row > a::after,
.util-nav > li > a::after,
.util-nav .drawer-row > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 2px;
    background: var(--ceiba-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.nav > li > a:hover::after,
.nav > li > a.is-active::after,
.nav .drawer-row > a:hover::after,
.nav .drawer-row > a.is-active::after,
.util-nav > li > a:hover::after,
.util-nav > li > a.is-active::after,
.util-nav .drawer-row > a:hover::after { transform: scaleX(1); }
.has-mega > a::before,
.has-mega .drawer-row > a::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
    opacity: .8;
}

.is-inner .nav > li > a,
.is-inner .nav .drawer-row > a,
.is-inner .util-nav > li > a,
.is-inner .util-nav .drawer-row > a {
    color: #1a1a1a;
    text-shadow: none;
}
.is-inner .nav > li > a:hover,
.is-inner .nav > li > a.is-active,
.is-inner .nav .drawer-row > a:hover,
.is-inner .nav .drawer-row > a.is-active,
.is-inner .util-nav > li > a:hover,
.is-inner .util-nav > li > a.is-active,
.is-inner .util-nav .drawer-row > a:hover { color: var(--ceiba-blue); }

.header-lang { display: none; }
.lang-switch { position: relative; }
.lang-current {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.45);
    white-space: nowrap;
    background: none;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
}
.lang-current::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .75;
    margin-left: 2px;
}
.lang-flag {
    width: 18px;
    height: 12px;
    display: block;
    flex-shrink: 0;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.18);
    object-fit: cover;
}
.is-inner .lang-current {
    color: #1a1a1a;
    text-shadow: none;
}
.is-inner .lang-current:hover { background: #f4f6f0; }
.is-home .lang-menu .lang-current:hover { background: rgba(255,255,255,.14); }
.lang-switch .sub-lang {
    position: absolute;
    right: 0;
    top: calc(100% - 2px);
    background: #fff;
    min-width: 176px;
    box-shadow: 0 18px 40px rgba(15, 23, 15, .14);
    padding: 8px;
    z-index: 90;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.lang-switch:hover .sub-lang,
.lang-switch:focus-within .sub-lang,
.lang-switch.is-open .sub-lang {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switch .sub-lang a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    white-space: nowrap;
    color: #222;
    text-shadow: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
}
.lang-switch .sub-lang a::after { display: none; }
.lang-switch .sub-lang a.is-active,
.lang-switch .sub-lang a:hover { color: #143006; background: #f3f8ea; }
.mega-link.is-active {
    background: #f4f8ec;
    color: #143006;
    font-weight: 600;
}

.has-mega::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.mega {
    display: grid;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: #fff;
    padding: 0;
    box-shadow: 0 22px 50px rgba(16, 24, 16, .16);
    border-radius: 14px;
    overflow: hidden;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.mega-dest {
    min-width: min(920px, 86vw);
    left: 50%;
    grid-template-columns: 1fr 1fr 1fr 220px;
    transform: translate(-42%, 10px);
}
.has-mega:hover .mega-dest { transform: translate(-42%, 0); }
.mega-info {
    min-width: 560px;
    grid-template-columns: 1fr 1fr;
}
.mega-col {
    padding: 22px 20px 20px;
    min-width: 0;
}
.mega-col + .mega-col { border-left: 1px solid #eef1ea; }
.mega-col h4 {
    margin: 0 0 12px;
    padding: 0 10px 10px;
    color: #3d6b14;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: "Roboto Slab", Georgia, serif;
    border-bottom: 1px solid #e8eedc;
}
.mega-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px;
    color: #2c3228;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 8px;
    text-shadow: none;
}
.mega-link::after {
    content: "→";
    color: var(--ceiba-green-dark);
    font-size: 13px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .15s ease, transform .15s ease;
}
.mega-link:hover {
    background: #f4f8ec;
    color: #143006;
}
.mega-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.mega-col--feature {
    background: linear-gradient(180deg, #f4fbe8 0%, #eaf6d6 100%);
    display: flex;
    flex-direction: column;
}
.mega-col--feature h4 { border-bottom-color: #d7e8b8; }
.mega-col--feature p {
    margin: 0 10px 16px;
    color: #3d4a32;
    font-size: 13px;
    line-height: 1.5;
}
.mega-col--feature .btn {
    margin: 0 10px 10px;
    width: calc(100% - 20px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    background: none;
    border: 0;
    cursor: pointer;
    justify-self: end;
    position: relative;
    z-index: 3;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,.35);
    transition: transform .2s ease, opacity .2s ease;
}
.is-inner .mobile-toggle span { background: #151515; box-shadow: none; }
.mobile-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-backdrop,
.drawer-head,
.drawer-foot,
.acc-toggle { display: none; }
.drawer-row { display: contents; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    background: var(--ceiba-blue);
    color: #fff;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 25px;
    letter-spacing: .02em;
    font-size: 15px;
}
.btn:hover { background: #0066d6; filter: brightness(1.08); }
.btn-dark { background: #151515; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: #151515; }
.btn-light:hover { background: #f3f3f3; color: #151515; filter: none; }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.75);
}
.btn-outline:hover { background: #fff; color: #151515; filter: none; }
.btn-ghost {
    background: #fff;
    color: #0c71c3;
    border: 1px solid #d7e6f4;
}
.btn-ghost:hover { background: #0c71c3; color: #fff; filter: none; }
.btn i { margin-right: 8px; font-size: 13px; }

/* Hero slider */
.hero-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #1a1a1a;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.slide.is-active { opacity: 1; z-index: 1; }
.slide.is-leaving { opacity: 1; z-index: 2; }
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,.3);
}
.slide-copy {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: none;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 128px 0 72px;
    color: #fff;
}
.slide-copy .btn {
    width: auto;
    align-self: flex-start;
}
.hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero-copy { max-width: 640px; padding: 90px 0 50px; }
.hero h1 {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    margin: 0 0 12px;
}
.kicker, .slide-kicker {
    display: inline-block;
    background: rgba(0,0,0,.5);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    width: fit-content;
}
.slide-copy h1 {
    margin: 0 0 16px;
    font-family: Roboto, sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
}
.slide-copy h1 span {
    display: inline-block;
    background: rgba(0,0,0,.5);
    padding: 12px 18px;
    border-radius: 8px;
}
.slide-copy p {
    margin: 0 0 22px;
    font-size: 18px;
}
.slide-copy p span {
    display: inline-block;
    background: rgba(0,0,0,.5);
    padding: 12px 18px;
    border-radius: 8px;
}
.slide-kicker,
.slide-copy h1,
.slide-copy p,
.slide-copy .btn,
.special-badge {
    opacity: 0;
    transform: translateX(-56px);
}
.slide.is-active .slide-kicker { animation: sliderIn .7s ease forwards; }
.slide.is-active .slide-copy h1 { animation: sliderIn .7s .12s ease forwards; }
.slide.is-active .slide-copy p { animation: sliderIn .7s .24s ease forwards; }
.slide.is-active .slide-copy .btn { animation: sliderIn .7s .36s ease forwards; }
.slide.is-active .special-badge { animation: sliderBadgeIn .7s .4s ease forwards; }
.slide.is-leaving .slide-kicker { animation: sliderOut .4s ease forwards; }
.slide.is-leaving .slide-copy h1 { animation: sliderOut .4s .05s ease forwards; }
.slide.is-leaving .slide-copy p { animation: sliderOut .4s .1s ease forwards; }
.slide.is-leaving .slide-copy .btn { animation: sliderOut .4s .14s ease forwards; }
.slide.is-leaving .special-badge { animation: sliderBadgeOut .35s ease forwards; }
@keyframes sliderIn {
    from { opacity: 0; transform: translateX(-56px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes sliderOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-56px); }
}
@keyframes sliderBadgeIn {
    from { opacity: 0; transform: scale(.72) translateY(-18px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes sliderBadgeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(.8) translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
    .slide-kicker,
    .slide-copy h1,
    .slide-copy p,
    .slide-copy .btn,
    .special-badge {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
}
.special-badge {
    position: absolute;
    right: 8%;
    top: 28%;
    z-index: 3;
    width: 150px;
    height: 150px;
    background: #151515;
    color: #e4e4e4;
    border-radius: 100px 100px 100px 10px;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    line-height: 1.25;
}
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 68px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 8px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
}
.slider-dots button.is-active { background: #fff; }

/* Booking — iframe overlays the next block so widget dropdowns stay on top */
.booking-section {
    position: relative;
    z-index: 30;
    isolation: isolate;
    background: #fff;
    padding: 16px 0 0;
    overflow: visible;
}
.booking-section .container {
    width: 90%;
    overflow: visible;
}
.booking-frame {
    position: relative;
    z-index: 30;
    height: 320px;
    background: transparent;
    color: var(--ceiba-ink);
    line-height: 0;
    overflow: visible;
}
.booking-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 620px;
    border: 0;
    z-index: 30;
    background: transparent;
}
.booking-section:hover .booking-frame iframe,
.booking-section.is-using .booking-frame iframe {
    z-index: 31;
}
@media (max-width: 980px) {
    html,
    body.ceiba-body {
        overflow-x: clip;
        max-width: 100%;
    }
    .booking-section {
        z-index: 30;
        padding: 8px 0 12px;
        overflow: visible;
        max-width: 100%;
    }
    .booking-section .container {
        width: calc(100% - 16px);
        max-width: 100%;
        overflow: visible;
    }
    .booking-frame {
        height: 440px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
        z-index: 30;
    }
    .booking-frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        height: 680px;
        z-index: 30;
    }
}
@media (max-width: 480px) {
    .booking-frame { height: 480px; }
    .booking-frame iframe { height: 740px; }
    .header-lang .lang-current > span { display: none; }
}
.packages-cta {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 8px 0 48px;
}
.packages-cta-inner {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
    min-height: 200px;
    padding: 36px 33px;
    border-radius: 15px;
    overflow: hidden;
    background: #1b3d14 center top / cover no-repeat;
}
.packages-cta-copy p {
    margin: 0 0 16px;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.packages-cta .btn {
    position: relative;
    z-index: 1;
    background: #0c71c3;
    border-radius: 8px;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 18px;
    pointer-events: auto;
}
.booking-placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 40px;
    text-align: center;
    background: repeating-linear-gradient(135deg, #fff, #fff 12px, #f3f1ee 12px, #f3f1ee 24px);
}
.booking-placeholder h3 { margin: 0 0 8px; font-size: 22px; }
.booking-placeholder p { color: var(--ceiba-muted); max-width: 520px; }

/* Sections */
.section { padding: 72px 0; }
.section-muted { background: var(--ceiba-bg); }
.section-dark { background: #151515; color: #fff; }
.section-head { margin-bottom: 28px; }
.section-head h2 {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(26px, 4vw, 38px);
    margin: 0 0 8px;
    font-weight: 600;
}
.section-head p { margin: 0; color: var(--ceiba-muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.planning-section {
    position: relative;
    z-index: 1;
    padding: 12px 0 56px;
}
.planning-section .container { width: 90%; }
.planning-head { max-width: 46%; margin-bottom: 22px; }
.planning-head h2 {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 6px;
    color: #222;
}
.planning-head p {
    margin: 0;
    color: var(--ceiba-muted);
    font-size: 13px;
    line-height: 1.5;
}
.planning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 16px;
}
.planning-cta,
.fares-more { text-align: center; margin: 32px 0 0; }
.planning-cta .btn,
.fares-more .btn {
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 28px;
    box-shadow: none;
}
.planning-cta .btn i,
.fares-more .btn i { font-size: 15px; }
.planning-cta .btn:hover,
.fares-more .btn:hover { box-shadow: none; }
.planning-videos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 32px;
}
.planning-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}
.planning-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.dest-card, .package-card, .news-card {
    background: #fff;
    border: 1px solid var(--ceiba-line);
    overflow: hidden;
    border-radius: 6px;
}
.plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20, 24, 20, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(20, 24, 20, .1);
}
.plan-card a {
    display: block;
    color: inherit;
    padding: 0 16px 16px;
}
.plan-photo {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    margin: 0 -16px 14px;
}
.plan-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.58) 100%);
    pointer-events: none;
}
.plan-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.plan-card:hover .plan-photo img { transform: scale(1.03); }
.plan-card h3 {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    margin: 0;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.plan-card p {
    margin: 0 0 10px;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.4;
}
.plan-arrow {
    width: 36px;
    height: 36px;
    display: block;
    opacity: .9;
    transition: transform .25s ease, opacity .25s ease;
}
.plan-card:hover .plan-arrow { transform: translateX(4px); opacity: 1; }

.fares-section { padding: 20px 0 56px; background: #fff; }
.fares-section .container { width: 90%; }
.fares-head { max-width: 46%; margin-bottom: 0; }
.fares-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}
.fares-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.fares-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ceiba-line);
    border-radius: 999px;
    padding: 8px 14px;
    min-width: min(280px, 100%);
}
.fares-search i { color: #0c71c3; font-size: 13px; }
.fares-search input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
}
.fares-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.fares-pills button {
    border: 1px solid var(--ceiba-line);
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
}
.fares-pills button.is-active,
.fares-pills button:hover {
    background: #0c71c3;
    border-color: #0c71c3;
    color: #fff;
}
.fares-catalog { margin-top: 0; }
.fares-empty {
    text-align: center;
    color: var(--ceiba-muted);
    padding: 28px 0 8px;
}
.fares-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.fares-pages button {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--ceiba-line);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}
.fares-pages button.is-active,
.fares-pages button:hover {
    background: #0c71c3;
    border-color: #0c71c3;
    color: #fff;
}
.fares-pages button:disabled {
    opacity: .4;
    cursor: default;
}
.fares-head h2 {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 6px;
    color: #222;
}
.fares-head p {
    margin: 0;
    color: var(--ceiba-muted);
    font-size: 13px;
    line-height: 1.5;
}
.fares-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}
.fares-featured,
.fares-featured .flight-card { height: 100%; }
.fares-featured .flight-card .flight-media {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
}
.fares-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fares-grid .flight-card .flight-media {
    min-height: 170px;
    aspect-ratio: 16 / 11;
}
.fares-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.fares-row .flight-card .flight-media {
    min-height: 150px;
    aspect-ratio: 16 / 11;
}

.flight-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20, 24, 20, .06);
    background: #111;
}
.flight-card .flight-media {
    position: relative;
    min-height: 240px;
    aspect-ratio: 16 / 10;
    height: auto;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.flight-card .flight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 30%, rgba(0,0,0,.72) 100%);
}
.badge-hot {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--ceiba-green);
    color: #143006;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 8px;
    border-radius: 3px;
}
.flight-copy {
    position: relative;
    z-index: 1;
    padding: 16px 18px 18px;
    color: #fff;
}
.flight-copy h3 {
    margin: 0 0 6px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}
.flight-copy .meta,
.flight-copy .cabin {
    margin: 0;
    font-size: 12px;
    opacity: .9;
    color: #fff;
}
.flight-copy .price {
    margin: 8px 0 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.flight-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(12, 16, 12, .5);
    opacity: 0;
    transition: opacity .22s ease;
}
.flight-card:hover .flight-hover { opacity: 1; }
.flight-hover .btn { box-shadow: none; padding: 9px 18px; font-size: 14px; }

.dest-body, .package-body, .news-body { padding: 18px; }
.dest-body h3, .package-body h3 { margin: 0 0 6px; font-size: 20px; font-family: "Roboto Slab", Georgia, serif; }

/* Destinations & Offers */
.dest-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #1a1a1a center/cover no-repeat;
    padding: 72px 0;
}
.dest-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 16, 12, .84) 0%, rgba(10, 16, 12, .5) 52%, rgba(10, 16, 12, .22) 100%);
}
.dest-hero-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}
.dest-kicker {
    display: inline-block;
    margin: 0 0 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--ceiba-green);
    color: #143006;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.dest-hero h1 {
    margin: 0 0 14px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.dest-hero p {
    margin: 0 0 24px;
    max-width: 540px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,.92);
}
.dest-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dest-hero--short {
    min-height: 360px;
    padding: 48px 0;
}
.dest-hero .dest-welcome {
    margin: 0 0 8px;
    max-width: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
}
.dest-hero .dest-hero-price {
    margin: 0 0 22px;
    max-width: none;
    color: #fff;
}
.dest-hero .dest-hero-price strong {
    display: block;
    margin: 4px 0 2px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: .02em;
}
.dest-hero .dest-hero-price small {
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

/* Destination guide */
.guide-section {
    padding: 48px 0 64px;
    background: #fff;
}
.guide-section .container { width: 90%; }
.guide-lead {
    max-width: 760px;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}
.guide-lead p { margin: 0 0 14px; }
.guide-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.guide-card,
.guide-office {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px 22px 20px;
    background: #fff;
    border: 1px solid var(--ceiba-line);
}
.guide-card i,
.guide-office i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #0c71c3;
    font-size: 22px;
    line-height: 1.2;
}
.guide-card h3,
.guide-office h3 {
    margin: 0 0 8px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: 500;
}
.guide-body {
    font-size: 15px;
    line-height: 1.55;
    color: #444;
}
.guide-body p { margin: 0 0 10px; }
.guide-body p:last-child { margin-bottom: 0; }
.guide-body ul {
    margin: 0;
    padding-left: 18px;
}
.guide-body li { margin: 0 0 6px; }
.guide-office { margin-top: 16px; }
.guide-more { padding-top: 20px; }

/* Online services */
.osvc-section {
    padding: 48px 0 64px;
    background: #fff;
}
.osvc-section .container { width: 90%; }
.osvc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.osvc-card {
    background: #fff;
    border: 1px solid var(--ceiba-line);
    padding: 28px 28px 32px;
}
.osvc-card h2 {
    margin: 0 0 12px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
}
.osvc-card > p {
    margin: 0 0 18px;
    color: #444;
    line-height: 1.55;
}
.osvc-label {
    margin: 0 0 12px !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #0c71c3;
}
.osvc-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}
.osvc-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid var(--ceiba-line);
}
.osvc-list li:last-child { border-bottom: 1px solid var(--ceiba-line); }
.osvc-list i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #0c71c3;
    font-size: 16px;
    width: 20px;
    text-align: center;
    background: none;
}
.osvc-list strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #151515;
}
.osvc-list span {
    display: block;
    font-size: 14px;
    color: #555;
    line-height: 1.45;
    margin-top: 2px;
}

/* Help / FAQ */
.help-section {
    padding: 48px 0 64px;
    background: #fff;
}
.help-section .container { width: 90%; }
.help-section .dest-catalog-head p { max-width: 640px; }
.help-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ceiba-line);
    padding: 8px 14px;
    min-width: min(280px, 100%);
}
.help-search i { color: #0c71c3; font-size: 13px; }
.help-search input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
}
.help-contacts { margin-bottom: 32px; }
.help-section .guide-facts { margin-bottom: 28px; }
.help-faq-head { margin-top: 12px; }

.guide-lead h2,
.guide-lead h3,
.inner-sub {
    margin: 28px 0 12px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #151515;
}
.guide-lead h2:first-child,
.guide-lead h3:first-child { margin-top: 0; }
.inner-sub { margin-top: 36px; }
.guide-lead ul,
.guide-lead ol {
    margin: 0 0 14px;
    padding-left: 18px;
}
.guide-lead li { margin: 0 0 6px; }
.guide-lead a { color: #0c71c3; font-weight: 600; }

/* Baggage claims / inner info pages */
.claim-section,
.inner-section {
    padding: 48px 0 64px;
    background: #fff;
}
.claim-section .container,
.inner-section .container { width: 90%; }
.claim-section .dest-catalog-head p,
.inner-section .dest-catalog-head p { max-width: 640px; }
.claim-section .guide-facts,
.inner-section .guide-facts { margin-bottom: 28px; }
.claim-contacts { margin-top: 8px; }
.restr-faq { margin: 8px 0 32px; }
.guide-card .org-initials {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0c71c3;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}
.news-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    margin-bottom: 32px;
    background: #fff;
    border: 1px solid var(--ceiba-line);
}
.news-featured-media {
    position: relative;
    display: block;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}
.news-featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.62) 100%);
}
.news-featured-media h3 {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.news-featured-media .dest-kind {
    right: auto;
    left: 16px;
}
.news-featured-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-featured-body p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.55;
    color: #444;
}
.news-section .dest-places { margin-bottom: 8px; }
.news-pager {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}
.news-pager .is-disabled {
    opacity: .45;
    pointer-events: none;
}
.news-related { background: var(--ceiba-bg); }
.article-lead { max-width: 760px; }
.fleet-grid { margin-bottom: 28px; }
.fleet-grid .dest-place-media { cursor: default; }
.fleet-grid .dest-tagline { min-height: 0; }
.press-grid { margin-bottom: 16px; }
.gallery-toolbar { margin: 8px 0 18px; align-items: center; }
.gallery-toolbar .inner-sub { margin: 0; }
.gallery-grid { margin-bottom: 16px; }
.dest-kind.is-company { background: #151515; color: #fff; }
body.gallery-open { overflow: hidden; }
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 56px 24px 32px;
    background: rgba(12, 18, 22, .88);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.gallery-lightbox p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    text-align: center;
    max-width: 720px;
}
.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #151515;
    cursor: pointer;
    font-size: 18px;
}
.gallery-lightbox-close:hover { background: #0c71c3; color: #fff; }
a.req-hint { color: inherit; }
a.req-hint:hover { border-color: #0c71c3; }
.help-faq details {
    border: 1px solid var(--ceiba-line);
    border-top: 0;
    background: #fff;
}
.help-faq details:first-child { border-top: 1px solid var(--ceiba-line); }
.help-faq summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 16px 52px 16px 20px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #222;
}
.help-faq summary::-webkit-details-marker { display: none; }
.help-faq summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0c71c3;
    font-size: 13px;
    transition: transform .2s ease;
}
.help-faq details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.help-answer {
    padding: 0 20px 18px;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
    line-height: 1.55;
}
.help-answer p { margin: 0 0 10px; }
.help-answer ul { margin: 0 0 10px; padding-left: 18px; }
.help-answer a { color: #0c71c3; font-weight: 600; }
.help-empty {
    margin: 16px 0 0;
    color: #555;
}
.help-terms {
    margin: 20px 0 0;
    font-size: 14px;
}
.help-terms a { color: #0c71c3; font-weight: 600; }

/* Contact */
.contact-section {
    padding: 48px 0 64px;
    background: #fff;
}
.contact-section .container { width: 90%; }
.contact-section .dest-catalog-head p { max-width: 640px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.contact-copy .prose { max-width: none; }
.contact-copy p,
.contact-copy .prose p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}
.contact-copy .contact-hours {
    color: #555;
    font-size: 14px;
}
.contact-form {
    position: relative;
    background: #fff;
    border: 1px solid var(--ceiba-line);
    padding: 28px 28px 32px;
}
.contact-form h3 {
    margin: 0 0 6px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}
.contact-form > p {
    margin: 0 0 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}
.contact-form .form-field { margin-bottom: 14px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.field-error {
    display: block;
    margin-top: 4px;
    color: #9b1c1c;
    font-size: 12px;
}

.dest-network {
    background: #0c71c3;
    color: #fff;
    padding: 16px 0;
}
.dest-network-inner {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 22px;
}
.dest-network-inner > span {
    flex: 0 0 auto;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.dest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dest-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 13px;
    transition: background .2s ease;
}
.dest-chip em {
    font-style: normal;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--ceiba-green);
}
.dest-chip:hover { background: rgba(255,255,255,.22); }
.dest-offers { padding-top: 48px; }
.dest-catalog { padding: 20px 0 64px; background: var(--ceiba-bg); }
.dest-catalog .container,
.dest-coming .container { width: 90%; }
.dest-catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 26px;
}
.dest-catalog-head h2,
.dest-coming h2,
.dest-book-cta h2 {
    margin: 0 0 6px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
}
.dest-catalog-head p,
.dest-coming p { margin: 0; color: var(--ceiba-muted); font-size: 14px; max-width: 520px; }
.dest-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-filters button {
    border: 1px solid var(--ceiba-line);
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
}
.dest-filters button.is-active,
.dest-filters button:hover {
    background: #0c71c3;
    border-color: #0c71c3;
    color: #fff;
}
.dest-places {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.holiday-places {
    grid-template-columns: repeat(4, 1fr);
}
.dest-place {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20, 24, 20, .06);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.dest-place:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(20, 24, 20, .12);
}
.dest-place.is-hidden { display: none; }
.dest-place-media {
    position: relative;
    display: block;
    min-height: 210px;
    background-size: cover;
    background-position: center;
}
.dest-place-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.62) 100%);
}
.dest-place-media h3 {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0,0,0,.4);
}
.dest-iata,
.dest-kind,
.dest-soon {
    position: absolute;
    z-index: 1;
    top: 12px;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.dest-iata {
    left: 12px;
    background: #fff;
    color: #151515;
}
.dest-kind,
.dest-soon { right: 12px; color: #fff; }
.dest-kind { background: #7cda24; color: #143006; }
.dest-kind.is-intl { background: #0c71c3; color: #fff; }
.dest-soon { background: #151515; }
.dest-place-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.dest-country {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ceiba-muted);
}
.dest-tagline {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #444;
    min-height: 40px;
}
.dest-from {
    margin: 0 0 14px;
    font-size: 13px;
    color: #555;
}
.dest-from strong {
    font-size: 18px;
    font-weight: 600;
    color: #0c71c3;
}
.dest-place-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.dest-place-actions .btn { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.dest-coming { padding: 12px 0 64px; background: #fff; }
.dest-place.is-upcoming { opacity: .96; }
.dest-book-cta {
    background: #0c71c3;
    color: #fff;
    padding: 36px 0;
}
.dest-book-cta-inner {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.dest-book-cta h2 { color: #fff; }
.dest-book-cta p { margin: 0; color: rgba(255,255,255,.88); max-width: 560px; }
.dest-book-cta .btn { background: var(--ceiba-green); color: #143006; }
.dest-book-cta .btn:hover { background: #8ae63a; filter: none; }
.dest-book-cta .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.8);
}
.dest-book-cta .btn-outline:hover { background: #fff; color: #0c71c3; }

/* Travel requirements */
.req-intro {
    padding: 48px 0 16px;
    background: #fff;
}
.req-intro .container,
.req-countries .container {
    width: 90%;
}
.req-lead {
    margin: 0 0 28px;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}
.req-lead a {
    color: #0c71c3;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.req-hints {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}
.req-hint {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px 16px;
    background: #fff;
    border: 1px solid var(--ceiba-line);
    border-radius: 0;
}
.req-hint i {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: block;
    background: none;
    color: #0c71c3;
    font-size: 22px;
    line-height: 1.2;
    margin-top: 2px;
}
.req-hint h3 {
    margin: 0 0 4px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 16px;
    font-weight: 500;
}
.req-hint p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #555;
}
.req-countries { padding: 12px 0 56px; background: #fff; }
.req-country {
    margin-bottom: 28px;
    border: 1px solid var(--ceiba-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.req-country:last-child { margin-bottom: 0; }
.req-country-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #0c71c3;
    color: #fff;
}
.req-country-head img {
    width: 40px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.req-country-head h2 {
    margin: 0;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.req-acc details {
    border-top: 1px solid var(--ceiba-line);
    background: #fff;
}
.req-acc summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 16px 52px 16px 20px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 17px;
    font-weight: 500;
    color: #222;
}
.req-acc summary::-webkit-details-marker { display: none; }
.req-acc summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0c71c3;
    font-size: 13px;
    transition: transform .2s ease;
}
.req-acc details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.req-acc-body {
    padding: 0 20px 18px;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
}
.req-acc-body ul {
    margin: 0 0 10px;
    padding-left: 18px;
}
.req-acc-body li { margin-bottom: 6px; }
.req-updated {
    margin: 8px 0 0;
    font-size: 13px;
    color: #777;
    font-weight: 400;
    font-family: Roboto, Arial, sans-serif;
}
.flight-media { height: 170px; background-size: cover; background-position: center; }
.dest-card .flight-media, .package-card .flight-media, .news-card .flight-media { height: 200px; }
.meta { color: var(--ceiba-muted); font-size: 13px; margin-bottom: 10px; }
.price { font-size: 22px; font-weight: 800; color: var(--ceiba-blue); margin: 8px 0 14px; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-slider .promo-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}
.promo-strip {
    background: var(--ceiba-green);
    color: #143006;
    padding: 14px 0;
    font-weight: 600;
    letter-spacing: .02em;
    overflow: hidden;
}
.promo-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.cta-band { display: grid; grid-template-columns: 1.4fr .8fr; gap: 30px; align-items: center; }
.mile-section {
    position: relative;
    background-color: #1a2a14;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 72px 0;
    min-height: 340px;
    display: flex;
    align-items: center;
}
.mile-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,12,8,.78) 0%, rgba(8,12,8,.42) 52%, rgba(8,12,8,.12) 100%);
}
.mile-section .container {
    position: relative;
    z-index: 1;
    width: 90%;
}
.mile-panel {
    max-width: 500px;
    background: rgba(10, 14, 10, .48);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 28px 30px;
}
.mile-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ceiba-green);
}
.mile-panel h2 {
    margin: 0 0 10px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
}
.mile-panel p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
}
.mile-panel .btn {
    gap: 10px;
    font-weight: 600;
    padding: 12px 24px;
    box-shadow: none;
}
.mile-panel .btn i { font-size: 14px; }

.shortcut-bar {
    background: #0c71c3;
}
.shortcut-bar-inner {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.shortcut-bar a {
    display: block;
    text-align: center;
    padding: 26px 16px;
    color: #fff;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    cursor: pointer;
    transition: color 300ms ease;
}
.shortcut-bar a:hover {
    color: var(--ceiba-green);
}

.partners-section {
    padding: 18px 0 4px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}
.partners-section .container { width: 90%; }
.partners-label {
    margin: 0 0 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9aa09a;
}
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: center;
}
.partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 28px;
    color: #6b716b;
    position: relative;
}
.partner-chip + .partner-chip::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: #d8dcd8;
    transform: translateY(-50%);
}
.partner-chip span {
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 12px;
    white-space: nowrap;
}
.partner-chip img {
    max-height: 28px;
    width: auto;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .2s ease, opacity .2s ease;
}
.partner-chip:hover { color: #0c71c3; }
.partner-chip:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.together-section {
    padding: 48px 0 28px;
}
.together-section .container { width: 90%; }
.together-head {
    max-width: 560px;
    margin-bottom: 28px;
}
.together-head h2 {
    margin: 0 0 8px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #0c71c3;
}
.together-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #5c615c;
}
.together-stories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.together-story {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20,24,20,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.together-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(20,24,20,.1);
}
.together-story a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.together-photo {
    height: 190px;
    overflow: hidden;
}
.together-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.together-story:hover .together-photo img { transform: scale(1.04); }
.together-copy {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.together-copy span {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ceiba-green);
}
.together-copy h3 {
    margin: 0 0 8px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #0c71c3;
}
.together-copy p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #5c615c;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.together-copy em {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-style: normal;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 14px;
    color: #0c71c3;
}
.together-copy em i {
    font-size: 11px;
    color: var(--ceiba-green);
    transition: transform .2s ease;
}
.together-story:hover em { color: var(--ceiba-green); }
.together-story:hover em i { transform: translateX(3px); }

.newsletter-wrap {
    padding: 12px 0 56px;
}
.newsletter-wrap .container { width: 90%; }
.newsletter {
    background: #eef6e4 center/cover no-repeat;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    min-height: 210px;
}
.newsletter-copy {
    position: relative;
    grid-column: 2;
    max-width: 520px;
}
.newsletter h2 {
    margin: 0 0 8px;
    font-family: "Roboto Slab", Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #0c71c3;
}
.newsletter p {
    margin: 0 0 18px;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}
.form-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.newsletter .form-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.form-field input, .form-field textarea { border: 1px solid var(--ceiba-line); padding: 11px 12px; border-radius: 2px; }
.newsletter .form-field input { border-radius: 6px; border: 0; }
.newsletter .btn { box-shadow: none; }
.newsletter-result {
    margin: 0;
    font-family: "Roboto Slab", Georgia, serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.45;
    color: #7cda24;
    text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}
.alert { padding: 12px 14px; background: #e8f6ec; color: #146c2e; margin-bottom: 14px; }
.alert-error { background: #fde8e8; color: #9b1c1c; }

.page-hero {
    background: linear-gradient(180deg, rgba(20,20,20,.45), rgba(20,20,20,.55)), url("../images/ceiba/2023/09/Malabo.jpg") center/cover;
    color: #fff;
    padding: 72px 0 48px;
}
.page-hero h1 {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    margin: 0 0 8px;
}
.prose { max-width: 820px; }
.prose h2 { font-family: "Roboto Slab", Georgia, serif; }
.prose ul { padding-left: 18px; }
.prose a { color: var(--ceiba-blue); }

.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.org-card { background: #fff; border-top: 4px solid var(--ceiba-green); padding: 20px; }
.org-initials { width: 46px; height: 46px; border-radius: 50%; background: var(--ceiba-green); color: #143006; display: grid; place-items: center; font-weight: 800; margin-bottom: 10px; }
.faq details { background: #fff; border: 1px solid var(--ceiba-line); padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }

.site-footer { background: #fff; color: #333; padding: 56px 0 0; font-size: 14px; border-top: 1px solid var(--ceiba-line); }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; padding-bottom: 36px; }
.site-footer h4 {
    color: #151515;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    font-family: "Roboto Slab", Georgia, serif;
}
.site-footer a { display: block; padding: 3px 0; color: #545454; }
.site-footer a:hover,
.site-footer a.is-active { color: var(--ceiba-blue); }
.footer-copy {
    background: #151515;
    color: #c5c9d4;
    padding: 16px 0;
    margin-top: 0;
}

@media (max-width: 980px) {
    body.nav-locked { overflow: hidden; }
    .container { width: calc(100% - 32px); }
    .header-inner,
    .packages-cta-inner,
    .planning-section .container,
    .fares-section .container,
    .mile-section .container,
    .shortcut-bar-inner,
    .together-section .container,
    .partners-section .container,
    .newsletter-wrap .container,
    .dest-hero-inner,
    .dest-network-inner,
    .dest-catalog .container,
    .dest-coming .container,
    .dest-book-cta-inner,
    .req-intro .container,
    .req-countries .container,
    .osvc-section .container { width: calc(100% - 32px); }
    .dest-hero--short .dest-hero-inner,
    .dest-hero--guide .dest-hero-inner,
    .guide-section .container,
    .guide-more .container,
    .claim-section .container,
    .inner-section .container,
    .dest-book-cta-inner { width: 90%; }
    .planning-head,
    .fares-head,
    .mile-panel,
    .together-head { max-width: none; }
    .planning-grid { grid-template-columns: 1fr 1fr; }
    .header-inner { grid-template-columns: 1fr auto auto; }
    .mobile-toggle { display: block; }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(12, 16, 12, .48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
        z-index: 70;
    }
    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .header-menus {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(400px, 90vw);
        height: 100dvh;
        background: #fff;
        padding: 0;
        box-shadow: -18px 0 40px rgba(0,0,0,.18);
        z-index: 80;
        transform: translateX(110%);
        transition: transform .28s ease;
        overflow: hidden;
    }
    .header-menus.is-open { transform: translateX(0); }
    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-bottom: 1px solid #eef1ea;
        flex-shrink: 0;
    }
    .drawer-head img { width: 118px; height: auto; }
    .drawer-close {
        width: 40px;
        height: 40px;
        border: 0;
        background: #f4f6f0;
        border-radius: 50%;
        font-size: 26px;
        line-height: 1;
        color: #151515;
        cursor: pointer;
    }
    .header-menus .nav,
    .header-menus .util-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        padding: 8px 12px 16px;
    }
    .header-menus .nav { flex: 1; }
    .drawer-row {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .drawer-row > a { flex: 1; }
    .acc-toggle {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border: 0;
        background: #f4f6f0;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
    }
    .acc-toggle::before,
    .acc-toggle::after {
        content: "";
        position: absolute;
        background: #1a1a1a;
        border-radius: 1px;
    }
    .acc-toggle::before { width: 12px; height: 2px; }
    .acc-toggle::after { width: 2px; height: 12px; }
    .has-mega.is-expanded > .drawer-row .acc-toggle::after { transform: scaleY(0); }
    .nav > li > a,
    .util-nav > li > a,
    .drawer-row > a,
    .is-home .nav > li > a,
    .is-home .util-nav > li > a,
    .is-home .drawer-row > a {
        color: #1a1a1a;
        text-shadow: none;
        padding: 14px 10px;
        white-space: normal;
    }
    .nav > li > a::after,
    .util-nav > li > a::after,
    .nav .drawer-row > a::after,
    .util-nav .drawer-row > a::after,
    .has-mega > a::before,
    .has-mega .drawer-row > a::before { display: none; }
    .nav > li > a:hover,
    .nav > li > a.is-active,
    .util-nav > li > a:hover,
    .drawer-row > a:hover { color: #3d6b14; }
    .util-nav { border-top: 1px solid #eef1ea; flex: 0 0 auto; }
    .mega,
    .mega-dest,
    .mega-info,
    .has-mega:hover .mega,
    .has-mega:hover .mega-dest {
        position: static;
        min-width: 0;
        width: 100%;
        transform: none;
        box-shadow: none;
        border-radius: 10px;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin: 0 0 8px;
    }
    .has-mega.is-expanded .mega { display: grid; }
    .mega-col + .mega-col { border-left: 0; border-top: 1px solid #eef1ea; }
    .mega-col { padding: 10px 8px; }
    .mega-col h4 { padding: 0 8px 8px; margin-bottom: 6px; }
    .mega-link { padding: 10px 8px; }
    .mega-col--feature { background: #f4fbe8; }
    .lang-menu { display: none; }
    .header-lang {
        display: block;
        position: relative;
        z-index: 85;
        justify-self: end;
    }
    .header-lang .lang-current {
        color: #1a1a1a;
        text-shadow: none;
        padding: 8px 10px;
    }
    .is-home .header-lang .lang-current {
        color: #fff;
        text-shadow: 0 1px 6px rgba(0,0,0,.45);
    }
    .is-home .header-lang .lang-current:hover { background: rgba(255,255,255,.14); }
    .header-lang .lang-switch:hover .sub-lang {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
    }
    .header-lang .lang-switch.is-open .sub-lang,
    .header-lang .lang-switch:focus-within .sub-lang {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-lang .sub-lang {
        right: 0;
        top: calc(100% + 6px);
    }
    .drawer-foot {
        display: block;
        padding: 14px 16px 20px;
        border-top: 1px solid #eef1ea;
        flex-shrink: 0;
    }
    .drawer-foot .btn { width: 100%; }
    .grid-4, .grid-3, .grid-2, .footer-grid, .cta-band, .org-grid, .split-2, .packages-cta-inner, .shortcut-bar-inner { grid-template-columns: 1fr; }
    .newsletter {
        grid-template-columns: minmax(56px, 34%) minmax(0, 1fr);
        padding: 20px 14px;
        min-height: 190px;
        background-position: left center;
    }
    .newsletter-copy {
        grid-column: 2;
        max-width: 100%;
        justify-self: stretch;
    }
    .newsletter h2 { font-size: 22px; }
    .newsletter .form-row {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 220px;
    }
    .newsletter .form-field,
    .newsletter .form-field input {
        width: 100%;
        max-width: 220px;
        box-sizing: border-box;
    }
    .special-badge { display: none; }
    .hero-slider,
    .slide-copy { min-height: 560px; }
    .slide-copy {
        justify-content: flex-start;
        padding: 104px 0 92px;
    }
    .slider-dots { bottom: 66px; }
}
@media (max-width: 980px) {
    .fares-row { grid-template-columns: 1fr 1fr; }
    .dest-network-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .dest-catalog-head { flex-direction: column; align-items: flex-start; }
    .req-hints { grid-template-columns: 1fr; }
    .fares-top { flex-direction: column; align-items: flex-start; }
    .fares-toolbar { width: 100%; justify-content: flex-start; }
    .fares-search { min-width: 0; width: 100%; }
    .dest-places { grid-template-columns: 1fr 1fr; }
    .holiday-places { grid-template-columns: 1fr 1fr; }
    .dest-book-cta-inner { flex-direction: column; align-items: flex-start; }
    .dest-hero { min-height: 380px; }
    .dest-hero--short { min-height: 300px; }
    .osvc-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .news-featured { grid-template-columns: 1fr; }
    .help-search { width: 100%; }
    .dest-hero::after {
        background: linear-gradient(180deg, rgba(10, 16, 12, .45) 0%, rgba(10, 16, 12, .82) 100%);
    }
}
@media (max-width: 800px) {
    .fares-layout { grid-template-columns: 1fr; }
    .fares-featured .flight-card .flight-media {
        aspect-ratio: 16 / 9;
        min-height: 220px;
    }
}
@media (max-width: 720px) {
    .together-stories { grid-template-columns: 1fr; }
    .together-photo { height: 200px; }
}
@media (max-width: 640px) {
    .dest-places { grid-template-columns: 1fr; }
    .guide-facts { grid-template-columns: 1fr; }
    .holiday-places { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .dest-tagline { min-height: 0; }
    .planning-grid,
    .planning-videos,
    .fares-grid,
    .fares-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .planning-videos { margin-top: 20px; }
    .fares-row { margin-top: 12px; }
    .fares-featured .flight-card .flight-media {
        min-height: 180px;
        aspect-ratio: 16 / 10;
    }
    .fares-grid .flight-card .flight-media,
    .fares-row .flight-card .flight-media {
        min-height: 132px;
    }
    .flight-copy h3 { font-size: 14px; }
    .flight-copy .meta,
    .flight-copy .cabin { font-size: 11px; }
    .flight-copy .price { font-size: 14px; margin-top: 4px; }
    .flight-hover { gap: 6px; }
    .flight-hover .btn { padding: 6px 10px; font-size: 11px; }
    .plan-card a { padding: 0 10px 12px; }
    .plan-photo { margin: 0 -10px 10px; }
    .plan-card h3 {
        font-size: 13px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }
    .plan-card p { font-size: 12px; margin-bottom: 8px; }
    .plan-arrow { width: 28px; height: 28px; }
}
@media (hover: none) {
    .flight-hover {
        position: static;
        opacity: 1;
        background: rgba(12, 16, 12, .08);
        padding: 0 8px 10px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
