:root {
    /* Brand */
    --primary: #24A8E0;     /* sky blue — links, info accents, route codes */
    --secondary: #EA217B;   /* magenta — eyebrows, tags, name highlights */
    --accent: #EE5A2A;      /* orange — CTA buttons, prices, action states */
    --accent-hover: #F4753F;
    --success: #8BC241;
    --warning: #FADE00;
    --danger: #ED2B2B;

    /* Extended set — for category badges only, so each category keeps one fixed color
       sitewide (villa/hotel/sport/blog badges all draw from this same set). */
    --cat-gold: #B8860B;
    --cat-teal: #1F7A7C;
    --cat-brown: #7A5C3E;

    /* Neutrals (page) */
    --bg: #FFFFFF;
    --bg-alt: #E5EAF5;
    --surface: #FFFFFF;
    --surface-2: #EEF1FA;
    --text: #2D292B;
    --text-dim: rgba(45, 41, 43, 0.62);
    --line: rgba(45, 41, 43, 0.14);
    --line-soft: rgba(45, 41, 43, 0.08);
    --on-accent: #FFFFFF;

    /* Text sitting on photography (hero, card overlays) — constant regardless of page theme */
    --on-dark: #FFFFFF;
    --on-dark-dim: rgba(255, 255, 255, 0.78);

    --font-display: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-mono: 'Roboto', sans-serif;
    --radius: 14px;
    --container: 1180px;
    --card-shadow: 0 1px 2px rgba(45,41,43,0.04), 0 10px 28px rgba(45,41,43,0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.4em; line-height: 1.12; }

/* ---------- Category badge colors ----------
   One fixed color per category, defined once here and applied via a .cat-* class
   alongside each badge's own class (e.g. class="stay-badge cat-blue"). A category
   keeps the same color everywhere it appears. Adding a new category later is just
   picking one of these 8 classes — no new CSS needed. */
.cat-blue   { background: var(--primary); }
.cat-pink   { background: var(--secondary); }
.cat-orange { background: var(--accent); }
.cat-green  { background: var(--success); }
.cat-gold   { background: var(--cat-gold); }
.cat-teal   { background: var(--cat-teal); }
.cat-brown  { background: var(--cat-brown); }
.cat-slate  { background: var(--text); }

.eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--secondary); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--secondary); }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.02em; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); font-weight: 600; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { border-color: rgba(255,255,255,0.42); color: #fff; }
.btn-outline:hover { border-color: #fff; }

.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--text); }
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); }
.nav-links { display: flex; gap: 22px; font-size: 0.88rem; white-space: nowrap; }
.nav-links a { color: var(--text-dim); opacity: 1; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
@media (max-width: 1180px) { .nav-links { display: none; } }

/* ---------- Hero carousel ---------- */
.hero { position: relative; height: 92vh; min-height: 620px; overflow: hidden; border-bottom: 1px dashed var(--line); }

.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }

.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.08);
    transition: transform 7s linear;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* gradient wash for legibility, tuned per-slide via inline custom prop */
.hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(13,23,48,0.35) 0%, rgba(13,23,48,0.15) 30%, rgba(13,23,48,0.55) 72%, rgba(13,23,48,0.92) 100%),
        linear-gradient(90deg, rgba(13,23,48,0.55) 0%, rgba(13,23,48,0.05) 45%);
}

.hero-content {
    position: relative; z-index: 3;
    height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding-bottom: 92px;
}
.hero-slide-text {
    opacity: 0; transform: translateY(22px);
    transition: opacity .7s ease .25s, transform .7s ease .25s;
    max-width: 620px;
}
.hero-slide.active .hero-slide-text { opacity: 1; transform: translateY(0); }

.hero-route { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--secondary); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hero-route .rule { width: 30px; height: 1px; background: var(--secondary); }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); color: var(--on-dark); margin-bottom: 14px; }
.hero p.lede { font-size: 1.05rem; color: var(--on-dark-dim); max-width: 46ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 0; flex-wrap: wrap; }

/* Nav sits above the carousel, transparent, so photography reads full-bleed */
.hero .nav-overlay { position: absolute; top: 0; left: 0; right: 0; z-index: 5; background: linear-gradient(180deg, rgba(13,23,48,0.55), transparent); }

