/* ==========================================================================
   Şam Turizm — public site base
   Loaded on every front page via front::includes.style
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #F7F5EF;
    color: #0B1F3A;
}

::selection {
    background: #18B7B2;
    color: #FFFFFF;
}

/* Arabic gets Cairo; the font file itself is loaded in front::includes.font */
html[lang="ar"] body,
html[lang="ar"] .font-display {
    font-family: 'Cairo', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Mixed-script wraps from mixed-font.js — isolate bidi so punctuation stays with the word */
.mixed-font {
    unicode-bidi: isolate;
}

html:not([dir="rtl"]) .mixed-font-ar {
    font-family: 'Cairo', 'Inter', ui-sans-serif, system-ui, sans-serif;
    letter-spacing: normal;
}

html[dir="rtl"] .mixed-font-en {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

html[dir="rtl"] .font-display .mixed-font-en {
    font-family: 'Playfair Display', Georgia, serif;
}

/* --------------------------------------------------------------------------
   Scroll reveal — the `revealed` class is added by app.js
   -------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggering utilities, replacing per-element inline transition-delay */
.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .10s; }
.reveal-delay-3 { transition-delay: .14s; }
.reveal-delay-4 { transition-delay: .20s; }
.reveal-delay-5 { transition-delay: .22s; }
.reveal-delay-6 { transition-delay: .30s; }
.reveal-delay-7 { transition-delay: .38s; }

.line {
    width: 0;
    transition: width 1.1s cubic-bezier(.22, 1, .36, 1);
}

.line.revealed {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .line {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .line {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Sticky navigation — classes toggled by app.js on scroll
   -------------------------------------------------------------------------- */

.nav-blur {
    background: rgba(247, 245, 239, .82);
    backdrop-filter: blur(16px);
    border-color: rgba(11, 31, 58, .10);
    /* background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(11, 31, 58, .06); */
    box-shadow:
        0 1px 0 rgba(11, 31, 58, 0.06),
        0 12px 32px rgba(11, 31, 58, 0.12);
}

.nav-transparent {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color .2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    background: #18B7B2;
    transition: width .25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.nav-link:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 4px;
    border-radius: 2px;
}

.nav-blur .nav-link {
    color: #334155;
}

.nav-blur .nav-link:hover,
.nav-blur .nav-link:focus-visible {
    color: #18B7B2;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link,
    .nav-link::after {
        transition: none;
    }
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.nav-toggle:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 2px;
}

.nav-blur .nav-toggle,
#site-nav.is-nav-open .nav-toggle {
    border-color: rgba(11, 31, 58, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #0B1F3A;
}

.nav-toggle-bars {
    position: relative;
    display: block;
    width: 1.1rem;
    height: 0.85rem;
}

.nav-toggle-bars span {
    position: absolute;
    inset-inline: 0;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.nav-toggle-bars span:nth-child(1) {
    top: 0;
}

.nav-toggle-bars span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-bars span:nth-child(3) {
    top: auto;
    bottom: 0;
}

#site-nav.is-nav-open .nav-toggle-bars span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

#site-nav.is-nav-open .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

#site-nav.is-nav-open .nav-toggle-bars span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 100%);
    padding: 0.35rem 1.25rem 1.5rem;
    overflow-y: auto;
    background: #F7F5EF;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

#site-nav.is-nav-open {
    background: #F7F5EF;
    border-color: rgba(11, 31, 58, 0.10);
}

#site-nav.is-nav-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
    color: #0B1F3A;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    color: #18B7B2;
}

.mobile-nav-link:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 2px;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: #0B1F3A;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:focus-visible {
    background: #18B7B2;
}

.mobile-nav-cta:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
}

body.nav-locked {
    overflow: hidden;
}

body.nav-locked .whatsapp-float {
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .nav-toggle,
    .mobile-nav {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-toggle-bars span,
    .mobile-nav,
    .mobile-nav-link,
    .mobile-nav-cta {
        transition: none;
    }
}

.lang-switcher {
    position: relative;
}

.lang-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.lang-switcher-toggle::-webkit-details-marker,
.lang-switcher-toggle::marker {
    display: none;
    content: '';
}

.lang-switcher-toggle:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 2px;
}

.lang-switcher-flag {
    display: block;
    width: 1.25rem;
    height: 0.95rem;
    border-radius: 0.2rem;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(11, 31, 58, 0.12);
}

.lang-switcher-chevron {
    width: 0.7rem;
    height: 0.7rem;
    transition: transform .2s ease;
}

.lang-switcher[open] .lang-switcher-chevron {
    transform: rotate(180deg);
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    inset-inline-end: 0;
    z-index: 60;
    min-width: 11.5rem;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    border: 1px solid rgba(11, 31, 58, 0.10);
    border-radius: 1rem;
    background: #FFFFFF;
    box-shadow: 0 20px 70px rgba(11, 31, 58, 0.12);
}

.lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.75rem;
    color: #0B1F3A;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.lang-switcher-option:hover {
    background: #F7F5EF;
}

