/* ==========================================================================
   Take You On Vacation - storefront styles
   Theme colors are injected as --primary / --accent from settings (header.php).
   ========================================================================== */

:root {
    --primary: #1a3a6b;
    --accent: #f5a623;
    --dark: #12233f;
    --text: #33383f;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg-soft: #f6f8fb;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(18, 35, 63, 0.08);
    --container: 1160px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    background: var(--white);
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4 { color: var(--primary); line-height: 1.2; margin: 0 0 .5em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    text-align: center;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #e0940f; }
.btn--outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 15px 38px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

/* ---- Top bar ---- */
.topbar { background: var(--white); border-bottom: 1px solid var(--line); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; flex-wrap: wrap; gap: 8px; }
.topbar__contact a { color: var(--muted); margin-right: 18px; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__trustpilot { color: #00b67a; font-weight: 600; }
.topbar__social { display: inline-flex; align-items: center; gap: 14px; }
.topbar__social a {
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--primary); transition: color .15s ease, transform .15s ease;
}
.topbar__social a:hover { color: var(--accent); transform: translateY(-1px); }
.topbar__social svg { display: block; }

/* ---- Header ---- */
.header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.brand__logo { max-height: 52px; }
.brand__text { font-size: 26px; font-weight: 800; color: var(--primary); }
.brand__text--footer { color: #fff; margin-bottom: 12px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { color: var(--dark); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .4px; }
.nav__link:hover, .nav__link.is-active { color: var(--accent); }
.nav__book { text-transform: uppercase; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--primary); cursor: pointer; }

/* ---- Flash ---- */
.flash { padding: 14px 18px; border-radius: var(--radius); margin: 20px 0; font-weight: 600; }
.flash--success { background: #e7f6ec; color: #1c7c3f; border: 1px solid #b7e3c4; }
.flash--error { background: #fde8e8; color: #b42318; border: 1px solid #f5c2c0; }

/* ---- Breadcrumb ---- */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb .container { padding-top: 12px; padding-bottom: 12px; }
.breadcrumb__home { text-decoration: none; }
.breadcrumb__sep { margin: 0 8px; color: var(--muted); }
.breadcrumb__current { text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 600; }

/* ---- Featured slider ---- */
.slider { position: relative; overflow: hidden; background: #0e1f38; }
/* Contained (boxed) slider — sits within the site width with margins + rounded corners */
.slider--contained { max-width: var(--container); margin: 20px auto; border-radius: 12px; }
.slide {
    display: none; position: relative; min-height: var(--slider-h, 430px);
    background-size: cover; background-position: center; align-items: center;
}
.slide.is-active { display: flex; }
.slide .container { width: 100%; }
.slide__caption {
    display: block; max-width: 440px; background: rgba(255,255,255,.72);
    padding: 30px 34px; color: var(--primary); text-decoration: none;
    backdrop-filter: blur(1px);
}
.slide__title { font-size: 40px; font-weight: 800; text-transform: uppercase; color: var(--primary); line-height: 1.05; }
.slide__text { font-size: 22px; color: var(--primary); margin-top: 6px; }
.slide__price { font-size: 44px; font-weight: 800; color: #7bb540; margin: 4px 0; }
.slide__note { font-size: 20px; color: var(--primary); }
.slider__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    background: rgba(20,35,63,.55); color: #fff; border: 0; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%; font-size: 16px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.slider__arrow:hover { background: var(--accent); }
.slider__arrow--prev { left: 16px; }
.slider__arrow--next { right: 16px; }
.slider__dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
/* Dots: small visible circle inside a 32px touch target */
.slider__dot { width: 32px; height: 32px; border-radius: 50%; border: 0; background: transparent; cursor: pointer; padding: 0; position: relative; }
.slider__dot::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.55); }
.slider__dot.is-active::before { background: var(--accent); }

@media (max-width: 640px) {
    .slide { min-height: 300px; }
    .slide__caption { max-width: 100%; background: rgba(255,255,255,.82); padding: 20px; }
    .slide__title { font-size: 30px; }
    .slide__price { font-size: 34px; }
    .slide__text, .slide__note { font-size: 17px; }
}

/* ---- Hero ---- */
.hero {
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,var(--hero-overlay,0)), rgba(0,0,0,var(--hero-overlay,0))),
        linear-gradient(rgba(255,255,255,var(--hero-fade,0)), rgba(255,255,255,var(--hero-fade,0))),
        center/cover no-repeat var(--hero-img, #2b4c78);
    min-height: var(--hero-h, 520px);
    display: flex;
    align-items: center;
    color: #fff;
}
.hero__inner { position: relative; display: flex; align-items: center; min-height: var(--hero-h, 520px); width: 100%; }
/* Contained (boxed) hero — sits within the site width with margins + rounded corners */
.hero--contained { max-width: var(--container); margin: 24px auto; border-radius: 12px; overflow: hidden; min-height: var(--hero-h, 440px); }
.hero--contained .hero__inner { min-height: var(--hero-h, 440px); }
.hero__card {
    background: var(--hero-card-bg, #fff);
    color: var(--text);
    box-shadow: 0 18px 45px rgba(18,35,63,.22);
    padding: 36px 44px;
    max-width: var(--hero-card-w, 520px);
    text-align: var(--hero-text-align, left);
    position: relative;
    z-index: 2;
}
.hero__eyebrow { font-size: var(--hero-eyebrow-size, 15px); color: var(--hero-eyebrow-color, var(--text)); font-weight: 500; margin-bottom: 4px; }
.hero__title { font-size: var(--hero-title-size, 50px); color: var(--hero-title-color, var(--text)); font-weight: 800; letter-spacing: -1px; line-height: 1.05; margin: 0 0 16px; text-transform: uppercase; }
.hero__text { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.hero__text p { margin: 0; }

/* Lowest-price-guarantee seal */
.guarantee-seal {
    position: absolute; left: calc(var(--hero-card-w, 520px) - 20px); top: 50%; transform: translateY(-40%);
    color: var(--primary); z-index: 3; pointer-events: none;
    background: rgba(255,255,255,.9); border-radius: 50%;
}
@media (max-width: 760px) { .guarantee-seal { display: none; } }
.section { padding: 70px 0; }
.section--soft { background: var(--bg-soft); }

/* ---- Destination intro (branded "middle text") ---- */
.dest-intro { padding: 46px 0 40px; text-align: center; }
.dest-intro__eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.dest-intro__title { color: var(--primary); font-size: 30px; font-weight: 800; margin: 0 0 14px; position: relative; display: inline-block; }
.dest-intro__title::after { content: ""; display: block; width: 64px; height: 3px; background: var(--accent); border-radius: 2px; margin: 12px auto 0; }
.dest-intro__lead { max-width: 760px; margin: 0 auto; color: var(--text); font-size: 17px; line-height: 1.7; }
@media (max-width: 640px) { .dest-intro { padding: 34px 0 30px; } .dest-intro__title { font-size: 24px; } }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section__head h2 { font-size: 34px; }
.section__head p { color: var(--muted); }
.section__title-sm { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; }

/* ---- Value props (with dividers + line icons) ---- */
.values-section { padding: 56px 0; background: var(--white); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value { padding: 12px 34px; text-align: center; position: relative; }
.value + .value::before {
    content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line);
}
.value__icon { color: var(--primary); margin-bottom: 14px; display: flex; justify-content: center; }
.value__icon svg { display: block; }
.value__emoji { font-size: 40px; }
.value h3 { font-size: 22px; color: var(--accent); margin-bottom: 12px; }
.value p { color: var(--muted); margin: 0; font-size: 14px; }

/* ---- Home two-column listing (sidebar + package rows) ---- */
.home-listing { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.home-listing__main { min-width: 0; }

/* Top Destinations sidebar box */
.dest-sidebar { background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.dest-sidebar__head {
    background: var(--primary); color: #fff; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; font-size: 14px; padding: 14px 18px; position: relative;
}
.dest-sidebar__head::after {
    content: ""; position: absolute; left: 0; bottom: -6px; border-width: 6px 6px 0 0;
    border-style: solid; border-color: var(--accent) transparent transparent transparent;
}
.dest-sidebar__list { list-style: none; margin: 0; padding: 0; }
.dest-sidebar__list li { border-bottom: 1px solid var(--line); }
.dest-sidebar__list li:last-child { border-bottom: 0; }
.dest-sidebar__list a { display: flex; align-items: center; gap: 8px; padding: 13px 18px; color: var(--text); font-weight: 600; font-size: 14px; }
.dest-sidebar__list a:hover { background: var(--bg-soft); color: var(--primary); }
.dest-sidebar__pin { color: var(--accent); }

/* Optional color hover-highlight (Settings → Top Destinations) */
.dest-sidebar--overlay .dest-sidebar__list a { transition: background .15s ease, color .15s ease; }
.dest-sidebar--overlay .dest-sidebar__list a:hover { background: var(--dest-accent, var(--accent)); color: #fff; }
.dest-sidebar--overlay .dest-sidebar__list a:hover .dest-sidebar__pin { color: #fff; }

/* Horizontal package row */
.pkg-row {
    display: grid; grid-template-columns: 230px 1fr; gap: 22px;
    background: var(--white); border: 1px solid var(--line); border-radius: 6px;
    padding: 18px; margin-bottom: 20px; box-shadow: var(--shadow);
}
.pkg-row__media { position: relative; display: block; border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; background: #dbe4f0; }
.pkg-row__media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-row__badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.pkg-row__body { display: flex; flex-direction: column; min-width: 0; }
.pkg-row__title { font-size: 21px; color: var(--primary); margin: 2px 0 14px; }
.pkg-row__meta { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 16px; }
.pkg-row__metacol { display: flex; flex-direction: column; gap: 3px; }
.pkg-row__metacol--wide { flex: 1; min-width: 200px; }
.pkg-row__label { font-size: 13px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.pkg-row__ic { display: inline-flex; color: var(--price-box, #1878F0); }
.pkg-row__ic svg { display: block; }
.pkg-row__value { font-size: 14px; color: var(--text); }
.pkg-row__inclusions { list-style: none; margin: 0; padding: 0; font-size: 13px; color: var(--text); }
.pkg-row__inclusions li { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.pkg-row__incic { display: inline-flex; flex-shrink: 0; color: #444; }
.pkg-row__incic svg { display: block; width: 15px; height: 15px; }
.pkg-row__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pkg-row__price { width: 180px; height: 50px; box-sizing: border-box; display: inline-flex; align-items: stretch; border: 1px solid var(--price-box, #1878F0); border-radius: 4px; overflow: hidden; cursor: pointer; font-family: var(--font); text-decoration: none; color: inherit; transition: border-color .18s ease; }
.pkg-row__from { background: #eef2f8; color: var(--price-box, #1878F0); font-weight: 700; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; padding: 0 10px; display: flex; align-items: center; flex-shrink: 0; transition: background .18s ease, color .18s ease; }
.pkg-row__amount { background: var(--price-box, #1878F0); color: #fff; font-weight: 800; font-size: 20px; line-height: 1.05; letter-spacing: -.3px; padding: 0 10px; flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: center; text-align: center; transition: background .18s ease; }
.pkg-row__unit { background: var(--price-box, #1878F0); color: #eaf2ff; font-size: 10px; font-weight: 600; line-height: 1.05; padding: 0 8px 0 0; flex: 0 1 auto; min-width: 0; display: flex; align-items: center; white-space: normal; transition: background .18s ease, color .18s ease; }
/* Hover: highlight the whole price box in the Book Now accent color */
/* Hover: highlight only the price (amount + unit), not the FROM label */
.pkg-row__price:hover { border-color: var(--accent); }
.pkg-row__price:hover .pkg-row__amount { background: var(--accent); }
.pkg-row__price:hover .pkg-row__unit { background: var(--accent); color: #fff3dd; }

@media (max-width: 860px) {
    .home-listing { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .pkg-row { grid-template-columns: 1fr; }
}

/* ---- Package detail page ---- */
.pkg-detail { display: grid; grid-template-columns: 1fr 320px; gap: 34px; align-items: start; }
.pkg-detail__main { min-width: 0; }
.pkg-detail__banner { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 22px; aspect-ratio: 8 / 3; }
.pkg-detail__banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-detail__title { font-size: 30px; margin-bottom: 4px; }
.pkg-detail__dest { color: var(--muted); font-weight: 700; letter-spacing: .5px; font-size: 13px; margin-bottom: 22px; }

.pkg-summary { display: grid; grid-template-columns: auto auto 1fr auto; gap: 0; align-items: center; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.pkg-summary__group { padding: 4px 28px; }
.pkg-summary__group + .pkg-summary__group { border-left: 1px solid var(--line); }
.pkg-summary__price { display: flex; flex-direction: column; padding-left: 0; }
.pkg-summary__from { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--dark); }
.pkg-summary__amount { font-size: 46px; font-weight: 800; color: #e2483d; line-height: 1; }
.pkg-summary__unit { font-size: 13px; font-weight: 700; letter-spacing: .5px; color: var(--dark); text-transform: uppercase; }
.pkg-summary__rate { font-size: 11px; color: var(--muted); margin-top: 6px; }
.pkg-summary__info { display: inline-block; color: var(--muted); cursor: help; }
.pkg-summary__col { display: flex; flex-direction: column; gap: 6px; font-size: 14px; white-space: nowrap; }
.pkg-summary__duration { font-weight: 700; color: var(--primary); text-transform: uppercase; }
.pkg-summary__save { color: var(--muted); }
.pkg-summary__save strong { color: #e2483d; font-weight: 800; }
.pkg-summary__inclusions { list-style: none; margin: 0; padding: 4px 28px; font-size: 14px; border-left: 1px solid var(--line); }
.pkg-summary__inclusions li { padding-left: 24px; position: relative; margin-bottom: 6px; color: var(--text); }
.pkg-summary__inclusions li:last-child { margin-bottom: 0; }
.pkg-summary__inclusions li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--primary); font-size: 12px; }
.guarantee-seal--inline { position: static; transform: none; background: none; color: var(--primary); }
.pkg-detail__body { max-width: none; }
.pkg-detail__body h2 { font-size: 26px; margin: 1.4em 0 .5em; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.pkg-detail__body h2:first-child { margin-top: 0; }
.pkg-detail__body h3 { font-size: 18px; color: var(--primary); margin: 1.1em 0 .3em; }
.pkg-detail__body ul { margin: 0 0 1em; padding-left: 20px; }
.pkg-detail__body ul li { margin-bottom: 6px; }
.pkg-detail__body hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }

/* Structured guide sections (icon + text + image) */
.pkg-guide { margin-top: 8px; }
.guide-section { padding: 26px 0; border-top: 1px solid var(--line); }
.guide-section:first-child { border-top: 0; padding-top: 6px; }
.guide-section__head { display: flex; align-items: center; gap: 12px; font-size: 24px; color: var(--primary); margin: 0 0 16px; }
.guide-section__icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(26,58,107,.08); color: var(--accent);
}
.guide-section__row { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: center; }
.guide-section--rev .guide-section__row { grid-template-columns: 300px 1fr; }
.guide-section--rev .guide-section__text { order: 2; }
.guide-section--rev .guide-section__media { order: 1; }
.guide-section__text { color: var(--text); line-height: 1.75; font-size: 15.5px; }
.guide-section__text h4 { font-size: 17px; color: var(--primary); margin: 1em 0 .3em; }
.guide-section__text ul { margin: 0 0 1em; padding-left: 20px; }
.guide-section__text ul li { margin-bottom: 5px; }
.guide-section__media { }
.guide-section__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }

@media (max-width: 700px) {
    .guide-section__row,
    .guide-section--rev .guide-section__row { grid-template-columns: 1fr; }
    .guide-section__text { order: 2 !important; }
    .guide-section__media { order: 1 !important; margin-bottom: 14px; }
}

/* Other packages (in the same destination) */
.other-packages { margin-top: 40px; }
.other-packages > h2 { font-size: 24px; padding-bottom: 8px; border-bottom: 2px solid var(--line); margin-bottom: 22px; }
.other-packages .pkg-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .other-packages .pkg-grid { grid-template-columns: 1fr; } }

/* Sidebar: Book Online box */
.pkg-detail__side { position: sticky; top: 90px; }
.book-online { border: 2px solid var(--primary); border-radius: 3px; overflow: hidden; margin-bottom: 22px; padding: 8px; background: var(--primary); }
.book-online__head { background: var(--accent); color: #fff; font-size: 21px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-align: center; padding: 15px; }
.book-online__body { background: var(--primary); padding: 18px 12px 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.book-online__label { display: block; color: #fff; font-size: 14px; margin: 10px 0 5px; }
.book-online__date, .book-online__input { width: 100%; padding: 11px 12px; border: 0; border-radius: 3px; font-size: 16px; font-family: inherit; min-height: 44px; }
.book-online__search { width: 100%; margin-top: 16px; background: #7bb540; color: #fff; border: 0; border-radius: 3px; padding: 13px; font-size: 16px; font-weight: 800; letter-spacing: 1px; cursor: pointer; }
.book-online__search:hover { background: #6aa235; }

/* Countdown */
.countdown { margin-top: 20px; text-align: center; color: #fff; }
.countdown__title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.countdown__row { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.countdown__cell { display: flex; flex-direction: column; min-width: 54px; }
.countdown__cell span { font-size: 26px; font-weight: 800; }
.countdown__cell small { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #cdd8ea; }
.countdown__colon { font-size: 22px; font-weight: 800; line-height: 1.4; }

/* Book by phone */
.book-phone { border: 3px solid #7bb540; border-radius: 4px; padding: 22px; text-align: center; }
.book-phone__title { font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--dark); margin-bottom: 8px; }
.book-phone__num { display: block; font-size: 30px; font-weight: 800; color: #7bb540; margin-bottom: 10px; }
.book-phone__note { font-size: 14px; color: var(--text); margin: 0; font-weight: 600; }

@media (max-width: 860px) {
    .pkg-detail { grid-template-columns: 1fr; }
    .pkg-detail__side { position: static; }
    .pkg-summary { grid-template-columns: 1fr 1fr; }
}

/* ---- Package grid + cards ---- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(18,35,63,.14); }
.pkg-card__media { position: relative; aspect-ratio: 3/2; background: #dbe4f0; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card__badge {
    position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; text-transform: uppercase;
}
.pkg-card__body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-card__dest { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); font-weight: 700; }
.pkg-card__title { font-size: 20px; margin: 4px 0 6px; }
.pkg-card__duration { color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.pkg-card__inclusions { list-style: none; padding: 0; margin: 0 0 16px; font-size: 14px; color: var(--text); }
.pkg-card__inclusions li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.pkg-card__inclusions li::before { content: "✓"; position: absolute; left: 0; color: #1c7c3f; font-weight: 700; }
.pkg-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.pkg-card__price { display: flex; flex-direction: column; line-height: 1.1; }
.pkg-card__old { text-decoration: line-through; color: var(--muted); font-size: 13px; }
.pkg-card__amount { font-size: 26px; font-weight: 800; color: var(--primary); }
.pkg-card__unit { font-size: 12px; color: var(--muted); }

/* ---- Guarantee badge ---- */
.guarantee-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 90px; height: 90px; border-radius: 50%; background: var(--accent);
    color: #fff; font-weight: 800; text-align: center; font-size: 12px; line-height: 1.1;
    box-shadow: var(--shadow);
}

/* ---- Top destinations list ---- */
.dest-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dest-list a {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 16px; font-weight: 600; text-align: center; color: var(--primary);
}
.dest-list a:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Plain highlighted page title (no banner) ---- */
.page-title { text-align: center; padding: 48px 0 10px; }
.page-title h1 { font-size: 40px; margin: 0 0 10px; display: inline-block; }
.page-title h1::after { content: ""; display: block; width: 70px; height: 3px; background: var(--accent); margin: 12px auto 0; border-radius: 2px; }
.page-title p { color: var(--muted); font-size: 18px; margin: 0; }
@media (max-width: 640px) { .page-title h1 { font-size: 30px; } }

/* ---- Page header banner ---- */
.page-hero {
    background: linear-gradient(rgba(18,35,63,.72), rgba(18,35,63,.72)),
                center/cover no-repeat var(--hero-img, var(--primary));
    color: #fff; padding: 70px 0; text-align: center;
    min-height: var(--hero-h, 0); display: flex; align-items: center;
}
.page-hero .container { width: 100%; }
.page-hero h1 { color: #fff; font-size: 40px; margin-bottom: 8px; }
.page-hero h1::after { content: ""; display: block; width: 70px; height: 3px; background: var(--accent); margin: 14px auto 0; border-radius: 2px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 18px; margin: 0; }
/* Contained (boxed) banner — sits within the site width with margins + rounded corners */
.page-hero--contained { max-width: var(--container); margin: 24px auto; border-radius: 12px; overflow: hidden; }
@media (max-width: 640px) { .page-hero h1 { font-size: 30px; } .page-hero { padding: 48px 0; } }

/* ---- Page lead intro + form card title ---- */
.page-lead { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 0 0 24px; }
.form-card__title { color: var(--primary); font-size: 22px; margin: 0 0 22px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); }

/* ---- Best Price Guarantee (brand-styled CMS body) ---- */
.bpg { max-width: 900px; margin: 0 auto; }
.bpg > p:first-child { font-size: 19px; line-height: 1.7; color: var(--text); }
.bpg h2 { color: var(--primary); font-size: 26px; margin: 40px 0 18px; padding-bottom: 10px; position: relative; }
.bpg h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.bpg p { color: var(--text); line-height: 1.7; }
.bpg ul { list-style: none; padding: 0; margin: 18px 0; }
.bpg ul li { position: relative; padding: 8px 0 8px 34px; border-bottom: 1px solid var(--line); color: var(--text); }
.bpg ul li:last-child { border-bottom: 0; }
.bpg ul li::before {
    content: "\2713"; position: absolute; left: 0; top: 7px; width: 22px; height: 22px;
    background: var(--accent); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
/* 3-step "How It Works" cards from a plain <ol> (CSS counters) */
.bpg ol {
    counter-reset: bpg-step; list-style: none; padding: 0; margin: 24px 0 8px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.bpg ol li {
    counter-increment: bpg-step; position: relative; background: var(--white);
    border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 48px 22px 24px; line-height: 1.6; color: var(--text);
}
.bpg ol li::before {
    content: counter(bpg-step); position: absolute; top: -22px; left: 22px;
    width: 44px; height: 44px; background: var(--primary); color: #fff;
    border-radius: 50%; font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.bpg ol li strong { display: block; color: var(--primary); font-size: 17px; margin-bottom: 6px; }
@media (max-width: 760px) { .bpg ol { grid-template-columns: 1fr; gap: 34px; } }

/* ---- Legal pages (Privacy, Terms) — brand-styled, organized ---- */
.legal { max-width: 860px; margin: 0 auto; }
.legal > p:first-child { font-size: 18px; line-height: 1.7; color: var(--text); }
.legal .legal-updated { color: var(--muted); font-size: 14px; font-style: italic; margin: 0 0 26px; }
.legal h2 { color: var(--primary); font-size: 23px; margin: 38px 0 14px; padding-bottom: 9px; position: relative; }
.legal h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 54px; height: 3px; background: var(--accent); border-radius: 2px; }
.legal p { color: var(--text); line-height: 1.75; margin: 0 0 14px; }
.legal ul { list-style: none; padding: 0; margin: 14px 0 20px; }
.legal ul li { position: relative; padding: 6px 0 6px 28px; color: var(--text); line-height: 1.65; }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.legal a { color: var(--price-box, #1878F0); font-weight: 600; }
.legal__contact { margin-top: 42px; background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 24px 28px; }
.legal__contact h2 { margin-top: 0; }
.legal__contact ul li::before { display: none; }
.legal__contact ul li { padding-left: 0; }

/* ---- Contact map ---- */
.contact-map { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 26px; border: 1px solid var(--line); }
.contact-map__frame { display: block; width: 100%; height: 360px; border: 0; }
@media (max-width: 640px) { .contact-map__frame { height: 260px; } }

/* ---- Free Travel Guides page ---- */
.guide-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.guide-intro__media img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); display: block; }
.guide-intro__text { font-size: 16px; line-height: 1.7; }
.guide-benefits { list-style: none; margin: 18px 0 0; padding: 0; }
.guide-benefits li { position: relative; padding: 8px 0 8px 34px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line); }
.guide-benefits li:last-child { border-bottom: 0; }
.guide-benefits li::before {
    content: "✓"; position: absolute; left: 0; top: 7px; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.guide-trust { margin-top: 22px; display: inline-block; background: #e7f6ec; color: #1c7c3f; font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 30px; border: 1px solid #b7e3c4; }
.guide-form__title { font-size: 26px; margin: 0 0 4px; }
.guide-form__sub { color: var(--muted); margin: 0 0 20px; }
.guide-form__note { text-align: center; color: var(--muted); font-size: 12px; margin: 12px 0 0; }
@media (max-width: 860px) { .guide-intro { grid-template-columns: 1fr; } }

/* ---- Forms ---- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--dark); }
.field input, .field select, .field textarea {
    padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 16px; font-family: inherit; min-height: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { font-weight: 400; font-size: 13px; color: var(--muted); }

/* ---- Layout with sidebar ---- */
.with-sidebar { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.sidebar-card__head {
    background: var(--primary); color: #fff; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; font-size: 14px; padding: 14px 18px; position: relative;
}
.sidebar-card__head::after {
    content: ""; position: absolute; left: 0; bottom: -6px; border-width: 6px 6px 0 0;
    border-style: solid; border-color: var(--accent) transparent transparent transparent;
}
.sidebar-card__body { padding: 18px; }
.sidebar-card__body p { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.sidebar-card__body p:first-child { padding-top: 4px; }
.sidebar-card__body p:last-child { border-bottom: 0; padding-bottom: 4px; }
.sidebar-card__body strong { color: var(--primary); font-weight: 700; }
.sidebar-card__body a { color: var(--accent); font-weight: 700; }
.sidebar-card__body a:hover { color: var(--primary); }
.sidebar-card__note { font-size: 13px; color: var(--muted); }
.sidebar-card__note { font-weight: 400; }

/* ---- FAQ category heading ---- */
.faq-cat { font-size: 20px; color: var(--primary); margin: 30px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.faq-cat:first-of-type { margin-top: 0; }

/* ---- FAQ accordion ---- */
.faq + .faq-cat { margin-top: 34px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 0; }
.faq__q { width: 100%; text-align: left; background: var(--white); border: 0; padding: 18px 22px; font-size: 16px; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; gap: 10px; }
.faq__q:hover { background: var(--bg-soft); }
.faq__a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--muted); }
.faq__item.open .faq__a { padding: 0 22px 20px; max-height: 400px; }
.faq__item.open .faq__q .faq__icon { transform: rotate(45deg); }
.faq__icon { transition: transform .2s ease; }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.review {
    position: relative; background: var(--white); border: 1px solid var(--line);
    border-top: 3px solid var(--accent); border-radius: var(--radius); padding: 30px 28px 26px;
    box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(18,35,63,.12); }
.review::before {
    content: "\201C"; position: absolute; top: 8px; right: 20px;
    font-family: Georgia, "Times New Roman", serif; font-size: 72px; line-height: 1;
    color: var(--primary); opacity: .10; pointer-events: none;
}
.review__stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { font-style: italic; color: var(--text); line-height: 1.65; margin: 0 0 18px; }
.review__text::before { content: "\201C"; }
.review__text::after { content: "\201D"; }
.review__author { font-weight: 700; color: var(--primary); margin: 0; }
.review__source { color: var(--muted); font-size: 13px; font-weight: 600; }
.page-lead--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.reviews-trustbox { margin: 20px 0; }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(18,35,63,.12); }
.blog-card__media { display: block; aspect-ratio: 16/9; background: #dbe4f0; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 20px 22px; }
.blog-card__date { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.blog-card__body h3 { font-size: 19px; margin: 0 0 8px; line-height: 1.25; }
.blog-card__body h3 a { color: var(--primary); }
.blog-card__body h3 a:hover { color: var(--accent); }
.blog-card__body p { color: var(--text); font-size: 14px; margin: 0 0 12px; }
.blog-card__more { font-weight: 700; color: var(--accent); font-size: 14px; }

/* ---- Prose (CMS body) ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin-bottom: 1em; }
.prose h2, .prose h3 { margin-top: 1.4em; }

/* ---- CTA strip ---- */
.cta-strip { background: var(--primary); color: #fff; text-align: center; padding: 54px 0; }
.cta-strip h2 { color: #fff; font-size: 30px; }
.cta-strip p { color: rgba(255,255,255,.85); margin-bottom: 24px; }

/* ---- Footer ---- */
.footer { background: #1a1a1a; color: #b9c2cf; padding: 56px 0 0; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr 1.6fr; gap: 32px; }
.footer h4 {
    color: #3d9bd6; font-size: 16px; text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 18px; padding-bottom: 12px; position: relative;
}
.footer h4::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255,255,255,.12);
}
.footer h4::before {
    content: ""; position: absolute; left: 0; bottom: 0; width: 46px; height: 2px; background: var(--accent); z-index: 1;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }
.footer a { color: #b9c2cf; }
.footer a:hover { color: var(--accent); }
.footer__logo { max-height: 46px; margin-bottom: 12px; }
.footer__about p { line-height: 1.7; }
.footer__social { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }

/* Contact column with icons */
.footer__contact-row { display: flex; gap: 10px; align-items: flex-start; margin: 0 0 14px; }
.footer__ic { color: var(--accent); flex-shrink: 0; }

/* Accepted-payment badges (generic chips, not brand logos) */
.footer__cards { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer__card {
    background: #fff; color: #1a1a1a; font-size: 11px; font-weight: 800; letter-spacing: .5px;
    padding: 6px 9px; border-radius: 4px; line-height: 1; display: inline-flex; align-items: center;
    border: 1px solid #d7dde5;
}
/* Image-less payment badges: clean white pill with the brand name in brand color */
.footer__card { min-width: 62px; height: 34px; justify-content: center; }
.footer__card--visa       { color: #1a1f71; }
.footer__card--mastercard { color: #cc5b2a; }
.footer__card--amex       { color: #1379c4; }
.footer__card--discover   { color: #e26a2c; }
.footer__card--img { padding: 4px 6px; min-width: 0; height: auto; }
.footer__card--img img { height: 26px; width: auto; display: block; }

/* Trustpilot line */
.footer__trust { text-align: center; padding: 26px 0 0; font-size: 14px; color: #b9c2cf; }
.footer__trust strong { color: #00b67a; }
.footer__trust a { text-decoration: underline; }

.footer__disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 26px; padding: 22px 0 30px; font-size: 12px; color: #8a93a1; text-align: center; }
.footer__copy { margin: 0 0 12px; font-size: 14px; color: #b9c2cf; }
.footer__copy a { color: #b9c2cf; }
.footer__copy a:hover { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .values, .pkg-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .with-sidebar { grid-template-columns: 1fr; }
    .dest-list { grid-template-columns: repeat(2, 1fr); }
    .hero__title { font-size: 36px; }
}
@media (max-width: 640px) {
    .nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: #fff; padding: 16px 20px; gap: 14px;
        box-shadow: var(--shadow); align-items: flex-start;
    }
    body.nav-open .nav { display: flex; }
    .nav-toggle { display: block; }
    .header__inner { position: relative; }
    .values, .pkg-grid, .blog-grid, .review-grid, .form-grid { grid-template-columns: 1fr; }
    .hero__card { margin: 0 0 -30px; padding: 26px; }
    .hero__title { font-size: 30px; }
    .topbar__contact a { margin-right: 10px; display: inline-flex; align-items: center; min-height: 36px; }
    /* Bigger tap targets in the mobile menu */
    .nav__link { width: 100%; padding: 12px 0; font-size: 15px; }
    .nav__book { width: 100%; margin-top: 4px; }
    .topbar__social a { padding: 8px; }
    .footer__col a, .footer__copy a, .footer__contact-row a { display: inline-block; padding: 4px 0; }
}
/* Rich admin-entered content must never break the layout on mobile */
.prose, .legal, .bpg { overflow-wrap: break-word; }
.prose table { display: block; width: 100%; overflow-x: auto; white-space: nowrap; }