/* Pagination — numbered, boarding-pass flavored */
.hero-pagination { position: absolute; right: 24px; bottom: 40px; z-index: 4; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.hero-dots { display: flex; gap: 10px; }
.hero-dot { width: 34px; height: 3px; background: rgba(255,255,255,0.32); border: none; cursor: pointer; padding: 0; position: relative; overflow: hidden; }
.hero-dot span { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.hero-dot.active span { animation: fillDot 6s linear forwards; }
@keyframes fillDot { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-counter { font-family: var(--font-mono); font-size: 0.78rem; color: var(--on-dark-dim); }
.hero-counter b { color: var(--on-dark); font-weight: 600; }

.hero-arrows { position: absolute; left: 24px; bottom: 40px; z-index: 4; display: flex; gap: 10px; }
.hero-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.32); background: rgba(13,23,48,0.4); color: var(--on-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, background .15s; }
.hero-arrow:hover { border-color: var(--accent); background: rgba(13,23,48,0.7); }

@media (max-width: 720px) {
    .hero { height: 82vh; }
    .hero-arrows { display: none; }
    .hero-pagination { right: 20px; bottom: 26px; }
}

.section { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text); max-width: 22ch; }
.section-head p { color: var(--text-dim); max-width: 42ch; margin: 0; }

/* ---------- Partner logo strip ---------- */
.logo-strip { padding: 40px 0; border-bottom: 1px dashed var(--line); overflow: hidden; }
.logo-strip-row { display: flex; align-items: center; gap: 28px; }
@media (max-width: 760px) { .logo-strip-row { flex-wrap: wrap; } }

.follow-block { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.follow-label { font-family: var(--font-mono); font-weight: 600; font-size: 0.85rem; color: var(--text); white-space: nowrap; }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line); color: var(--text-dim);
    display: flex; align-items: center; justify-content: center;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.social-icons a:hover { border-color: transparent; color: #fff; }
.social-icons a.ig:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.social-icons a.fb:hover { background: #1877F2; }
.social-icons a.yt:hover { background: #FF0000; }

.logo-strip-divider { width: 1px; height: 30px; background: var(--line); flex-shrink: 0; }
@media (max-width: 760px) { .logo-strip-divider { display: none; } }

.logo-track-mask { flex: 1; min-width: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.logo-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: logoScroll 26s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-item {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.04em;
    white-space: nowrap;
    filter: grayscale(1); opacity: 0.55;
    transition: filter .25s ease, opacity .25s ease;
}
.logo-item:hover { filter: grayscale(0); opacity: 1; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Popular destinations (horizontal slider) ---------- */
.popdest-grid { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: end; }
@media (max-width: 900px) { .popdest-grid { grid-template-columns: 1fr; } }

.popdest-intro-icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--primary); }
.popdest-intro h2 { font-size: 1.9rem; margin-bottom: 12px; }
.popdest-intro p { color: var(--text-dim); font-size: 0.96rem; max-width: 30ch; margin-bottom: 26px; }
.popdest-nav { display: flex; gap: 10px; }
.popdest-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.popdest-nav button:hover { border-color: var(--primary); color: var(--primary); }
.popdest-nav button:disabled { opacity: 0.3; cursor: default; }
.popdest-nav button:disabled:hover { border-color: var(--line); color: var(--text); }

.popdest-slider { overflow: hidden; }
.popdest-cards {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: 2px;
}
.popdest-cards::-webkit-scrollbar { display: none; }

.popdest-card {
    position: relative;
    flex: 0 0 268px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    display: block;
    scroll-snap-align: start;
}
@media (max-width: 560px) { .popdest-card { flex-basis: 74vw; } }

.popdest-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.popdest-card:hover .card-bg { transform: scale(1.06); }
.popdest-card .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 3rem; color: rgba(255,255,255,0.16); letter-spacing: 0.1em; }
.popdest-card .card-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,23,48,0.05) 30%, rgba(13,23,48,0.9) 100%); }

.popdest-card .card-best {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em;
    background: rgba(13,23,48,0.55); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff; padding: 6px 10px; border-radius: 999px;
}
.popdest-card .card-arrow {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(13,23,48,0.55); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--on-dark); transition: background .2s, transform .2s, color .2s;
}
.popdest-card:hover .card-arrow { background: var(--accent); color: var(--on-accent); transform: rotate(45deg); }
.popdest-card .card-text { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; }
.popdest-card .card-text .place { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--on-dark); margin-bottom: 3px; }
.popdest-card .card-text .sub { font-family: var(--font-mono); font-size: 0.72rem; color: var(--on-dark-dim); }

/* ---------- Weekend Deals (villa stay cards, full-bleed slider) ---------- */
.weekend-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.weekend-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text); max-width: 22ch; margin-bottom: 10px; }
.weekend-head p { color: var(--text-dim); max-width: 44ch; margin: 0; }
.weekend-nav { display: flex; gap: 10px; flex-shrink: 0; }
.weekend-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.weekend-nav button:hover { border-color: var(--primary); color: var(--primary); }
.weekend-nav button:disabled { opacity: 0.3; cursor: default; }
.weekend-nav button:disabled:hover { border-color: var(--line); color: var(--text); }

/* Full-bleed breakout: spans the full viewport width regardless of the .wrap max-width above it */
.weekend-grid {
    display: flex; gap: 24px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 2px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 6px;
}
.weekend-grid::-webkit-scrollbar { display: none; }

.stay-card { flex: 0 0 400px; scroll-snap-align: start; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); display: flex; flex-direction: column; background: rgba(13,23,48,0.94); }
@media (max-width: 900px) { .stay-card { flex: 0 0 340px; } }
@media (max-width: 640px) { .stay-card { flex: 0 0 82vw; } }

.stay-hero { position: relative; aspect-ratio: 4 / 3.4; }
.stay-hero .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stay-hero .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 2.6rem; color: rgba(255,255,255,0.14); letter-spacing: 0.1em; }
.stay-hero .fade-to-panel { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(180deg, rgba(13,23,48,0) 0%, rgba(13,23,48,0.94) 92%); }

