:root {
    --ink: #173f45;
    --ink-deep: #102f33;
    --sea: #1aa6b7;
    --sea-soft: #dff6f7;
    --coral: #ed6a5a;
    --sun: #f7b32b;
    --leaf: #3c7a57;
    --paper: #fffdf8;
    --white: #fff;
    --muted: #637477;
    --line: rgba(23, 63, 69, .16);
    --shadow: 0 14px 34px rgba(16, 47, 51, .13);
}

* { box-sizing: border-box; }
.hidden { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink-deep);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.7;
    letter-spacing: 0;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

.public-shell { min-height: 100vh; }
.public-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255,255,255,.24);
    background: rgba(255,253,248,.94);
    backdrop-filter: blur(14px);
}
.nav-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.public-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.public-brand img { width: 42px; height: 42px; object-fit: contain; }
.public-brand span { font-size: 21px; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 10px; border-radius: 6px; font-size: 14px; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--sea-soft); color: var(--ink); }
.nav-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font-size: 22px;
}
.language-switch { min-height: 38px; border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; background: var(--white); color: var(--ink); cursor: pointer; font-weight: 800; }

.hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ink);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,36,40,.88) 0%, rgba(10,36,40,.58) 38%, rgba(10,36,40,.08) 72%);
}
.hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0 110px;
    color: var(--white);
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; font-weight: 800; color: #ffe6a3; }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(44px, 7vw, 86px); line-height: 1.05; }
.hero p { max-width: 570px; margin: 22px 0 0; font-size: clamp(18px, 2.2vw, 24px); }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.primary-action, .secondary-action, .text-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 800;
}
.primary-action { background: var(--sun); color: #2f2a17; }
.primary-action:hover { background: #ffd15f; }
.secondary-action { background: var(--white); border-color: var(--line); color: var(--ink); }
.secondary-action:hover { background: var(--sea-soft); }
.text-action { min-height: 38px; padding: 6px 8px; color: var(--sea); background: transparent; }

.page-hero {
    padding: 72px 0 64px;
    background: linear-gradient(135deg, var(--sea-soft), #fff2d4 58%, #fbe4e0);
}
.page-hero h1 { margin: 0; max-width: 780px; font-size: clamp(38px, 6vw, 68px); line-height: 1.12; color: var(--ink); }
.page-hero p { max-width: 700px; margin: 14px 0 0; font-size: 19px; color: #38585c; }
.section { padding: 68px 0; }
.section.alt { background: #f1f8f7; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-heading h2 { margin: 0; font-size: clamp(29px, 4vw, 45px); line-height: 1.15; }
.section-heading p { max-width: 560px; margin: 8px 0 0; color: var(--muted); }

.trip-grid, .testimonial-grid, .team-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.trip-card, .testimonial-card, .team-card, .value-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(16,47,51,.08);
    overflow: hidden;
}
.trip-card { display: flex; flex-direction: column; }
.trip-card-media { position: relative; aspect-ratio: 16 / 10; background: #d9efef; overflow: hidden; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; }
.trip-badge { position: absolute; top: 12px; right: 12px; padding: 5px 9px; border-radius: 6px; background: var(--sun); color: #332d19; font-size: 12px; font-weight: 900; }
.availability { display: inline-flex; width: fit-content; padding: 4px 8px; border-radius: 6px; font-size: 12px; font-weight: 900; }
.availability.available { background: #dff4e7; color: #23613c; }
.availability.almost_full { background: #fff0c7; color: #795400; }
.availability.full { background: #fde2df; color: #8b3329; }
.trip-card-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.trip-card h3 { margin: 10px 0 4px; font-size: 23px; line-height: 1.25; }
.trip-card p { margin: 8px 0; color: var(--muted); }
.trip-meta { display: flex; flex-wrap: wrap; gap: 7px 14px; color: #446064; font-size: 14px; }
.trip-price { margin-top: auto; padding-top: 12px; color: var(--coral); font-size: 20px; font-weight: 900; }
.trip-card-actions { display: flex; align-items: center; gap: 8px; margin-top: 14px; }

.family-band { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.family-band .container { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 460px; }
.family-copy { align-self: center; padding: 58px 46px 58px 0; }
.family-copy h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.12; }
.family-copy p { font-size: 18px; color: #d7eaeb; }
.family-image { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }

.testimonial-card { padding: 20px; border-top: 5px solid var(--coral); }
.stars { color: #e69b00; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 14px 0; font-size: 17px; }
.anonymous-label { color: var(--muted); font-size: 13px; font-weight: 800; }
.team-card { padding: 20px; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg, var(--sea), var(--sun)); border: 4px solid var(--sea-soft); }
.team-card h3 { margin: 14px 0 0; }
.team-role { color: var(--coral); font-weight: 900; }
.team-card p { color: var(--muted); }
.value-card { padding: 20px; border-bottom: 4px solid var(--sea); }
.value-number { font-size: 26px; font-weight: 900; color: var(--coral); }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 24px; align-items: start; }
.detail-main, .request-panel { border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.detail-main { overflow: hidden; }
.detail-main img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.detail-content { padding: 24px; }
.detail-content h1 { margin: 8px 0; font-size: clamp(32px, 5vw, 54px); line-height: 1.12; }
.public-list { margin: 18px 0 0; padding: 0 20px 0 0; }
.request-panel { position: sticky; top: 90px; padding: 20px; box-shadow: var(--shadow); }
.request-panel h2 { margin-top: 0; }

.public-form { display: grid; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: grid; gap: 5px; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field textarea, .field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #b9cbcd;
    border-radius: 6px;
    padding: 9px 11px;
    background: var(--white);
    color: var(--ink-deep);
}
.field textarea { min-height: 100px; resize: vertical; }
.form-message { min-height: 24px; margin: 0; font-weight: 800; }
.form-message.success { color: var(--leaf); }
.form-message.error { color: #a1372d; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-page { max-width: 920px; }
.wide-form { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.activity-picker { margin: 0; border: 1px solid var(--line); border-radius: 6px; padding: 12px; }
.activity-picker legend { padding: 0 6px; font-weight: 800; }
.activity-option { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; cursor: pointer; }
.activity-option input { width: 18px; height: 18px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 12px; }
.toggle-field { display: flex; align-items: center; gap: 9px; min-height: 44px; font-weight: 800; }
.trip-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.trip-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.maintenance-state { min-height: 60vh; display: grid; place-items: center; padding: 32px; font-size: 20px; font-weight: 800; text-align: center; }

.rating-group { display: flex; flex-wrap: wrap; gap: 8px; }
.rating-option input { position: absolute; opacity: 0; pointer-events: none; }
.rating-option label { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); cursor: pointer; font-weight: 900; }
.rating-option input:checked + label { background: var(--sun); border-color: #d58e00; }

.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--white); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 12px; border: 0; background: transparent; padding: 15px 16px; color: var(--ink); text-align: right; cursor: pointer; font-weight: 900; }
.faq-answer { display: none; padding: 0 16px 16px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.empty-state { padding: 30px; border: 1px dashed var(--line); border-radius: 8px; background: var(--white); color: var(--muted); text-align: center; }
.loading-state { color: var(--muted); }
.whatsapp-float { position: fixed; left: 18px; bottom: 18px; z-index: 40; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #21b75b; color: white; box-shadow: var(--shadow); font-size: 25px; font-weight: 900; }

.public-footer { padding: 42px 0 24px; background: #102f33; color: #d9eaeb; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.public-footer h3 { color: white; }
.footer-links { display: grid; gap: 7px; }
.footer-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); color: #a9c4c6; font-size: 13px; }

@media (max-width: 900px) {
    .nav-menu-button { display: inline-grid; place-items: center; }
    .nav-links { position: absolute; top: 68px; right: 16px; left: 16px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
    .nav-links.open { display: grid; }
    .trip-grid, .testimonial-grid, .team-grid, .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .family-band .container, .detail-layout { grid-template-columns: 1fr; }
    .family-copy { padding: 50px 0 28px; }
    .family-image { min-height: 320px; }
    .request-panel { position: static; }
}

@media (max-width: 620px) {
    .contact-channel-grid { grid-template-columns: 1fr; }
    .hero { min-height: 670px; align-items: end; }
    .hero::after { background: linear-gradient(0deg, rgba(10,36,40,.92), rgba(10,36,40,.2) 82%); }
    .hero-content { padding: 240px 0 64px; }
    .hero h1 { font-size: 46px; }
    .trip-grid, .testimonial-grid, .team-grid, .values-grid, .footer-grid, .form-row, .checkbox-grid, .trip-gallery { grid-template-columns: 1fr; }
    .section { padding: 48px 0; }
    .section-heading { align-items: start; flex-direction: column; }
    .trip-card-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}

/* Tourism editorial refresh */
:root {
    --ink: #20201e;
    --ink-deep: #11110f;
    --sea: #147d78;
    --sea-bright: #21a69f;
    --sea-soft: #e4f3f0;
    --coral: #e35d43;
    --sun: #f0bd4f;
    --leaf: #377457;
    --paper: #f5f4ef;
    --white: #ffffff;
    --muted: #666861;
    --line: rgba(32, 32, 30, .15);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --ink: #f4f1e8;
    --ink-deep: #ffffff;
    --sea: #68c7bf;
    --sea-bright: #8adbd4;
    --sea-soft: #183c39;
    --coral: #ff8268;
    --sun: #f3c967;
    --leaf: #7fcca0;
    --paper: #121311;
    --white: #1c1e1b;
    --muted: #b8bbb2;
    --line: rgba(255, 255, 255, .14);
    --shadow: 0 18px 48px rgba(0, 0, 0, .34);
    --shadow-lift: 0 24px 60px rgba(0, 0, 0, .48);
}

.nav-controls { display: inline-flex; align-items: center; gap: 7px; }
.theme-switch {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}
.theme-switch:hover { color: var(--coral); border-color: currentColor; }

.hero { min-height: min(84vh, 780px); }
.hero::after { background: linear-gradient(90deg, rgba(10,10,9,.9), rgba(10,10,9,.48) 52%, rgba(10,10,9,.08)); }
html[dir="rtl"] .hero::after { background: linear-gradient(270deg, rgba(10,10,9,.9), rgba(10,10,9,.48) 52%, rgba(10,10,9,.08)); }
.hero-content { padding-bottom: 150px; }
.hero h1 { max-width: 760px; font-size: clamp(46px, 7vw, 88px); }
.hero-trip-finder {
    position: absolute;
    z-index: 3;
    right: 50%;
    bottom: 28px;
    width: min(1120px, calc(100% - 32px));
    transform: translateX(50%);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    backdrop-filter: blur(14px);
}
.hero-trip-finder label { display: grid; gap: 2px; color: #565851; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-trip-finder select { width: 100%; min-height: 43px; border: 0; border-bottom: 1px solid rgba(32,32,30,.22); background: transparent; color: #171715; font-weight: 800; }
.hero-trip-finder .primary-action { align-self: end; min-width: 160px; }

.trip-card { position: relative; background: var(--white); }
.trip-card:nth-child(3n+2) { transform: translateY(18px) rotate(.35deg); }
.trip-card:nth-child(3n+3) { transform: rotate(-.35deg); }
.trip-card:nth-child(3n+2):hover, .trip-card:nth-child(3n+3):hover { transform: translateY(-7px) rotate(0); }
.trip-card-actions { margin-top: 18px; }
.trip-card-actions .primary-action, .trip-card-actions .secondary-action { flex: 1; }

.team-card { overflow: visible; }
.team-card:nth-child(even) { transform: translateY(16px) rotate(.4deg); }
.team-card:nth-child(even):hover { transform: translateY(-7px) rotate(0); }
.team-avatar { width: 100%; height: auto; aspect-ratio: 4 / 3; border: 0; border-radius: 6px; object-fit: cover; }

html[data-theme="dark"] body,
html[data-theme="dark"] .section.alt { background: var(--paper); }
html[data-theme="dark"] .public-nav,
html[data-theme="dark"] .public-nav.is-scrolled { background: rgba(18,19,17,.94); border-color: var(--line); }
html[data-theme="dark"] .nav-links,
html[data-theme="dark"] .language-switch,
html[data-theme="dark"] .theme-switch,
html[data-theme="dark"] .secondary-action,
html[data-theme="dark"] .public-date-select,
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .field select { background: var(--white); color: var(--ink); }
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .trip-card h3,
html[data-theme="dark"] .detail-content h1 { color: var(--ink-deep); }
html[data-theme="dark"] .request-date-summary { background: #302916; }
html[data-theme="dark"] .page-hero { background: #0a0b09; }

@media (max-width: 760px) {
    .hero { min-height: 820px; }
    .hero-content { padding-bottom: 240px; }
    .hero-trip-finder { grid-template-columns: 1fr; bottom: 24px; }
    .hero-trip-finder .primary-action { width: 100%; }
    .trip-card:nth-child(n), .team-card:nth-child(n) { transform: none; }
}

/* 2026 public experience */
:root {
    --ink: #123f43;
    --ink-deep: #092f32;
    --sea: #087f89;
    --sea-bright: #16a6ad;
    --sea-soft: #dff4f2;
    --coral: #ef654f;
    --sun: #f3b63f;
    --leaf: #377457;
    --paper: #f7faf8;
    --white: #ffffff;
    --muted: #5d6f70;
    --line: rgba(18, 63, 67, .14);
    --shadow: 0 18px 48px rgba(9, 47, 50, .14);
    --shadow-lift: 0 24px 60px rgba(9, 47, 50, .18);
}

body {
    background: var(--paper);
    font-family: "Avenir Next", "Segoe UI", Arial, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

html[dir="rtl"] body {
    font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
}

h1, h2, h3, .public-brand, .trip-price {
    font-family: "Avenir Next", "Gill Sans", "Segoe UI", Arial, Tahoma, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .public-brand,
html[dir="rtl"] .trip-price {
    font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.public-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-nav {
    position: fixed;
    inset: 0 0 auto;
    height: 76px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: rgba(247, 250, 248, .92);
    box-shadow: 0 1px 0 rgba(9, 47, 50, .03);
    backdrop-filter: blur(18px) saturate(140%);
    transition: height .28s ease, box-shadow .28s ease, background .28s ease;
}

.public-nav.is-scrolled {
    height: 62px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 32px rgba(9, 47, 50, .11);
}

.scroll-progress {
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    transition: transform .08s linear;
}

html[dir="rtl"] .scroll-progress { transform-origin: right center; }

.nav-inner {
    min-height: 100%;
    height: 100%;
}

.public-brand { gap: 11px; }
.public-brand img { width: 42px; height: 42px; transition: width .28s ease, height .28s ease, transform .28s ease; }
.public-brand:hover img { transform: rotate(-4deg) scale(1.04); }
.public-nav.is-scrolled .public-brand img { width: 36px; height: 36px; }
.public-brand span { font-size: 20px; color: var(--ink-deep); }

.nav-links { gap: 2px; }
.nav-links a {
    position: relative;
    border-radius: 6px;
    padding: 8px 11px;
    color: #264e51;
    font-size: 13px;
    font-weight: 750;
    transition: color .2s ease, background .2s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 2px;
    left: 11px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .22s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { background: transparent; color: var(--ink-deep); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.language-switch,
.nav-menu-button {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255,255,255,.74);
    color: var(--ink);
    box-shadow: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 6px 10px;
}
.language-switch .public-icon { width: 16px; height: 16px; }
.language-switch:hover,
.nav-menu-button:hover { border-color: rgba(8,127,137,.5); background: var(--sea-soft); transform: translateY(-1px); }

.hero {
    min-height: min(80vh, 700px);
    padding-top: 76px;
    background: var(--ink-deep);
}
.hero-media {
    transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.04);
    transform-origin: center;
    filter: saturate(.9) contrast(1.04);
    will-change: transform;
}
.hero::after { background: rgba(6, 32, 35, .58); }
.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--sea-bright) 0 34%, var(--sun) 34% 66%, var(--coral) 66%);
}
.hero-content { padding: 56px 0 86px; }
.hero-content > * { animation: heroEnter .75s both cubic-bezier(.2,.7,.2,1); }
.hero-content > :nth-child(2) { animation-delay: .09s; }
.hero-content > :nth-child(3) { animation-delay: .18s; }
.hero-content > :nth-child(4) { animation-delay: .27s; }
.hero h1 {
    max-width: 720px;
    font-size: clamp(46px, 5.3vw, 72px);
    line-height: .98;
    text-wrap: balance;
}
.hero p { max-width: 620px; color: rgba(255,255,255,.88); }
.hero .eyebrow { color: #ffd977; }
.hero-scroll-cue {
    position: absolute;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-scroll-cue span {
    width: 2px;
    height: 32px;
    overflow: hidden;
    background: rgba(255,255,255,.3);
}
.hero-scroll-cue span::after {
    content: "";
    display: block;
    width: 100%;
    height: 45%;
    background: var(--sun);
    animation: scrollCue 1.8s infinite ease-in-out;
}

.eyebrow {
    color: var(--coral);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

.primary-action,
.secondary-action,
.text-action {
    min-height: 44px;
    border-radius: 7px;
    padding: 10px 16px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.primary-action { background: var(--coral); color: #fff; box-shadow: 0 12px 26px rgba(239,101,79,.24); }
.primary-action:hover { background: #d9503c; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(239,101,79,.3); }
.secondary-action { border-color: rgba(18,63,67,.18); background: #fff; color: var(--ink); }
.secondary-action:hover { border-color: rgba(8,127,137,.42); background: var(--sea-soft); transform: translateY(-2px); }
.text-action { padding-inline: 0; color: var(--sea); }
.text-action:hover { color: var(--coral); transform: translateX(3px); }
html[dir="rtl"] .text-action:hover { transform: translateX(-3px); }
.action-arrow { width: 17px; height: 17px; transition: transform .2s ease; }
a:hover > .action-arrow { transform: translateX(3px); }
html[dir="rtl"] .action-arrow { transform: scaleX(-1); }
html[dir="rtl"] a:hover > .action-arrow { transform: scaleX(-1) translateX(3px); }

.page-hero {
    position: relative;
    margin-top: 76px;
    padding: 82px 0 74px;
    overflow: hidden;
    background: var(--ink-deep);
    color: #fff;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    height: 5px;
    background: var(--coral);
}
.page-hero h1 { color: #fff; text-wrap: balance; }
.page-hero p { color: #cce1df; }
.page-hero .eyebrow { color: #ffd977; }

main.section { padding-top: 128px; }
.section { padding: 82px 0; }
.section.alt { background: #eaf4f1; }
.section-heading { margin-bottom: 32px; }
.section-heading h2 { color: var(--ink-deep); font-size: clamp(32px, 4.2vw, 50px); text-wrap: balance; }
.section-heading p { color: var(--muted); }

.trip-grid, .testimonial-grid, .team-grid, .values-grid { gap: 20px; }
.trip-card, .testimonial-card, .team-card, .value-card {
    border-color: rgba(18,63,67,.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(9,47,50,.07);
    transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
    animation: cardEnter .55s both cubic-bezier(.2,.7,.2,1);
}
.trip-grid > :nth-child(2), .testimonial-grid > :nth-child(2), .team-grid > :nth-child(2) { animation-delay: .08s; }
.trip-grid > :nth-child(3), .testimonial-grid > :nth-child(3), .team-grid > :nth-child(3) { animation-delay: .16s; }
.trip-card:hover, .testimonial-card:hover, .team-card:hover, .value-card:hover {
    border-color: rgba(8,127,137,.34);
    box-shadow: var(--shadow-lift);
    transform: translateY(-7px);
}
.trip-card-media img { transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.trip-card:hover .trip-card-media img { transform: scale(1.055); filter: saturate(1.08); }
.trip-badge { top: 14px; right: 14px; border-radius: 5px; background: var(--sun); }
html[dir="rtl"] .trip-badge { right: auto; left: 14px; }
.availability { border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; }
html[dir="rtl"] .availability { letter-spacing: 0; }
.trip-card-body { padding: 20px; }
.trip-card h3 { color: var(--ink-deep); font-size: 25px; }
.trip-meta span { display: inline-flex; align-items: center; }
.trip-meta span + span::before { content: ""; width: 4px; height: 4px; margin-inline-end: 12px; border-radius: 50%; background: var(--sun); }
.trip-price { color: var(--coral); }

.trip-card-featured {
    width: min(100%, 820px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
    transform-style: preserve-3d;
}
.trip-grid:has(> .trip-card-featured) { grid-template-columns: minmax(0, 1fr); }
.trip-card-featured:hover { transform: perspective(1100px) rotateX(1.2deg) rotateY(-1.2deg) translateY(-7px); }
html[dir="rtl"] .trip-card-featured:hover { transform: perspective(1100px) rotateX(1.2deg) rotateY(1.2deg) translateY(-7px); }
.trip-card-featured .trip-card-media { aspect-ratio: auto; min-height: 390px; }
.date-chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 16px; }
.date-chip { padding: 6px 9px; border: 1px solid rgba(8,127,137,.24); border-radius: 5px; background: var(--sea-soft); color: var(--ink); font-size: 12px; font-weight: 800; }
.public-date-select { width: 100%; min-height: 46px; border: 1px solid rgba(18,63,67,.25); border-radius: 6px; padding: 9px 11px; background: #fff; color: var(--ink-deep); }
.primary-action.is-disabled { opacity: .48; pointer-events: none; box-shadow: none; }
.request-date-summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px; border-left: 4px solid var(--sun); border-radius: 6px; background: #fff8e7; }
html[dir="rtl"] .request-date-summary { border-left: 0; border-right: 4px solid var(--sun); }
.field-hint { margin: 0; color: var(--muted); font-size: 13px; }

.moments-band { padding: 76px 0 88px; overflow: hidden; background: #0b3336; color: #fff; }
.moments-band h2 { color: #fff; }
.moments-band .section-heading p { color: #c8dcda; }
.moments-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; align-items: center; }
.moment-tile { margin: 0; overflow: hidden; border-radius: 7px; box-shadow: 0 18px 40px rgba(0,0,0,.22); transition: transform .3s ease; }
.moment-tile:nth-child(4n+1) { grid-column: span 4; transform: rotate(-2deg); }
.moment-tile:nth-child(4n+2) { grid-column: span 5; transform: translateY(18px) rotate(1.5deg); }
.moment-tile:nth-child(4n+3) { grid-column: span 3; transform: rotate(2deg); }
.moment-tile:nth-child(4n) { grid-column: span 6; transform: translateY(-8px) rotate(-1deg); }
.moment-tile:hover { transform: translateY(-8px) rotate(0) scale(1.02); }
.moment-tile img,
.moment-tile video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

.contact-channels-band { padding: 0 0 76px; background: var(--paper); }
.contact-channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.contact-channel { min-height: 124px; display: flex; align-items: center; gap: 18px; padding: 24px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-top: 4px solid currentColor; border-radius: 8px; box-shadow: 0 16px 36px rgba(19, 34, 40, .08); transition: transform .24s ease, box-shadow .24s ease; }
.contact-channel:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(19, 34, 40, .14); }
.contact-channel.whatsapp { color: #168a45; }
.contact-channel.facebook { color: #1877f2; }
.contact-channel.gmail { color: #c8322c; }
.contact-channel img { width: 42px; height: 42px; flex: 0 0 42px; }
.contact-channel span { display: grid; gap: 6px; }
.contact-channel strong { color: var(--ink); font-size: 1.08rem; }
.contact-channel small { color: var(--muted); line-height: 1.5; overflow-wrap: anywhere; }

@media (max-width: 620px) {
    .contact-channel-grid { grid-template-columns: 1fr; }
    .contact-channel { min-height: 104px; padding: 20px; }
}

.family-band { background: var(--ink-deep); }
.family-band .container { min-height: 500px; }
.family-copy { padding-block: 66px; }
.family-copy h2 { text-wrap: balance; }
.family-image { filter: saturate(.92); }

.testimonial-card { position: relative; padding: 24px; border-top: 1px solid var(--line); }
.testimonial-card::before { content: "\201C"; position: absolute; top: 8px; right: 18px; color: var(--sea-soft); font-family: Georgia, serif; font-size: 72px; line-height: 1; }
html[dir="rtl"] .testimonial-card::before { right: auto; left: 18px; }
.testimonial-card blockquote { position: relative; }
.team-card { padding: 22px; }
.team-avatar { width: 78px; height: 78px; border: 3px solid var(--sea-soft); }
.value-card { border-bottom-color: var(--coral); }

.detail-main, .request-panel, .wide-form, .faq-item {
    border-radius: 8px;
    border-color: rgba(18,63,67,.13);
}
.request-panel { top: 84px; box-shadow: var(--shadow); }
.field input, .field textarea, .field select {
    border-radius: 6px;
    border-color: rgba(18,63,67,.26);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--sea);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8,127,137,.13);
}

.faq-question { min-height: 58px; text-align: start; }
.faq-item { transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: rgba(8,127,137,.35); box-shadow: 0 10px 26px rgba(9,47,50,.08); }

.whatsapp-float {
    right: 22px;
    left: auto;
    bottom: 22px;
    width: 54px;
    height: 54px;
    background: #1fa855;
    box-shadow: 0 14px 34px rgba(31,168,85,.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 22px; }
body.has-scrolled .whatsapp-float { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03) !important; box-shadow: 0 18px 40px rgba(31,168,85,.4); }
.whatsapp-float .public-icon { width: 26px; height: 26px; }

.public-footer { padding-top: 54px; background: #092f32; }
.public-footer a { transition: color .18s ease; }
.public-footer a:hover { color: #ffd977; }
.social-link { display: inline-flex; align-items: center; gap: 8px; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroEnter {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cardEnter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCue {
    0% { transform: translateY(-110%); }
    50%, 100% { transform: translateY(230%); }
}

@media (max-width: 900px) {
    .public-nav, .public-nav.is-scrolled { height: 64px; }
    .nav-links {
        top: 64px;
        right: 16px;
        left: 16px;
        padding: 10px;
        border-radius: 8px;
        background: rgba(255,255,255,.98);
    }
    .nav-links a { min-height: 42px; display: flex; align-items: center; }
    .nav-links a::after { display: none; }
    .nav-links a[aria-current="page"] { background: var(--sea-soft); }
    .language-switch span { display: none; }
    .language-switch { width: 42px; justify-content: center; padding: 0; }
    .hero { padding-top: 64px; }
    .page-hero { margin-top: 64px; }
    main.section { padding-top: 104px; }
}

@media (max-width: 620px) {
    .public-brand span { font-size: 18px; }
    .hero { min-height: 780px; }
    .hero::after { background: rgba(6,32,35,.62); }
    .hero-content { padding: 130px 0 70px; }
    .hero h1 { font-size: clamp(43px, 13vw, 58px); line-height: 1.02; }
    .hero-scroll-cue { bottom: 19px; }
    .page-hero { padding: 62px 0 58px; }
    .section { padding: 58px 0; }
    .section-heading { gap: 14px; }
    .section-heading h2 { font-size: 34px; }
    .trip-card-actions { flex-direction: row; }
    .trip-card-actions > * { flex: 1; }
    .trip-card-featured { grid-template-columns: 1fr; }
    .trip-card-featured .trip-card-media { min-height: 250px; }
    .moments-grid { grid-template-columns: repeat(2, 1fr); }
    .moment-tile:nth-child(n) { grid-column: span 1; transform: none; }
    .family-band .container { min-height: auto; }
    .family-copy { padding: 56px 0 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > *, .trip-card, .testimonial-card, .team-card, .value-card { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .hero-media { transform: scale(1.04) !important; }
}

/* Final theme layer: keep after all legacy styles. */
:root {
    --ink: #20201e;
    --ink-deep: #11110f;
    --sea: #147d78;
    --sea-bright: #21a69f;
    --sea-soft: #e4f3f0;
    --coral: #e35d43;
    --sun: #f0bd4f;
    --paper: #f5f4ef;
    --white: #ffffff;
    --muted: #666861;
    --line: rgba(32,32,30,.15);
}
html[data-theme="dark"] {
    --ink: #f4f1e8;
    --ink-deep: #ffffff;
    --sea: #68c7bf;
    --sea-bright: #8adbd4;
    --sea-soft: #183c39;
    --coral: #ff8268;
    --sun: #f3c967;
    --paper: #121311;
    --white: #1c1e1b;
    --muted: #b8bbb2;
    --line: rgba(255,255,255,.14);
}
.nav-controls { display: inline-flex; align-items: center; gap: 7px; }
.theme-switch { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 6px; background: var(--white); color: var(--ink); cursor: pointer; }
.hero { min-height: min(84vh,780px); }
.hero::after { background: linear-gradient(90deg,rgba(10,10,9,.9),rgba(10,10,9,.48) 52%,rgba(10,10,9,.08)); }
html[dir="rtl"] .hero::after { background: linear-gradient(270deg,rgba(10,10,9,.9),rgba(10,10,9,.48) 52%,rgba(10,10,9,.08)); }
.hero-content { padding-bottom: 150px; color: #fff; }
.hero h1 { color: #fff; }
.hero-trip-finder { position: absolute; z-index: 3; right: 50%; bottom: 28px; width: min(1120px,calc(100% - 32px)); transform: translateX(50%); display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.38); border-radius: 8px; background: rgba(255,255,255,.94); box-shadow: 0 20px 50px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.hero-trip-finder label { display: grid; gap: 2px; color: #565851; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-trip-finder select { width: 100%; min-height: 43px; border: 0; border-bottom: 1px solid rgba(32,32,30,.22); background: transparent; color: #171715; font-weight: 800; }
.hero-trip-finder .primary-action { align-self: end; min-width: 160px; }
.trip-card-actions .primary-action,.trip-card-actions .secondary-action { flex: 1; }
.team-avatar { width: 100%; height: auto; aspect-ratio: 4/3; border: 0; border-radius: 6px; object-fit: cover; }
html[data-theme="dark"] body,html[data-theme="dark"] .section.alt { background: var(--paper); }
html[data-theme="dark"] .public-nav,html[data-theme="dark"] .public-nav.is-scrolled { background: rgba(18,19,17,.94); border-color: var(--line); }
html[data-theme="dark"] .nav-links,html[data-theme="dark"] .language-switch,html[data-theme="dark"] .theme-switch,html[data-theme="dark"] .secondary-action,html[data-theme="dark"] .public-date-select,html[data-theme="dark"] .field input,html[data-theme="dark"] .field textarea,html[data-theme="dark"] .field select { background: var(--white); color: var(--ink); }
html[data-theme="dark"] .section-heading h2,html[data-theme="dark"] .trip-card h3,html[data-theme="dark"] .detail-content h1 { color: var(--ink-deep); }
@media (max-width:760px) {
    .hero { min-height: 920px; align-items: start; }
    .hero-content { padding: 118px 0 330px; }
    .hero-trip-finder { grid-template-columns: 1fr; bottom: 24px; }
    .hero-trip-finder .primary-action { width: 100%; }
}

/* Public trip selector and grouped destination dates. */
.hero-trip-finder {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.28);
    border-bottom: 1px solid rgba(255,255,255,.28);
    border-radius: 0;
    padding: 12px 0;
    background: rgba(7,22,22,.66);
    box-shadow: none;
    color: #fff;
}
.hero-trip-finder label { color: rgba(255,255,255,.72); }
.hero-trip-finder select {
    min-height: 42px;
    border-bottom-color: rgba(255,255,255,.42);
    color: #fff;
}
.hero-trip-finder select option { background: #1b1c19; color: #fff; }
.hero-trip-finder .primary-action { background: var(--sun); color: #211e15; }
.date-chip {
    appearance: none;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.date-chip:hover { transform: translateY(-1px); border-color: var(--sea); }
.date-chip.is-selected { border-color: var(--sea); background: var(--sea); color: #fff; }
html[data-theme="dark"] .date-chip { background: #233634; color: #eef8f6; }
html[data-theme="dark"] .date-chip.is-selected { background: var(--sea); color: #111; }
@media (max-width:760px) {
    .hero { min-height: 760px; }
    .hero-content { padding: 108px 0 142px; }
    .hero-scroll-cue { display: none; }
    .hero-trip-finder {
        width: calc(100% - 24px);
        bottom: 18px;
        grid-template-columns: minmax(0,1fr) minmax(0,1fr) 46px;
        gap: 8px;
        padding: 8px 10px;
        border: 1px solid rgba(255,255,255,.24);
        border-radius: 7px;
    }
    .hero-trip-finder label > span { display: none; }
    .hero-trip-finder select { min-height: 46px; font-size: 13px; }
    .hero-trip-finder .primary-action {
        width: 46px;
        min-width: 46px;
        height: 46px;
        padding: 0;
        overflow: hidden;
        font-size: 0;
    }
    .hero-trip-finder .primary-action .public-icon { width: 21px; height: 21px; }
}