.lang-switcher-option.is-active {
    background: rgba(24, 183, 178, 0.12);
    color: #0B1F3A;
}

.lang-switcher-option-name {
    flex: 1;
}

.nav-blur .lang-switcher-toggle {
    border-color: rgba(11, 31, 58, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #0B1F3A;
}

/* --------------------------------------------------------------------------
   Currency switcher — mirrors the language switcher so the header reads as one unit
   -------------------------------------------------------------------------- */

.currency-switcher {
    position: relative;
}

.currency-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.currency-switcher-toggle::-webkit-details-marker,
.currency-switcher-toggle::marker {
    display: none;
    content: '';
}

.currency-switcher-toggle:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 2px;
}

.currency-switcher-code {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.currency-switcher-chevron {
    width: 0.7rem;
    height: 0.7rem;
    transition: transform .2s ease;
}

.currency-switcher[open] .currency-switcher-chevron {
    transform: rotate(180deg);
}

.currency-switcher-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    inset-inline-end: 0;
    z-index: 60;
    min-width: 12.5rem;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    border: 1px solid rgba(11, 31, 58, 0.10);
    border-radius: 1rem;
    background: #FFFFFF;
    box-shadow: 0 20px 70px rgba(11, 31, 58, 0.12);
}

.currency-switcher-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 0;
    border-radius: 0.75rem;
    background: transparent;
    color: #0B1F3A;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: start;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.currency-switcher-option:hover {
    background: #F7F5EF;
}

.currency-switcher-option.is-active {
    background: rgba(24, 183, 178, 0.12);
}

.currency-switcher-option-code {
    min-width: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.currency-switcher-option-name {
    flex: 1;
    color: rgba(11, 31, 58, 0.7);
}

.nav-blur .currency-switcher-toggle {
    border-color: rgba(11, 31, 58, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #0B1F3A;
}

/* --------------------------------------------------------------------------
   Site footer — loaded on every public page
   -------------------------------------------------------------------------- */

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #08111d;
    color: #ffffff;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(24, 183, 178, 0.9) 50%, transparent 100%);
}

.footer-glow {
    position: absolute;
    top: -18rem;
    inset-inline-end: -10rem;
    z-index: 0;
    width: 42rem;
    height: 42rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(24, 183, 178, 0.2) 0%, transparent 68%);
    pointer-events: none;
}

.footer-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 78%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 78%, transparent);
    opacity: 0.55;
}

.footer-orb {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    pointer-events: none;
}

.footer-orb-start {
    bottom: -8rem;
    inset-inline-start: -6rem;
    width: 22rem;
    height: 22rem;
}

.footer-orb-end {
    top: 7rem;
    inset-inline-end: -5rem;
    width: 16rem;
    height: 16rem;
}

.footer-shell {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.25rem 2rem;
}