.stay-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: #fff;
    padding: 7px 12px; border-radius: 999px;
}
.stay-wish {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.92); border: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); cursor: pointer; transition: transform .15s ease;
}
.stay-wish:hover { transform: scale(1.08); }
.stay-wish svg { transition: fill .15s ease, stroke .15s ease; }
.stay-wish.active svg { fill: var(--secondary); stroke: var(--secondary); }

.stay-panel { padding: 0 18px 18px; margin-top: -2px; display: flex; flex-direction: column; flex: 1; }
.stay-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.stay-loc { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.stay-divider { border: none; border-top: 1px solid rgba(255,255,255,0.16); margin: 0 0 14px; }
.stay-stats { display: flex; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.stay-stat { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.76rem; color: rgba(255,255,255,0.8); }
.stay-stat svg { opacity: 0.8; flex-shrink: 0; }
.stay-price-row { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.stay-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; }
.stay-price small { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.62); font-weight: 400; }
.stay-explore {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px; border-radius: 999px;
    background: var(--accent); color: var(--on-accent);
    font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600;
    border: none; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.stay-explore:hover { background: var(--accent-hover); transform: translateY(-1px); }

.dest-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); transition: transform .18s ease, border-color .18s ease; display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-4px); border-color: var(--line); }
.dest-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--surface-2), var(--bg-alt)); position: relative; display: flex; align-items: center; justify-content: center; }
.dest-thumb .code { font-family: var(--font-mono); font-size: 2.1rem; letter-spacing: 0.08em; color: rgba(45,41,43,0.14); }
.dest-thumb .tag { position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; background: rgba(255,255,255,0.85); color: var(--secondary); padding: 5px 10px; border-radius: 999px; }
.dest-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.dest-body h3 { font-size: 1.2rem; margin-bottom: 4px; }
.dest-body .region { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 10px; }
.dest-body .tagline { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 18px; flex: 1; }
.dest-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--line); padding-top: 14px; font-family: var(--font-mono); font-size: 0.8rem; }
.dest-foot .price { color: var(--accent); font-size: 0.95rem; }

.ticket { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); display: grid; grid-template-columns: 1fr 190px; position: relative; overflow: hidden; }
.ticket-main { padding: 26px 26px 22px; }
.ticket-route { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim); margin-bottom: 14px; }
.ticket-route .code { font-size: 1rem; color: var(--primary); letter-spacing: 0.05em; }
.ticket-route .plane { flex: 1; height: 1px; background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 11px); position: relative; }
.ticket h3 { font-size: 1.35rem; margin-bottom: 10px; }
.ticket-highlights { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 7px; font-size: 0.88rem; color: var(--text-dim); }
.ticket-highlights li::before { content: '—'; color: var(--accent); margin-right: 8px; }
.ticket-meta { display: flex; gap: 22px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-dim); }
.ticket-meta b { display: block; color: var(--text); font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; }
.ticket-stub { background: var(--bg-alt); border-left: 1px dashed var(--line); padding: 26px 20px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.ticket-stub::before, .ticket-stub::after { content: ''; position: absolute; left: -10px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); }
.ticket-stub::before { top: -10px; }
.ticket-stub::after { bottom: -10px; }
.ticket-stub .label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 2px; }
.ticket-stub .price { font-family: var(--font-display); font-size: 1.55rem; color: var(--accent); font-weight: 600; }
.ticket-stub .price small { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); font-weight: 400; }
@media (max-width: 720px) {
    .ticket { grid-template-columns: 1fr; }
    .ticket-stub { border-left: none; border-top: 1px dashed var(--line); flex-direction: row; align-items: center; }
    .ticket-stub::before, .ticket-stub::after { top: auto; left: 30px; }
    .ticket-stub::before { top: -10px; }
    .ticket-stub::after { bottom: -10px; top: auto; }
}
.ticket-list { display: grid; gap: 20px; }

