/* ==========================================================================
   Visit Lattakia — Coastal Mediterranean Design System 2026
   ========================================================================== */

/* ── CSS VARIABLES (compat for detail pages) ────────────────────────────── */
:root {
    --ff: 'Plus Jakarta Sans', system-ui, sans-serif;
    /* Typography — switched under [dir="rtl"] so Arabic gets a proper display face */
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --c-dark:          #0f172a;
    --c-dark-2:        #1e293b;
    --c-border:        #e2e8f0;
    --c-muted:         #94a3b8;
    --c-text-2:        #64748b;
    --c-terra:         #0ea5e9;
    --c-blue:          #0ea5e9;
    --color-ocean-900: #0c4a6e;
    --color-sea-500:   #0ea5e9;
    --color-sea-600:   #0284c7;
    --color-sand-100:  #fef3c7;
    --transition-fast: all 0.2s ease;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
p { margin-bottom: 1rem; }

/* ── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(14,165,233,0.3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(14,165,233,0.55); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,
[dir="rtl"] h4,[dir="rtl"] h5,[dir="rtl"] h6 {
    font-family: 'Tajawal', sans-serif; letter-spacing: 0;
}
[dir="rtl"] body,[dir="rtl"] p,[dir="rtl"] span,[dir="rtl"] a,
[dir="rtl"] button,[dir="rtl"] input,[dir="rtl"] textarea {
    font-family: 'Tajawal', sans-serif;
}
/* Centralised font switch for components that use the typography variables */
[dir="rtl"], [lang="ar"] {
    --font-display: 'Tajawal', sans-serif;
    --font-body:    'Tajawal', sans-serif;
}

/* ── CONTAINER ──────────────────────────────────────────────────────────── */
.container {
    width: 100%; max-width: 1280px;
    margin-left: auto; margin-right: auto;
    padding-left: 1.5rem; padding-right: 1.5rem;
}
@media (max-width: 640px) { .container { padding-left: 1rem; padding-right: 1rem; } }

/* ── BOOTSTRAP GRID SHIM ────────────────────────────────────────────────── */
.row { display: flex; flex-wrap: wrap; margin-left: -0.75rem; margin-right: -0.75rem; }
.row > * { padding-left: 0.75rem; padding-right: 0.75rem; }
.g-0 > * { padding: 0; }
.g-4 { margin: -0.75rem; } .g-4 > * { padding: 0.75rem; }
.g-lg-5 { margin: -0.75rem; } .g-lg-5 > * { padding: 0.75rem; }

.col-6  { width: 50%; flex: 0 0 auto; }
.col-lg-4,.col-lg-2,.col-lg-3,.col-md-6,.col-md-3,.col-xl-4 { flex: 0 0 auto; }
@media (min-width: 1200px) { .col-xl-4 { width: 33.333%; } }
@media (min-width: 992px)  { .col-lg-4 { width: 33.333%; } .col-lg-2 { width: 16.667%; } .col-lg-3 { width: 25%; } }
@media (min-width: 768px)  { .col-md-6 { width: 50%; } .col-md-3 { width: 25%; } }
@media (max-width: 767px)  { .col-md-6,.col-md-3,.col-lg-4,.col-lg-2,.col-lg-3,.col-xl-4 { width: 100%; } }

/* flex utils */
.d-flex         { display: flex !important; }
.d-none         { display: none !important; }
.d-block        { display: block !important; }
.d-inline-flex  { display: inline-flex !important; }
.align-items-center   { align-items: center !important; }
.align-items-start    { align-items: flex-start !important; }
.align-items-end      { align-items: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center  { justify-content: center !important; }
.flex-column    { flex-direction: column !important; }
.flex-wrap      { flex-wrap: wrap !important; }
.flex-grow-1    { flex-grow: 1 !important; }
.flex-shrink-0  { flex-shrink: 0 !important; }

@media (min-width: 768px) {
    .d-md-none        { display: none !important; }
    .d-md-flex        { display: flex !important; }
    .d-md-inline-flex { display: inline-flex !important; }
    .d-md-block       { display: block !important; }
}
@media (max-width: 767px) { .d-md-none { display: block; } }

/* spacing */
.gap-1 { gap: 0.25rem !important; } .gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; } .gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.mb-0 { margin-bottom: 0 !important; }     .mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; } .mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }   .mb-5 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 1rem !important; }      .mt-5 { margin-top: 1.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.p-0  { padding: 0 !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }

/* text */
.text-center { text-align: center !important; }
.text-decoration-none { text-decoration: none !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold     { font-weight: 700 !important; }
.fs-7 { font-size: 0.9rem !important; }
.fs-8 { font-size: 0.8rem !important; }
.fs-9 { font-size: 0.72rem !important; }
.text-danger { color: #dc2626 !important; }

/* misc */
.w-100            { width: 100% !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.overflow-hidden  { overflow: hidden !important; }
.cursor-pointer   { cursor: pointer; }

/* ── FORM CHECK ─────────────────────────────────────────────────────────── */
.form-check { display: flex; align-items: center; gap: 0.5rem; }
.form-check-input  { cursor: pointer; accent-color: #0ea5e9; }
.form-check-label  { cursor: pointer; font-size: 0.875rem; font-weight: 500; color: #374151; }
.form-switch .form-check-input {
    width: 2.5em; height: 1.3em; border-radius: 99px;
    appearance: none; -webkit-appearance: none;
    background: #e2e8f0; border: none; position: relative; cursor: pointer;
    transition: background 0.2s;
}
.form-switch .form-check-input:checked { background: #0ea5e9; }
.form-switch .form-check-input::before {
    content: ''; position: absolute;
    width: 1em; height: 1em; border-radius: 50%; background: #fff;
    top: 50%; left: 0.15em; transform: translateY(-50%);
    transition: left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.form-switch .form-check-input:checked::before { left: calc(100% - 1.15em); }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes spin       { to { transform: rotate(360deg); } }
@keyframes shimmer    { from { opacity: 0.5; } to { opacity: 0.95; } }
@keyframes float      { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes float2     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes pulse-glow { 0%,100% { opacity: 0.55; } 50% { opacity: 0.9; } }
@keyframes orb-drift  {
    0%   { transform: translate(0,0) scale(1); }
    33%  { transform: translate(30px,-20px) scale(1.05); }
    66%  { transform: translate(-20px,15px) scale(0.97); }
    100% { transform: translate(0,0) scale(1); }
}
@keyframes shimmer-bg {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.main-shell { display: flex; flex-direction: column; min-height: 100vh; }

.glass-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(248,250,252,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    transition: box-shadow 0.3s;
}
.glass-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.nav-brand-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem; font-weight: 800; letter-spacing: -0.03em; color: #0f172a;
}
[dir="rtl"] .nav-brand-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

/* Desktop nav — semantic class, no cascade dependency */
.header-desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
@media (max-width: 767px) { .header-desktop-nav { display: none; } }

/* Mobile toggle button */
.header-mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    font-size: 1.1rem; color: #374151;
    cursor: pointer; transition: all 0.15s;
}
@media (max-width: 767px) { .header-mobile-toggle { display: flex; } }
.header-mobile-toggle:hover { background: #f8fafc; border-color: #cbd5e1; }

.nav-link-premium {
    display: inline-flex; align-items: center;
    padding: 7px 14px; border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem; font-weight: 500; color: #475569;
    text-decoration: none;
    transition: all 0.15s ease; letter-spacing: -0.01em;
}
.nav-link-premium:hover  { color: #0f172a; background: #f1f5f9; }
.nav-link-premium.active { color: #0284c7; background: #e0f2fe; font-weight: 600; }
[dir="rtl"] .nav-link-premium { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

.mobile-nav-drawer { background: #fff; border-top: 1px solid #f1f5f9; box-shadow: 0 12px 40px rgba(0,0,0,0.09); padding: 0.75rem 1.5rem; }
.mobile-nav-drawer .nav-link-premium {
    display: block; padding: 12px 0;
    font-size: 0.95rem; border-bottom: 1px solid #f1f5f9; border-radius: 0;
}

.btn-language {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    background: #fff; border: 1.5px solid #e2e8f0; border-radius: 99px;
    padding: 7px 16px; color: #374151; cursor: pointer;
    transition: all 0.15s; display: inline-flex; align-items: center; gap: 5px;
    letter-spacing: -0.01em;
}
.btn-language:hover { border-color: #0ea5e9; color: #0284c7; }
[dir="rtl"] .btn-language { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero-wrapper {
    position: relative; min-height: 90vh;
    background: linear-gradient(135deg, #020617 0%, #0c4a6e 45%, #0369a1 100%);
    display: flex; align-items: center; overflow: hidden; color: #fff;
}
.hero-wrapper::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none; z-index: 1;
}
.hero-glow-1 {
    position: absolute; width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.22) 0%, transparent 65%);
    top: -280px; right: -120px; pointer-events: none; z-index: 1;
    animation: orb-drift 18s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.16) 0%, transparent 65%);
    bottom: -220px; left: -80px; pointer-events: none; z-index: 1;
    animation: orb-drift 22s ease-in-out 4s infinite;
}
.hero-glow-3 {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.14) 0%, transparent 65%);
    top: 35%; left: 18%; pointer-events: none; z-index: 1;
    animation: pulse-glow 6s ease-in-out infinite;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.25) 100%);
}
.hero-content { position: relative; z-index: 3; width: 100%; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(56,189,248,0.9);
    background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.22);
    border-radius: 99px; padding: 7px 20px; margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
[dir="rtl"] .hero-eyebrow { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    font-weight: 800; letter-spacing: -0.05em; line-height: 0.98;
    color: #fff; margin-bottom: 1.5rem;
}
[dir="rtl"] .hero-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; line-height: 1.1; }

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 60%, #34d399 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem); font-weight: 400; line-height: 1.75;
    color: rgba(255,255,255,0.62); max-width: 440px; margin: 0 auto 2.75rem;
}

/* ── SEARCH BAR ─────────────────────────────────────────────────────────── */
.floating-search-bar {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.98); border-radius: 99px;
    padding: 6px;
    max-width: 560px; width: 100%; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 6px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.3);
}
.floating-search-bar .search-icon-wrap {
    display: flex; align-items: center; justify-content: center;
    width: 44px; flex-shrink: 0; color: #94a3b8;
}
.floating-search-bar input {
    flex: 1; border: none; background: transparent;
    padding: 11px 8px; font-family: 'Inter', sans-serif;
    font-size: 0.9rem; color: #0f172a; min-width: 0;
}
.floating-search-bar input::placeholder { color: #94a3b8; }
.floating-search-bar input:focus { outline: none; }
[dir="rtl"] .floating-search-bar input { font-family: 'Tajawal', sans-serif; text-align: right; }
.btn-search {
    flex-shrink: 0;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff; border: none; border-radius: 99px;
    padding: 11px 26px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem; font-weight: 700; letter-spacing: -0.01em;
    cursor: pointer; white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(2,132,199,0.4);
}
.btn-search:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-1px); box-shadow: 0 7px 22px rgba(2,132,199,0.52);
}
[dir="rtl"] .btn-search { font-family: 'Tajawal', sans-serif; }

/* wave separator */
.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 4; }
.wave-divider svg { display: block; width: calc(100% + 1.3px); height: 72px; }
.wave-fill { fill: #f8fafc; }

/* ── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(180deg, #0e2444 0%, #0b1e3a 100%);
    color: #fff; padding: 0;
    border-top: 1px solid rgba(56,189,248,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.25);
}
.stat-item {
    padding: 1.75rem 2rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07); position: relative;
}
.stat-item:last-child { border-right: none; }
[dir="rtl"] .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.07); }
[dir="rtl"] .stat-item:last-child { border-left: none; }
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.25rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
    color: #fff;
}
.stat-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(147,197,253,0.65); margin-top: 6px;
}
@media (max-width: 768px) {
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stat-item:last-child { border-bottom: none; }
}

/* ── SECTION ANATOMY ────────────────────────────────────────────────────── */
.page-section    { padding: 5.5rem 0; }
.page-section-sm { padding: 3rem 0; }
.section-header  { text-align: center; margin-bottom: 3.5rem; }

.section-label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: #0ea5e9; margin-bottom: 0.8rem;
}
[dir="rtl"] .section-label { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; letter-spacing: -0.035em;
    color: #0f172a; margin-bottom: 1rem; line-height: 1.1;
}
[dir="rtl"] .section-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

.section-divider {
    width: 52px; height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #2dd4bf);
    border-radius: 99px; margin: 0 auto;
}
.divider-line { width: 52px; height: 3px; background: linear-gradient(90deg, #0ea5e9, #2dd4bf); border-radius: 99px; margin: 0.75rem auto 0; }

.section-sand     { background: #fffbeb; }
.section-sea-pale { background: #f0f9ff; }
.section-dark     { background: #0f172a; color: #fff; }
.section-dark h2,.section-dark h3 { color: #fff; }

/* ── PAGE HEADER BANNER ─────────────────────────────────────────────────── */
.page-header-banner {
    background: linear-gradient(135deg, #020617 0%, #0c4a6e 55%, #0369a1 100%);
    padding: 4rem 0 3rem; color: #fff;
    position: relative; overflow: hidden;
}
.page-header-banner::before {
    content: ''; position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 65%);
    top: -150px; right: -100px; border-radius: 50%; pointer-events: none;
}

/* ── PREMIUM CARD ───────────────────────────────────────────────────────── */
.premium-card {
    background: #fff; border-radius: 22px;
    border: 1px solid rgba(226,232,240,0.75);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.32s cubic-bezier(0.16,1,0.3,1),
                border-color 0.32s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.03);
}
.premium-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.11), 0 8px 22px rgba(0,0,0,0.07);
    border-color: transparent;
}
.card-img-container {
    position: relative; height: 224px; overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    flex-shrink: 0;
}
.card-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.premium-card:hover .card-img-container img { transform: scale(1.07); }
.card-img-container::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,6,23,0.38) 0%, transparent 58%);
    pointer-events: none; z-index: 1;
}
.card-badge {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    background: rgba(2,6,23,0.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92); padding: 4px 12px; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
    border: 1px solid rgba(255,255,255,0.15);
}
[dir="rtl"] .card-badge { right: auto; left: 12px; }

.card-featured-badge {
    position: absolute; top: 12px; left: 12px; z-index: 10;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff; padding: 4px 12px; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
[dir="rtl"] .card-featured-badge { left: auto; right: 12px; }

.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em;
    color: #0f172a; margin-bottom: 0.35rem; line-height: 1.3;
}
[dir="rtl"] .card-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.card-desc {
    font-size: 0.855rem; color: #64748b; line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex-grow: 1; margin-bottom: 1.25rem;
}
.card-footer-meta {
    display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
    padding-top: 1rem; border-top: 1px solid #f1f5f9; margin-top: auto;
}

/* ── CATEGORY CARDS ─────────────────────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .categories-grid { gap: 0.75rem; } }

.category-card {
    display: flex; flex-direction: column; align-items: center; gap: 0.875rem;
    padding: 2rem 1.25rem;
    background: #fff; border-radius: 22px; border: 1px solid rgba(226,232,240,0.75);
    text-decoration: none; cursor: pointer;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.32s, border-color 0.32s;
    text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.category-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #2dd4bf);
    transform: scaleX(0); transition: transform 0.32s;
}
.category-card:hover { transform: translateY(-7px); box-shadow: 0 22px 52px rgba(0,0,0,0.1); border-color: transparent; }
.category-card:hover::after { transform: scaleX(1); }

.category-icon-wrapper {
    position: relative;
    width: 66px; height: 66px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.85rem; flex-shrink: 0;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
/* SVG fallback icon — inherits the wrapper's front colour via currentColor. */
.category-icon-wrapper .category-icon { width: 50%; height: 50%; }
/* Admin-supplied icon image sits on top; onerror removes it, revealing the SVG. */
.category-icon-wrapper .category-icon-img {
    position: absolute; inset: 0; margin: auto;
    width: 60%; height: 60%; object-fit: contain;
}
.category-card:hover .category-icon-wrapper { transform: scale(1.12) rotate(6deg); }

.category-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem; font-weight: 700; letter-spacing: -0.01em;
    color: #0f172a; margin: 0; line-height: 1.3;
}
[dir="rtl"] .category-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.category-count { font-size: 0.72rem; color: #94a3b8; margin: 0; }

/* ── STARS ──────────────────────────────────────────────────────────────── */
.stars-container { display: flex; align-items: center; gap: 2px; color: #f59e0b; font-size: 0.85rem; }
.stars-rating-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem; font-weight: 700; color: #0f172a; margin-left: 5px; }
[dir="rtl"] .stars-rating-text { margin-left: 0; margin-right: 5px; }
.star-rating-button { font-size: 1.9rem; color: #d1d5db; cursor: pointer; transition: color 0.15s, transform 0.15s; line-height: 1; }
.star-rating-button.active,.star-rating-button:hover { color: #f59e0b; transform: scale(1.12); }

/* ── ACTIVITY CARDS ─────────────────────────────────────────────────────── */
.activity-card {
    background: #fff; border-radius: 22px; border: 1px solid rgba(226,232,240,0.75);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.32s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.03);
}
.activity-card:hover { transform: translateY(-7px); box-shadow: 0 24px 64px rgba(0,0,0,0.11); border-color: transparent; }
.activity-card-img { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, #0c4a6e, #075985); flex-shrink: 0; }
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.activity-card:hover .activity-card-img img { transform: scale(1.07); }
.activity-type-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: rgba(2,6,23,0.62); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92); padding: 4px 12px; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.12);
}
[dir="rtl"] .activity-type-badge { left: auto; right: 12px; }
.activity-price-badge {
    position: absolute; bottom: 12px; right: 12px; z-index: 2;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff; padding: 4px 12px; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 700;
}
[dir="rtl"] .activity-price-badge { right: auto; left: 12px; }
.activity-card-body { padding: 1.35rem; flex-grow: 1; display: flex; flex-direction: column; }
.activity-date-line {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.74rem; font-weight: 600;
    color: #0ea5e9; letter-spacing: 0.04em; margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 5px;
}
[dir="rtl"] .activity-date-line { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.activity-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid #f1f5f9; }

/* ── BLOG CARDS ─────────────────────────────────────────────────────────── */
.blog-card {
    background: #fff; border-radius: 22px; border: 1px solid rgba(226,232,240,0.75);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1), box-shadow 0.32s, border-color 0.32s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.03);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.1); border-color: transparent; }
.blog-card-img { height: 210px; overflow: hidden; background: linear-gradient(135deg, #0c4a6e, #075985); flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-date { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0ea5e9; margin-bottom: 0.6rem; }
.blog-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: #0f172a; line-height: 1.3; margin-bottom: 0.6rem; }
[dir="rtl"] .blog-card-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.blog-excerpt { font-size: 0.86rem; color: #64748b; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; margin-bottom: 1.25rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: 5px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: -0.01em; color: #0f172a; transition: gap 0.2s, color 0.2s; }
.blog-card:hover .blog-read-more { gap: 10px; color: #0ea5e9; }
[dir="rtl"] .blog-read-more { font-family: 'Tajawal', sans-serif; }

.category-pill {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.02em;
    padding: 4px 10px; border-radius: 99px;
    background: #e0f2fe; color: #0369a1; border: 1px solid rgba(3,105,161,0.1);
    display: inline-flex; align-items: center; gap: 4px;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-premium-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
    letter-spacing: -0.01em; color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border: none; border-radius: 99px; padding: 11px 26px;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: all 0.2s ease; box-shadow: 0 4px 14px rgba(2,132,199,0.38);
}
.btn-premium-primary:hover { background: linear-gradient(135deg, #0284c7, #0369a1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(2,132,199,0.48); color: #fff; }

.btn-premium-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
    letter-spacing: -0.01em; color: #334155;
    background: transparent; border: 1.5px solid #e2e8f0;
    border-radius: 99px; padding: 10px 24px;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-premium-secondary:hover { border-color: #0ea5e9; color: #0284c7; background: #f0f9ff; transform: translateY(-1px); }

.btn-premium-coral {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, #f97316, #ea580c);
    border: none; border-radius: 99px; padding: 11px 26px;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: all 0.2s ease; box-shadow: 0 4px 14px rgba(234,88,12,0.38);
}
.btn-premium-coral:hover { background: linear-gradient(135deg, #ea580c, #c2410c); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(234,88,12,0.48); color: #fff; }

[dir="rtl"] .btn-premium-primary,
[dir="rtl"] .btn-premium-secondary,
[dir="rtl"] .btn-premium-coral { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }

/* ── FORMS ──────────────────────────────────────────────────────────────── */
.form-premium-control {
    display: block; width: 100%; padding: 12px 16px;
    font-family: 'Inter', sans-serif; font-size: 0.92rem;
    color: #0f172a; background: #fff;
    border: 1.5px solid #e2e8f0; border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s; line-height: 1.5;
}
.form-premium-control:focus { outline: none; border-color: #0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-premium-control::placeholder { color: #94a3b8; }
[dir="rtl"] .form-premium-control { font-family: 'Tajawal', sans-serif; text-align: right; }

/* ── FILTER SIDEBAR ─────────────────────────────────────────────────────── */
.places-filter-layout { display: grid; grid-template-columns: 278px 1fr; gap: 2rem; align-items: start; }
@media (max-width: 992px) { .places-filter-layout { grid-template-columns: 1fr; } }

.filter-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.64rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.75rem;
}
.filter-btn {
    display: flex; align-items: center; gap: 8px; width: 100%;
    padding: 8px 12px; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.83rem; font-weight: 500; color: #475569;
    background: transparent; border: 1px solid transparent;
    border-radius: 10px; cursor: pointer; text-align: left;
    transition: all 0.15s;
}
[dir="rtl"] .filter-btn { text-align: right; font-family: 'Tajawal', sans-serif; }
.filter-btn:hover { background: #f8fafc; color: #0f172a; }
.filter-btn.active { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff; }

/* ── BADGES ─────────────────────────────────────────────────────────────── */
.badge-open   { background: #dcfce7; color: #166534; padding: 3px 10px; border-radius: 99px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-closed { background: #fee2e2; color: #991b1b; padding: 3px 10px; border-radius: 99px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── SIDEBAR LAYOUTS ────────────────────────────────────────────────────── */
.info-sidebar-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 992px) { .info-sidebar-layout { grid-template-columns: 1fr; } }
.info-sidebar-card { background: #fff; border-radius: 22px; border: 1px solid #f1f5f9; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.03); }
.info-sidebar-layout aside { position: sticky; top: 88px; align-self: start; }
.places-filter-layout aside .info-sidebar-card { position: sticky; top: 88px; }
@media (max-width: 992px) { .info-sidebar-card { position: static !important; } }

/* ── GLASS CARD ─────────────────────────────────────────────────────────── */
.glass-card { background: rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.5); border-radius: 22px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.glass-card:hover { background: rgba(255,255,255,0.92); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

/* ── DETAILS HERO ───────────────────────────────────────────────────────── */
.details-hero { position: relative; height: 55vh; min-height: 400px; overflow: hidden; background: linear-gradient(135deg, #0c4a6e, #075985); }
.details-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.details-overlay { position: absolute; inset: 0; padding: 3rem 0 2.5rem; background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.72) 65%, rgba(2,6,23,0.95) 100%); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.details-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.75); }

/* ── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-item { border-radius: 14px; overflow: hidden; border: 1px solid #f1f5f9; aspect-ratio: 4/3; background: #f8fafc; }
.map-container { height: 260px; border-radius: 14px; overflow: hidden; border: 1px solid #f1f5f9; background: #f8fafc; }

/* ── LOADING & EMPTY ────────────────────────────────────────────────────── */
.loading-wrapper { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 1rem; gap: 1rem; }
.loading-spinner-ocean { width: 38px; height: 38px; border: 2.5px solid #e2e8f0; border-top-color: #0ea5e9; border-radius: 50%; animation: spin 0.75s linear infinite; }
.empty-state { text-align: center; padding: 4.5rem 2rem; }
.empty-state-icon { font-size: 3rem; margin-bottom: 1.25rem; opacity: 0.4; }
.empty-state h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.empty-state p { font-size: 0.9rem; color: #64748b; max-width: 300px; margin: 0 auto 1.5rem; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer-premium {
    background: linear-gradient(180deg, #0d1e38 0%, #091628 100%);
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(14,165,233,0.12);
}
.footer-brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
[dir="rtl"] .footer-brand-name { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.footer-col-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
[dir="rtl"] .footer-col-title { font-family: 'Tajawal', sans-serif; letter-spacing: 0; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.4); display: block; padding: 3px 0; transition: color 0.15s; }
.footer-link:hover { color: #fff; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: all 0.15s; text-decoration: none; }
.footer-social-btn:hover { background: rgba(14,165,233,0.15); border-color: rgba(14,165,233,0.3); color: #38bdf8; transform: translateY(-2px); }
.footer-divider { border: none; border-top: 1px solid rgba(56,189,248,0.1); margin: 2.5rem 0 2rem; }
.footer-bottom-link { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-bottom-link:hover { color: rgba(255,255,255,0.75); }
.hover-white:hover { color: #fff !important; }

/* ── UTILITIES ──────────────────────────────────────────────────────────── */
.text-gradient { background: linear-gradient(135deg, #0ea5e9, #2dd4bf); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
.text-coral { color: #f97316 !important; }
.text-sea   { color: #0ea5e9 !important; }
.text-gold  { color: #f59e0b !important; }
.bg-sand    { background: #fffbeb !important; }
.bg-sea-pale{ background: #f0f9ff !important; }
.hover-scale:hover { transform: scale(1.05); }
.hover-scale { transition: transform 0.3s; }

/* skeleton */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 1200px 100%;
    animation: shimmer-bg 1.4s ease-in-out infinite;
    border-radius: 12px;
}

/* ── INLINE SVG ICONS ───────────────────────────────────────────────────── */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; flex-shrink: 0; }
.icon-sm { width: 0.85em; height: 0.85em; }
.icon-lg { width: 1.4em; height: 1.4em; }

/* ── HERO QUICK TAGS (was inline + JS hover) ────────────────────────────── */
.hero-quick-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 1.75rem; position: relative; z-index: 20; pointer-events: auto; }
.hero-quick-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 99px; padding: 6px 16px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, color 0.2s;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-quick-tag:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── VALUE PROP CARDS (was inline + JS hover) ───────────────────────────── */
.valueprop-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px; padding: 2rem 1.5rem; text-align: center; height: 100%;
    transition: transform 0.3s, background 0.3s;
}
.valueprop-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.valueprop-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(14,165,233,0.15); border: 1px solid rgba(56,189,248,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #7dd3fc; margin: 0 auto 1.25rem;
}
.valueprop-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
[dir="rtl"] .valueprop-title { letter-spacing: 0; }
.valueprop-desc { font-size: 0.855rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

/* ── PROSE ──────────────────────────────────────────────────────────────── */
.prose-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: #0f172a; }
.prose-content h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.875rem; margin-top: 2rem; color: #0f172a; }
.prose-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; margin-top: 1.5rem; color: #1e293b; }
.prose-content p  { margin-bottom: 1.25rem; line-height: 1.8; color: #374151; }
.prose-content ul,.prose-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose-content ul { list-style: disc; }
.prose-content ol { list-style: decimal; }
.prose-content li { margin-bottom: 0.35rem; color: #374151; }
.prose-content a  { color: #0ea5e9; text-decoration: underline; }
.prose-content img { border-radius: 14px; margin: 1.5rem 0; }
.prose-content blockquote { border-left: 3px solid #0ea5e9; padding-left: 1.25rem; color: #64748b; margin: 1.5rem 0; font-style: italic; }

/* ── BLAZOR ─────────────────────────────────────────────────────────────── */
#blazor-error-ui {
    background: #fef3c7; bottom: 0; left: 0; position: fixed; width: 100%;
    padding: 0.75rem 1.25rem; z-index: 1000; display: none;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1); font-size: 0.875rem; color: #78350f;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
.blazor-error-boundary > .blazor-error-boundary-error { background: #fee2e2; color: #991b1b; padding: 1rem; border-radius: 10px; margin: 1rem 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-wrapper { min-height: 78vh; }
    .page-section { padding: 3.75rem 0; }
}
@media (max-width: 768px) {
    .floating-search-bar { max-width: 100%; }
    .hero-title { font-size: clamp(2.6rem, 10vw, 3.8rem); }
    .page-section { padding: 3rem 0; }
}
@media (max-width: 480px) {
    .hero-wrapper { min-height: 82vh; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card { padding: 1.5rem 0.75rem; }
    .category-icon-wrapper { width: 54px; height: 54px; font-size: 1.6rem; }
}