.footer-main {
    display: grid;
    gap: 3rem;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.footer-mark {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.footer-brand-copy {
    display: block;
    line-height: 1;
}

.footer-brand-primary {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.footer-brand-secondary {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.footer-tagline {
    max-width: 22rem;
    margin: 1.35rem 0 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav-contact {
    min-width: 0;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: color .2s ease;
}

.footer-contact-row:hover .footer-contact-value,
.footer-contact-row:focus-visible .footer-contact-value {
    color: #ffffff;
}

.footer-contact-row:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 4px;
    border-radius: 2px;
}

.footer-contact-row-static {
    cursor: default;
}

.footer-icon-tile {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    color: #18B7B2;
    font-size: 0.8rem;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.footer-contact-row:hover .footer-icon-tile,
.footer-contact-row:focus-visible .footer-icon-tile {
    background: #18B7B2;
    border-color: #18B7B2;
    color: #0B1F3A;
}

.footer-contact-row-static:hover .footer-icon-tile,
.footer-contact-row-static:focus-visible .footer-icon-tile {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: #18B7B2;
}

.footer-contact-meta {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.1rem;
}

.footer-contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.footer-contact-value {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    overflow-wrap: anywhere;
    unicode-bidi: isolate;
}

.footer-social-block {
    margin-top: 1.5rem;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.15rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #18B7B2;
}

.footer-heading::before {
    content: '';
    width: 0.4rem;
    height: 0.4rem;
    flex-shrink: 0;
    background: #18B7B2;
    transform: rotate(45deg);
}

.footer-navs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem 1.5rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.925rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: -0.15rem;
    width: 0;
    height: 1px;
    background: #18B7B2;
    transition: width .25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #ffffff;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
    width: 100%;
}

.footer-link:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 4px;
    border-radius: 2px;
}

.footer-social {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
    background: #18B7B2;
    border-color: #18B7B2;
    color: #0B1F3A;
    transform: translateY(-2px);
}

.footer-social:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
}

.footer-subscribe {
    display: grid;
    gap: 1.5rem;
    margin-top: 3.25rem;
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    background:
        linear-gradient(135deg, rgba(24, 183, 178, 0.14) 0%, rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.footer-subscribe-copy {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.footer-subscribe-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 0.9rem;
    background: #18B7B2;
    color: #0B1F3A;
    font-size: 1rem;
}

.footer-subscribe-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #18B7B2;
}

.footer-subscribe-title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: #ffffff;
}

.footer-subscribe-text {
    max-width: 28rem;
    margin: 0.45rem 0 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.52);
}

.footer-subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    min-width: 0;
}

.footer-subscribe-input {
    flex: 1 1 12rem;
    min-width: 0;
    height: 3.15rem;
    padding: 0 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 17, 29, 0.45);
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.footer-subscribe-input:focus,
.footer-subscribe-input:focus-visible {
    outline: none;
    border-color: #18B7B2;
    box-shadow: 0 0 0 4px rgba(24, 183, 178, 0.16);
}

.footer-subscribe-input:disabled {
    opacity: 0.7;
}

.footer-subscribe-submit {
    flex-shrink: 0;
    height: 3.15rem;
    padding: 0 1.45rem;
    border: 0;
    border-radius: 999px;
    background: #18B7B2;
    color: #0B1F3A;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-subscribe-submit:hover,
.footer-subscribe-submit:focus-visible {
    background: #ffffff;
    transform: translateY(-1px);
}

.footer-subscribe-submit:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
}

.footer-subscribe-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1.15rem;
}

.footer-cookies {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    cursor: pointer;
    transition: color .2s ease;
}

.footer-cookies:hover,
.footer-cookies:focus-visible {
    color: #18B7B2;
}

.footer-cookies:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
    border-radius: 0.25rem;
}

.footer-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-inline-start: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s ease;
}

.footer-back-to-top-icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #18B7B2;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.footer-back-to-top-icon svg {
    display: block;
    width: 1rem;
    height: 1rem;
}

.footer-back-to-top:hover,
.footer-back-to-top:focus-visible {
    color: #ffffff;
}