/* ---------- About Get Tripped ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-media { position: relative; height: 560px; padding: 20px 0; }
@media (max-width: 900px) { .about-media { height: 440px; max-width: 480px; margin: 0 auto; } }
.about-img-main { position: absolute; left: 0; top: 34px; width: 58%; height: calc(100% - 68px); border-radius: 22px; overflow: hidden; box-shadow: var(--card-shadow); }
.about-img-top { position: absolute; right: 0; top: 0; width: 46%; height: 52%; border-radius: 22px; overflow: hidden; box-shadow: var(--card-shadow); }
.about-img-bottom { position: absolute; right: 4%; bottom: 0; width: 46%; height: 46%; border-radius: 22px; overflow: hidden; box-shadow: var(--card-shadow); }
.about-media .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.about-media .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 2rem; color: rgba(255,255,255,0.16); letter-spacing: 0.1em; }

.about-badge {
    position: absolute; left: 56%; top: 50%; transform: translate(-50%, -50%);
    width: 172px; height: 172px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--line);
    box-shadow: 0 6px 28px rgba(45,41,43,0.16);
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
}
.about-badge svg.spin-text { position: absolute; inset: 0; animation: badgeSpin 16s linear infinite; }
.about-badge .badge-arrow { position: relative; z-index: 2; color: var(--accent); display: flex; }
@keyframes badgeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .about-badge svg.spin-text { animation: none; } }
@media (max-width: 900px) { .about-badge { width: 130px; height: 130px; } }

.about-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: var(--text); margin-bottom: 18px; }
.about-content > p { color: var(--text-dim); font-size: 1rem; max-width: 54ch; margin-bottom: 34px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 30px; }
@media (max-width: 560px) { .about-features { grid-template-columns: 1fr; } }
.about-feature-icon { color: var(--accent); margin-bottom: 14px; }
.about-feature h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.about-feature p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

.about-divider { border: none; border-top: 1px solid var(--line); margin: 0 0 26px; }
.about-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.about-booking { display: flex; align-items: center; gap: 14px; }
.about-booking-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); color: var(--on-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-booking .label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.about-booking .number { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text); }

/* ---------- Floating page breaker ---------- */
.breaker-section { position: relative; overflow: hidden; background: var(--bg); }
.breaker-inner { position: relative; height: 600px; }
@media (max-width: 760px) { .breaker-inner { height: 460px; } }

.breaker-heading {
    position: absolute; left: 0; right: 0; top: calc(50% + 60px); transform: translateY(-50%);
    text-align: center; z-index: 1; width: 100%; padding: 0 24px;
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.6rem, 13vw, 182px);
    color: var(--text); line-height: 0.98; letter-spacing: -0.02em;
}

.breaker-float {
    position: absolute; border-radius: 20px; z-index: 2;
    animation: floatY var(--dur, 7s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
.breaker-float a { display: block; position: relative; width: 100%; height: 100%; }
.breaker-img {
    width: 100%; height: 100%; border-radius: 20px;
    background-size: cover; background-position: center;
    border: 4px solid var(--bg);
    box-shadow: 0 14px 32px rgba(45,41,43,0.22);
    transition: transform .3s ease;
}
.breaker-float:hover .breaker-img { transform: scale(1.08); }

.breaker-tip {
    position: absolute; left: 50%; bottom: calc(100% + 14px); transform: translateX(-50%) translateY(6px);
    background: var(--text); color: #fff; padding: 8px 14px; border-radius: 10px;
    white-space: nowrap; text-align: center; z-index: 5;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.breaker-float:hover .breaker-tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.breaker-tip b { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; }
.breaker-tip span { display: block; font-family: var(--font-mono); font-size: 0.68rem; color: rgba(255,255,255,0.68); margin-top: 1px; }
.breaker-tip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--text); }

@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }
@media (prefers-reduced-motion: reduce) { .breaker-float { animation: none; } }

@media (max-width: 760px) {
    .breaker-float:nth-child(4), .breaker-float:nth-child(6), .breaker-float:nth-child(8) { display: none; } /* thin the scatter out on small screens */
}

/* ---------- Sports Tourism ---------- */
.sport-section { position: relative; background: #0D1730; overflow: hidden; padding: 84px 0; }

/* Background texture: soft glow + concentric "stadium light" rings for a distinct feel from the light sections around it */
.sport-bg-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 12% 15%, rgba(238,90,42,0.16) 0%, transparent 38%),
        radial-gradient(circle at 92% 85%, rgba(36,168,224,0.14) 0%, transparent 42%);
}
.sport-bg-rings {
    position: absolute; top: 50%; right: -120px; transform: translateY(-50%);
    width: 480px; height: 480px; pointer-events: none;
}
@media (max-width: 900px) { .sport-bg-rings { width: 320px; height: 320px; right: -100px; } }

.sport-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; position: relative; z-index: 2; }
.sport-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: #fff; margin-bottom: 10px; }
.sport-head p { color: rgba(255,255,255,0.66); max-width: 46ch; margin: 0; }
.sport-nav { display: flex; gap: 10px; flex-shrink: 0; }
.sport-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.24); background: transparent; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, color .15s; }
.sport-nav button:hover { border-color: var(--accent); color: var(--accent); }
.sport-nav button:disabled { opacity: 0.3; cursor: default; }
.sport-nav button:disabled:hover { border-color: rgba(255,255,255,0.24); color: #fff; }

.sport-track {
    position: relative; z-index: 2;
    display: flex; gap: 22px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 2px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 6px;
}
.sport-track::-webkit-scrollbar { display: none; }

.sport-card {
    flex: 0 0 400px; scroll-snap-align: start;
    position: relative; aspect-ratio: 3 / 4.7;
    border-radius: 22px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 12px 34px rgba(0,0,0,0.35);
    display: block; background: rgba(13,23,48,0.94);
}
@media (max-width: 900px) { .sport-card { flex: 0 0 340px; } }
@media (max-width: 640px) { .sport-card { flex: 0 0 82vw; } }

/* card-bg holds a gradient placeholder for now; drop a <video muted loop playsinline> in here later
   and card-hover-video.js (bottom of section) will auto play/pause it on hover/touch, no markup changes needed elsewhere */
.sport-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sport-card .card-bg video { width: 100%; height: 100%; object-fit: cover; }
.sport-card .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 2.8rem; color: rgba(255,255,255,0.14); letter-spacing: 0.1em; }
.sport-card .fade-to-panel { position: absolute; left: 0; right: 0; bottom: 0; height: 58%; background: linear-gradient(180deg, rgba(13,23,48,0) 0%, rgba(13,23,48,0.5) 40%, rgba(13,23,48,0.96) 100%); }

/* Sport badge icon is a Lucide stand-in for now. Once the backend admin supports
   per-sport icon uploads, swap the <i data-lucide="..."> for <img src="{sport.icon_url}">
   or an inline <svg> — sizing (15x15, 7px gap) and layout stay the same either way. */
.sport-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    display: flex; align-items: center; gap: 7px;
    font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
    color: #fff;
    padding: 8px 14px 8px 10px; border-radius: 999px;
}
.sport-badge img, .sport-badge svg { width: 15px; height: 15px; flex-shrink: 0; }

.sport-panel { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 20px 22px; }
.sport-meta { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.76rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.sport-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.sport-title { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: #fff; margin-bottom: 4px; }
.sport-location { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.sport-cities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.sport-cities .city-chip { font-family: var(--font-mono); font-size: 0.68rem; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.28); padding: 4px 9px; border-radius: 999px; }
.sport-price-row { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.16); }
.sport-price-row .label { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.sport-price-row .was { font-family: var(--font-body); font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: line-through; margin-right: 8px; }
.sport-price-row .now { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; }

/* ---------- Hotel Deals ---------- */
/* Layout mirrors Weekend Deals: heading row on top (contained width), full-bleed slider below */
.hotel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.hotel-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text); margin-bottom: 10px; }
.hotel-head p { color: var(--text-dim); max-width: 44ch; margin: 0; }
.hotel-nav { display: flex; gap: 10px; flex-shrink: 0; }
.hotel-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.hotel-nav button:hover { border-color: var(--primary); color: var(--primary); }
.hotel-nav button:disabled { opacity: 0.3; cursor: default; }
.hotel-nav button:disabled:hover { border-color: var(--line); color: var(--text); }

/* Full-bleed breakout, same technique as Weekend Deals — spans full viewport width */
.hotel-track {
    display: flex; gap: 22px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 2px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 6px;
}
.hotel-track::-webkit-scrollbar { display: none; }

/* Card footprint matches Weekend Deals (.stay-card) exactly at every breakpoint */
.hotel-card { flex: 0 0 400px; scroll-snap-align: start; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); display: flex; flex-direction: column; background: rgba(13,23,48,0.94); }
@media (max-width: 900px) { .hotel-card { flex: 0 0 340px; } }
@media (max-width: 640px) { .hotel-card { flex: 0 0 82vw; } }

.hotel-hero { position: relative; aspect-ratio: 4 / 3.4; }
.hotel-hero .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hotel-hero .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 2.6rem; color: rgba(255,255,255,0.14); letter-spacing: 0.1em; }
.hotel-hero .fade-to-panel { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(180deg, rgba(13,23,48,0) 0%, rgba(13,23,48,0.94) 92%); }

/* Badge label is free text, so adding new categories later (Luxury, Beach Escape, etc.)
   is just a new string plus a .cat-* class (see the category-color block below) — no new
   CSS pattern needed. */
.hotel-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: #fff;
    padding: 7px 12px; border-radius: 999px;
}

.hotel-panel { padding: 0 18px 18px; margin-top: -2px; display: flex; flex-direction: column; flex: 1; }
.hotel-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.hotel-loc { font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.hotel-divider { border: none; border-top: 1px solid rgba(255,255,255,0.16); margin: 0 0 14px; }
.hotel-price-row { margin-top: auto; margin-bottom: 12px; }
.hotel-price-row .label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.hotel-price-row .price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; }
.hotel-price-row .price small { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.62); font-weight: 400; }
.hotel-quote-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex: 1; padding: 12px 10px; border-radius: 999px;
    background: var(--accent); color: var(--on-accent);
    font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
    border: none; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.hotel-quote-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.hotel-actions { display: flex; gap: 10px; }
.hotel-view-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex: 1; padding: 12px 10px; border-radius: 999px;
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35);
    font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
    cursor: pointer; transition: border-color .15s ease, background .15s ease;
    text-decoration: none;
}
.hotel-view-btn:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- 3-step CTA ---------- */
.cta-section { padding: 90px 0; }
.cta-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-panel {
    background: rgba(238,90,42,0.07);
    border-radius: 24px;
    padding: 50px 44px;
}
@media (max-width: 560px) { .cta-panel { padding: 36px 26px; } }
.cta-panel h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); color: var(--text); margin-bottom: 16px; }
.cta-panel > p { color: var(--text-dim); font-size: 0.98rem; max-width: 42ch; margin-bottom: 34px; }

.cta-booking-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta-booking { display: flex; align-items: center; gap: 14px; }
.cta-booking-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); color: var(--on-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-booking .label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.cta-booking .number { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--accent); }