.footer-back-to-top:hover .footer-back-to-top-icon,
.footer-back-to-top:focus-visible .footer-back-to-top-icon {
    background: #18B7B2;
    border-color: #18B7B2;
    color: #0B1F3A;
    transform: translateY(-2px);
}

.footer-back-to-top:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
    border-radius: 999px;
}

@media (min-width: 640px) {
    .footer-shell {
        padding-inline: 2rem;
    }

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

@media (min-width: 1024px) {
    .footer-shell {
        padding: 5rem 2rem 2.25rem;
    }

    .footer-main {
        grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 2.15fr);
        gap: 4rem 3rem;
        align-items: start;
    }

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

    .footer-subscribe {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
        align-items: center;
        gap: 2rem;
        padding: 1.75rem 1.85rem;
    }
}

html[lang="ar"] .footer-brand-primary,
html[lang="ar"] .footer-brand-secondary,
html[lang="ar"] .footer-heading,
html[lang="ar"] .footer-contact-label,
html[lang="ar"] .footer-subscribe-eyebrow,
html[lang="ar"] .footer-back-to-top {
    letter-spacing: 0;
    text-transform: none;
}

html[lang="ar"] .footer-subscribe-title {
    font-family: 'Cairo', 'Inter', ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

.whatsapp-float {
    position: fixed;
    z-index: 190;
    inset-inline-end: 1.25rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    font-size: 1.85rem;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.38);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, bottom .25s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: #25D366;
    animation: whatsapp-pulse 2s ease-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.48);
}

.whatsapp-float:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.site-toast {
    position: fixed;
    z-index: 200;
    left: 50%;
    bottom: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    max-width: calc(100% - 2.5rem);
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: #18B7B2;
    color: #0B1F3A;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 20px 70px rgba(11, 31, 58, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(0.75rem);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.site-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.site-toast.is-error {
    background: #F4E8E4;
    color: #0B1F3A;
}

.site-toast-icon {
    display: grid;
    place-items: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: #0B1F3A;
    color: #FFFFFF;
    font-size: 0.7rem;
}

.site-toast.is-error .site-toast-icon {
    background: #C45C5C;
}

/* --------------------------------------------------------------------------
   Cookie consent bar
   -------------------------------------------------------------------------- */