/* Staggered card collage, same technique as the About section image collage */
.cta-cards { position: relative; height: 460px; }
@media (max-width: 900px) { .cta-cards { height: auto; display: flex; flex-direction: column; gap: 20px; } }

.cta-card {
    background: var(--surface); border: 1px solid var(--line-soft);
    border-radius: 18px; box-shadow: var(--card-shadow);
    padding: 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(45,41,43,0.14); }
.cta-card-1 { position: absolute; top: 0; left: 8%; width: 300px; z-index: 2; }
.cta-card-2 { position: absolute; bottom: 0; left: 0; width: 300px; z-index: 2; }
.cta-card-3 { position: absolute; top: 34%; right: 0; width: 260px; z-index: 3; }
@media (max-width: 900px) { .cta-card-1, .cta-card-2, .cta-card-3 { position: static; width: 100%; } }

.cta-icon-box {
    width: 54px; height: 54px; border-radius: 14px;
    background: rgba(238,90,42,0.12); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: background .25s ease, color .25s ease;
}
.cta-card:hover .cta-icon-box { background: var(--accent); color: var(--on-accent); }
/* Third card ships with the "revealed" state by default, matching the reference's featured card */
.cta-card-3 .cta-icon-box { background: var(--accent); color: var(--on-accent); }

.cta-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.cta-card p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ---------- Hero Trip spotlight (parallax) ---------- */
.herotrip-section { position: relative; overflow: hidden; min-height: 680px; display: flex; align-items: flex-end; }
@media (max-width: 760px) { .herotrip-section { min-height: 560px; } }

.herotrip-bg {
    position: absolute; left: 0; right: 0; top: -18%; height: 136%;
    background-size: cover; background-position: center;
    will-change: transform;
}
.herotrip-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(13,23,48,0.8) 0%, rgba(13,23,48,0.4) 48%, rgba(13,23,48,0.12) 68%),
        linear-gradient(0deg, rgba(13,23,48,0.88) 0%, rgba(13,23,48,0.1) 42%);
}

/* Illustrated route map, left side, decorative */
.herotrip-map { position: absolute; left: 0; top: 0; bottom: 0; width: 54%; z-index: 2; pointer-events: none; }
@media (max-width: 900px) { .herotrip-map { display: none; } }
.herotrip-map svg { width: 100%; height: 100%; }
.herotrip-map .trail-path { fill: none; stroke: rgba(255,255,255,0.85); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.herotrip-map .trail-pin circle { fill: rgba(13,23,48,0.6); stroke: #fff; stroke-width: 1.4; }
.herotrip-map .trail-label { font-family: var(--font-body); font-size: 12.5px; fill: #fff; }

.herotrip-content-wrap { position: relative; z-index: 3; width: 100%; padding: 90px 0 64px; }
.herotrip-content { max-width: 540px; margin-left: auto; }
@media (max-width: 900px) { .herotrip-content { margin-left: 0; } }

.herotrip-tagline { font-style: italic; font-weight: 300; font-size: 1.3rem; color: rgba(255,255,255,0.82); margin-bottom: 6px; }
.herotrip-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.3rem, 5vw, 3.8rem); color: #fff; margin-bottom: 22px; line-height: 1; letter-spacing: -0.01em; }
.herotrip-desc { color: rgba(255,255,255,0.78); font-size: 1rem; max-width: 52ch; margin-bottom: 30px; }

.herotrip-meta { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.22); margin-bottom: 32px; }
.herotrip-meta .label { display: block; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.herotrip-meta .value { font-weight: 700; color: #fff; font-size: 0.98rem; }
.herotrip-meta .value.price { color: var(--accent); font-size: 1.25rem; }

/* ---------- Testimonials (auto-rotating, pulled from Google Reviews later) ---------- */
.gtesti-section { background: var(--bg); padding: 90px 0; }
.gtesti-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .gtesti-grid { grid-template-columns: 1fr; gap: 60px; } }

.gtesti-visual { position: relative; height: 540px; max-width: 400px; }
@media (max-width: 900px) { .gtesti-visual { margin: 0 auto; } }
@media (max-width: 480px) { .gtesti-visual { height: 460px; } }

.gtesti-peek { position: absolute; inset: 0; border-radius: 24px; }
.gtesti-peek-2 { background: linear-gradient(160deg, var(--secondary) 0%, #7A1450 100%); transform: translate(20px, -14px) rotate(4deg); z-index: 1; opacity: 0.9; }
.gtesti-peek-1 { background: linear-gradient(160deg, var(--primary) 0%, #124A63 100%); transform: translate(10px, -7px) rotate(2deg); z-index: 2; opacity: 0.95; }

.gtesti-card {
    position: absolute; inset: 0; z-index: 3;
    border-radius: 24px; overflow: hidden; box-shadow: var(--card-shadow);
    background: rgba(13,23,48,0.94);
}
.gtesti-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity .35s ease; }
.gtesti-card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 3rem; color: rgba(255,255,255,0.14); letter-spacing: 0.1em; }

.gtesti-panel {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    background: #fff; border-radius: 0 0 24px 24px;
    padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
    transition: opacity .35s ease;
}
.gtesti-panel .name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 2px; }
.gtesti-panel .role { font-size: 0.86rem; color: var(--text-dim); }
.gtesti-panel .stars { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.gtesti-panel .stars .star-row { display: flex; gap: 1px; color: var(--accent); }
.gtesti-panel .stars .num { font-weight: 700; color: var(--text); font-size: 0.95rem; }

.gtesti-content .eyebrow { color: var(--secondary); }
.gtesti-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: var(--text); margin-bottom: 10px; }
.gtesti-subhead { color: var(--text-dim); font-size: 1rem; margin-bottom: 22px; }
.gtesti-quote { color: var(--text-dim); font-size: 1.02rem; line-height: 1.65; max-width: 54ch; min-height: 88px; margin-bottom: 30px; transition: opacity .35s ease; }

.gtesti-avatars { display: flex; gap: 12px; }
.gtesti-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; color: #fff;
    border: 2px solid transparent; cursor: pointer;
    transition: border-color .2s ease, transform .2s ease;
}
.gtesti-avatar:hover { transform: translateY(-2px); }
.gtesti-avatar.active { border-color: var(--accent); }

/* ---------- Blog (vertical auto-rotating, 3-4 visible of 8) ---------- */
.blogsec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.blogsec-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text); margin-bottom: 10px; }
.blogsec-head p { color: var(--text-dim); max-width: 44ch; margin: 0; }
.blogsec-nav { display: flex; gap: 10px; flex-shrink: 0; }
.blogsec-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.blogsec-nav button:hover { border-color: var(--primary); color: var(--primary); }

.blogsec-viewport { overflow: hidden; }
.blogsec-grid {
    display: grid; gap: 22px;
    grid-template-columns: repeat(4, 1fr);
    transition: transform .45s ease, opacity .45s ease;
}
@media (max-width: 1100px) { .blogsec-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .blogsec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .blogsec-grid { grid-template-columns: 1fr; } }
.blogsec-grid.transitioning { transform: translateY(-18px); opacity: 0; }

.blogsec-card { position: relative; aspect-ratio: 3 / 4.1; border-radius: 20px; overflow: hidden; display: block; box-shadow: var(--card-shadow); }
.blogsec-card .card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.blogsec-card .card-code { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 2.4rem; color: rgba(255,255,255,0.16); letter-spacing: 0.1em; }
.blogsec-card .fade-to-panel { position: absolute; left: 0; right: 0; bottom: 0; height: 62%; background: linear-gradient(180deg, rgba(13,23,48,0) 0%, rgba(13,23,48,0.55) 45%, rgba(13,23,48,0.94) 100%); }

.blogsec-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
    color: var(--on-accent);
    padding: 7px 14px; border-radius: 999px;
}

.blogsec-panel { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 18px 20px; }
.blogsec-date { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.blogsec-title { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: #fff; line-height: 1.3; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blogsec-readmore { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: #fff; }
.blogsec-readmore .circle { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: background .2s ease, border-color .2s ease; }
.blogsec-card:hover .blogsec-readmore .circle { background: var(--accent); border-color: var(--accent); }

.testimonial { background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); border-radius: var(--radius); padding: 26px; }
.testimonial p { font-family: var(--font-display); font-size: 1.08rem; font-style: italic; color: var(--text); margin-bottom: 16px; }
.testimonial .who { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim); }
.testimonial .who b { color: var(--secondary); font-family: var(--font-body); }

.blog-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line-soft); box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; }
.blog-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--surface-2), var(--bg-alt)); }
.blog-body { padding: 20px 22px 24px; }
.blog-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-body h3 { font-size: 1.08rem; margin: 8px 0 8px; }
.blog-body p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