.cookie-consent {
    position: fixed;
    z-index: 185;
    inset-inline: 0;
    bottom: 0;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(24, 183, 178, 0.28);
    background: #0B1F3A;
    color: #ffffff;
    box-shadow: 0 -18px 50px rgba(11, 31, 58, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-consent-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 72rem;
    margin-inline: auto;
}

.cookie-consent-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.cookie-consent-message {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.cookie-consent-policy {
    color: #18B7B2;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.cookie-consent-policy:hover,
.cookie-consent-policy:focus-visible {
    color: #ffffff;
}

.cookie-consent-policy:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
    border-radius: 0.25rem;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.cookie-consent-accept,
.cookie-consent-reject {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.cookie-consent-accept {
    border: 0;
    background: #18B7B2;
    color: #0B1F3A;
}

.cookie-consent-accept:hover,
.cookie-consent-accept:focus-visible {
    background: #14a39e;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(24, 183, 178, 0.28);
}

.cookie-consent-reject {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #ffffff;
}

.cookie-consent-reject:hover,
.cookie-consent-reject:focus-visible {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-accept:focus-visible,
.cookie-consent-reject:focus-visible {
    outline: 2px solid #18B7B2;
    outline-offset: 3px;
}

html[lang="ar"] .cookie-consent-title {
    font-family: 'Cairo', 'Inter', ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

.has-cookie-bar .whatsapp-float {
    bottom: calc(12.5rem + env(safe-area-inset-bottom, 0px));
}

.has-cookie-bar .site-toast {
    bottom: calc(12.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
    .cookie-consent {
        padding-inline: 2rem;
    }

    .cookie-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .cookie-consent-actions {
        flex-shrink: 0;
    }

    .has-cookie-bar .whatsapp-float {
        bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
    }

    .has-cookie-bar .site-toast {
        bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-social,
    .footer-icon-tile,
    .footer-contact-row,
    .footer-link,
    .footer-link::after,
    .footer-subscribe-submit,
    .footer-back-to-top,
    .footer-back-to-top-icon,
    .footer-cookies,
    .whatsapp-float,
    .site-toast,
    .cookie-consent,
    .cookie-consent-accept,
    .cookie-consent-reject {
        transition: none;
    }

    .whatsapp-float::before {
        animation: none;
        display: none;
    }

    .whatsapp-float:hover,
    .whatsapp-float:focus-visible {
        transform: none;
    }

    .footer-social:hover,
    .footer-social:focus-visible,
    .footer-subscribe-submit:hover,
    .footer-subscribe-submit:focus-visible,
    .footer-back-to-top:hover .footer-back-to-top-icon,
    .footer-back-to-top:focus-visible .footer-back-to-top-icon {
        transform: none;
    }

    .site-toast {
        transform: translateX(-50%);
    }

    .cookie-consent {
        transform: none;
    }

    .cookie-consent-accept:hover,
    .cookie-consent-accept:focus-visible {
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Inner page hero — compact image banner used on contact, trips, blog, CMS
   -------------------------------------------------------------------------- */

.page-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 17.5rem;
    padding-top: 7rem;
    padding-bottom: 1.75rem;
    background: #0B1F3A;
    color: #ffffff;
}

@media (min-width: 640px) {
    .page-hero {
        min-height: 18.5rem;
        padding-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        min-height: 20rem;
        padding-top: 8rem;
        padding-bottom: 2.25rem;
    }
}

.page-hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.78) 0%, rgba(11, 31, 58, 0.42) 42%, rgba(11, 31, 58, 0.88) 100%),
        linear-gradient(90deg, rgba(11, 31, 58, 0.35) 0%, transparent 55%);
}

html[dir="rtl"] .page-hero-overlay {
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.78) 0%, rgba(11, 31, 58, 0.42) 42%, rgba(11, 31, 58, 0.88) 100%),
        linear-gradient(270deg, rgba(11, 31, 58, 0.35) 0%, transparent 55%);
}

.page-hero-content {
    position: relative;
    width: 100%;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.75rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(24, 183, 178, 0.38);
    border-radius: 999px;
    background: rgba(11, 31, 58, 0.62);
    color: #7ee8e4;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

html[dir="rtl"] .page-hero-eyebrow {
    letter-spacing: 0;
}

.page-hero-title {
    margin: 0;
    max-width: 40rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.page-hero-title span {
    color: #18B7B2;
}

html[dir="rtl"] .page-hero-title {
    letter-spacing: 0;
}

html[lang="ar"] .page-hero-title {
    font-family: 'Cairo', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 2.35rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 2.75rem;
    }
}

.page-hero-lead {
    margin: 0.75rem 0 0;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .page-hero-lead {
        margin-top: 0.9rem;
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

.page-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.page-hero-stats li {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.page-hero-stats b {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
}

.page-hero-stats span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   CMS page body — HTML from content long_description
   -------------------------------------------------------------------------- */

.page-body {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85;
}

.page-body > * + * {
    margin-top: 1.15rem;
}

.page-body :where(h2, h3, h4) {
    color: #0B1F3A;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.page-body h2 { font-size: 1.65rem; margin-top: 2.4rem; }
.page-body h3 { font-size: 1.3rem; margin-top: 2rem; }

.page-body :where(ul, ol) {
    padding-inline-start: 1.25rem;
}

.page-body ul { list-style: disc; }
.page-body ol { list-style: decimal; }

.page-body li + li {
    margin-top: 0.4rem;
}

.page-body a {
    color: #18B7B2;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.page-body img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
    border-radius: 1.5rem;
}

.page-body figure {
    margin: 1.75rem 0 0;
}

html[lang="ar"] .page-body :where(h2, h3, h4) {
    letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   Shared form controls — x-front::input
   -------------------------------------------------------------------------- */

.site-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.site-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0B1F3A;
}

.site-input {
    width: 100%;
    min-width: 0;
    height: 3.25rem;
    padding: 0.9rem 1.05rem;
    border: 1px solid #dbe2e8;
    border-radius: 1.125rem;
    background: #ffffff;
    color: #0B1F3A;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.45;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.site-input-area {
    height: auto;
    min-height: 9rem;
    resize: vertical;
    line-height: 1.6;
}

.site-input-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230B1F3A' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.05rem center;
    padding-inline-end: 2.6rem;
}

html[dir="rtl"] .site-input-select {
    background-position: left 1.05rem center;
}

.site-datepicker {
    position: relative;
    width: 100%;
}

.site-input-date {
    padding-inline-end: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230B1F3A' stroke-width='1.8' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='5' width='17' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3.5 10h17'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.05rem center;
    background-size: 1rem;
    cursor: pointer;
    caret-color: transparent;
}

html[dir="rtl"] .site-input-date {
    background-position: left 1.05rem center;
}

.site-datepicker-popover {
    position: absolute;
    top: calc(100% + 0.45rem);
    inset-inline-start: 0;
    z-index: 70;
    width: 100%;
    min-width: 17.5rem;
    padding: 0.9rem;
    border: 1px solid #dbe2e8;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 20px 70px rgba(11, 31, 58, 0.14);
}

.site-datepicker.is-above .site-datepicker-popover {
    top: auto;
    bottom: calc(100% + 0.45rem);
}

.site-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.site-datepicker-month {
    margin: 0;
    color: #0B1F3A;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

.site-datepicker-nav {
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 0;
    border-radius: 999px;
    background: #F7F5EF;
    color: #0B1F3A;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.site-datepicker-nav:hover {
    background: rgba(24, 183, 178, 0.14);
    color: #18B7B2;
}

.site-datepicker-chevron {
    width: 1rem;
    height: 1rem;
}

.site-datepicker-weekdays,
.site-datepicker-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.2rem;
    text-align: center;
}

.site-datepicker-weekdays {
    margin-bottom: 0.35rem;
    color: rgba(11, 31, 58, 0.45);
    font-size: 0.72rem;
    font-weight: 700;
}

.site-datepicker-day {
    height: 2.2rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: #0B1F3A;
    font: inherit;
    font-size: 0.875rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.site-datepicker-day.is-blank {
    visibility: hidden;
    pointer-events: none;
}

.site-datepicker-day:hover:not(:disabled) {
    background: rgba(24, 183, 178, 0.12);
}

.site-datepicker-day.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 1px #18B7B2;
}

.site-datepicker-day.is-selected {
    background: #0B1F3A;
    color: #ffffff;
}

.site-datepicker-day:disabled,
.site-datepicker-day.is-disabled {
    color: rgba(11, 31, 58, 0.32);
    cursor: default;
}

.site-datepicker-footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eef2f5;
}

.site-datepicker-action {
    border: 0;
    background: none;
    color: #18B7B2;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
}

.site-datepicker-action:hover {
    color: #0B1F3A;
}

@media (prefers-reduced-motion: reduce) {
    .site-datepicker-nav,
    .site-datepicker-day,
    .site-datepicker-action {
        transition: none;
    }
}

.site-input::placeholder {
    color: rgba(11, 31, 58, 0.38);
}

.site-input:hover {
    border-color: #c5d0d8;
}

.site-input:focus,
.site-input:focus-visible {
    outline: none;
    border-color: #18B7B2;
    box-shadow: 0 0 0 4px rgba(24, 183, 178, 0.12);
}

.site-input.is-invalid {
    border-color: #C45C5C;
    background: #FDF6F6;
}

.site-input.is-invalid:focus,
.site-input.is-invalid:focus-visible {
    box-shadow: 0 0 0 4px rgba(196, 92, 92, 0.16);
}

.site-input:disabled {
    opacity: 0.7;
}

.site-field-error {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #C45C5C;
}

@media (prefers-reduced-motion: reduce) {
    .site-input {
        transition: none;
    }
}