/* ---------- Footer (dark, 3 sections) ---------- */
footer { background: #0D1730; color: #fff; padding-top: 64px; }

.foot-top-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.foot-brand-mark { display: flex; align-items: center; gap: 14px; }
.foot-brand-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.foot-brand-text .name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1.3; }
.foot-brand-text .tag { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.foot-social { display: flex; align-items: center; gap: 14px; }
.foot-social-label { font-weight: 600; font-size: 0.9rem; }
.foot-social-icons { display: flex; gap: 10px; }
.foot-social-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; color: #fff; transition: border-color .15s, background .15s; }
.foot-social-icons a:hover { border-color: transparent; }
.foot-social-icons a.ig:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.foot-social-icons a.fb:hover { background: #1877F2; }
.foot-social-icons a.yt:hover { background: #FF0000; }

.foot-columns { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 900px) { .foot-columns { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-columns { grid-template-columns: 1fr; } }

.foot-col h5 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.foot-contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.foot-contact-icon { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.foot-contact-item .label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.foot-contact-item .value { font-size: 0.92rem; color: #fff; }

.foot-col-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.foot-col-links a { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 14px; transition: color .15s; }
.foot-col-links a:hover { color: var(--accent); }

.foot-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.foot-newsletter-form { display: flex; flex-wrap: wrap; border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; margin-bottom: 14px; }
.foot-newsletter-form input[type="tel"] { flex: 1; min-width: 0; }
.foot-newsletter-form .foot-checkbox { flex-basis: 100%; margin: 0; padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.15); }
.foot-newsletter-form input { flex: 1; min-width: 0; background: transparent; border: none; padding: 12px 14px; color: #fff; font-family: var(--font-body); font-size: 0.9rem; }
.foot-newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.foot-newsletter-form button { background: var(--accent); border: none; width: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; }
.foot-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.foot-checkbox input { margin-top: 3px; }

.foot-dest-section { padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.foot-dest-group + .foot-dest-group { margin-top: 34px; }
.foot-dest-heading { font-size: 1.1rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 20px; }
.foot-dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 30px; }
@media (max-width: 900px) { .foot-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .foot-dest-grid { grid-template-columns: 1fr; } }
.foot-dest-grid a { font-size: 0.92rem; color: rgba(255,255,255,0.85); transition: color .15s; }
.foot-dest-grid a:hover { color: var(--accent); }

.foot-bottom-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; flex-wrap: wrap; }
.foot-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.foot-copyright strong { color: #fff; }
.foot-payments { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.foot-payment-icon { width: 46px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.01em; color: #fff; }
/* ---------- Deals enquiry modal (popup version of the trip enquiry form) ---------- */
.deal-modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(13,23,48,0.55); backdrop-filter: blur(3px); display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; }
.deal-modal-overlay.open { display: flex; }
.deal-modal { background: var(--surface); border-radius: 22px; max-width: 480px; width: 100%; padding: 32px; position: relative; box-shadow: 0 20px 60px rgba(13,23,48,0.35); }
@media (max-width: 560px) { .deal-modal { padding: 24px 20px; } }
.deal-modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text-dim); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, color .15s; }
.deal-modal-close:hover { border-color: var(--primary); color: var(--primary); }
.deal-modal .sel-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 4px; }
.deal-modal .sel-name { font-weight: 700; font-size: 1.2rem; color: var(--text); margin-bottom: 20px; padding-right: 40px; }

/* Reuses .pd-form-row / .pd-form-group / .pd-pax-row / .pd-pax-group / .pd-pax-stepper / .pd-form-msg
   styling from the detail-page enquiry forms — same visual language, no duplicate rules needed. */
.deal-modal .pd-form-group input,
.deal-modal .pd-form-group textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 10px;
    padding: 12px 14px; font-family: var(--font-body); font-size: 0.92rem;
    color: var(--text); background: var(--bg);
}
.deal-modal .pd-form-group input:focus, .deal-modal .pd-form-group textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }
.deal-modal .pd-form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.deal-modal .pd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.deal-modal .pd-pax-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.deal-modal .pd-pax-group { border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.deal-modal .pax-label { font-size: 0.66rem; color: var(--text-dim); margin-bottom: 8px; }
.deal-modal .pd-pax-stepper { display: flex; align-items: center; justify-content: space-between; }
.deal-modal .pd-pax-stepper button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.deal-modal .pd-pax-stepper span { font-weight: 700; font-size: 0.92rem; }
.deal-modal .pd-form-group textarea { min-height: 70px; resize: vertical; }
.deal-modal .pd-form-msg { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 0.85rem; display: none; }
.deal-modal .pd-form-msg.show { display: block; }
.deal-modal .pd-form-msg.ok { background: rgba(139,194,65,0.14); color: #4a6a1e; border: 1px solid rgba(139,194,65,0.35); }

/* ---------- Custom date picker (DD/MM/YYYY display, ISO value underneath) ---------- */
.pd-date-field { position: relative; }
.pd-date-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-dim); pointer-events: none; z-index: 1; }
.pd-date-input { padding-left: 40px !important; cursor: pointer; background: var(--surface); }
.pd-date-popover {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
    width: 272px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
    box-shadow: 0 16px 40px rgba(13,23,48,0.2); padding: 16px;
    display: none;
}
.pd-date-popover.open { display: block; }
.pd-date-popover-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pd-date-popover-head button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .15s, color .15s; }
.pd-date-popover-head button:hover { border-color: var(--primary); color: var(--primary); }
.pd-date-month-label { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.pd-date-dow-row { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.pd-date-dow-row span { text-align: center; font-family: var(--font-mono); font-size: 0.64rem; color: var(--text-dim); padding: 4px 0; }
.pd-date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.pd-date-grid button { aspect-ratio: 1; border: none; background: transparent; border-radius: 8px; font-size: 0.8rem; color: var(--text); cursor: pointer; transition: background .15s, color .15s; }
.pd-date-grid button:hover:not(:disabled) { background: rgba(36,168,224,0.12); }
.pd-date-grid button.selected { background: var(--primary); color: #fff; }
.pd-date-grid button.today:not(.selected) { box-shadow: inset 0 0 0 1px var(--primary); }
.pd-date-grid button:disabled { opacity: 0.25; cursor: default; }
.pd-date-grid .pd-date-empty { visibility: hidden; }
.pd-date-row .pd-form-group:nth-child(2) .pd-date-popover { left: auto; right: 0; }

.deal-modal .pd-form-row .pd-form-group:nth-child(2) .pd-date-popover { left: auto; right: 0; }
