:root {
  --font-sans: Inter, "Segoe UI", Arial, sans-serif;
  --font-ar: "Segoe UI", Tahoma, Arial, sans-serif;
  --bg: #f4f7ff;
  --bg-elevated: rgba(255, 255, 255, .82);
  --surface: #ffffff;
  --surface-2: #edf2ff;
  --surface-3: #e4ebff;
  --ink: #0b1539;
  --muted: #66708b;
  --muted-2: #8b94aa;
  --line: rgba(18, 45, 110, .12);
  --primary: #1824a7;
  --primary-2: #3458ff;
  --primary-soft: #e8ebff;
  --cyan: #1ad8ec;
  --sand: #ffb862;
  --success: #0ca878;
  --danger: #e25065;
  --footer: #071441;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(12, 30, 82, .09);
  --shadow-md: 0 24px 70px rgba(12, 30, 82, .15);
  --shadow-lg: 0 40px 100px rgba(7, 18, 63, .24);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1180px;
  --header-height: 84px;
}

html[data-theme="dark"] {
  --bg: #050b20;
  --bg-elevated: rgba(10, 20, 53, .82);
  --surface: #0b1535;
  --surface-2: #0e1b44;
  --surface-3: #142459;
  --ink: #f7f9ff;
  --muted: #a5afc8;
  --muted-2: #7b86a3;
  --line: rgba(159, 177, 255, .13);
  --primary: #6479ff;
  --primary-2: #3f5fff;
  --primary-soft: rgba(91, 111, 255, .14);
  --footer: #030816;
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, .2);
  --shadow-md: 0 28px 80px rgba(0, 0, 0, .3);
  --shadow-lg: 0 44px 110px rgba(0, 0, 0, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}
html[dir="rtl"] body { font-family: var(--font-ar); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--primary-2); color: white; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--flush-top { padding-top: 0; }
.section--surface { background: var(--surface); }
.section--soft { background: linear-gradient(180deg, transparent, var(--surface-2), transparent); }

.skip-link { position: fixed; inset-inline-start: 16px; top: -100px; z-index: 9999; background: white; color: #111; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.ambient-bg { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .22; animation: drift 14s ease-in-out infinite alternate; }
.ambient-orb--one { width: 520px; height: 520px; background: #4265ff; top: -220px; inset-inline-end: -180px; }
.ambient-orb--two { width: 440px; height: 440px; background: #1ad8ec; bottom: -240px; inset-inline-start: -220px; animation-delay: -6s; }
.ambient-grid { position: absolute; inset: 0; opacity: .028; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
@keyframes drift { to { transform: translate3d(60px, 40px, 0) scale(1.08); } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); transition: .3s ease; }
.site-header::before { content: ""; position: absolute; inset: 0; background: transparent; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.is-scrolled::before { background: var(--bg-elevated); backdrop-filter: blur(18px) saturate(140%); border-color: var(--line); box-shadow: 0 8px 28px rgba(5, 16, 55, .08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; position: relative; }
.brand { width: 156px; flex: 0 0 auto; display: flex; align-items: center; }
.brand-logo { width: 100%; height: auto; object-fit: contain; }
.brand-logo--dark { display: none; }
html[data-theme="dark"] .brand-logo--light { display: none; }
html[data-theme="dark"] .brand-logo--dark { display: block; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 5px; margin-inline: auto; }
.desktop-nav a { position: relative; font-size: .9rem; font-weight: 700; color: var(--muted); padding: 10px 12px; border-radius: 999px; transition: .2s ease; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--ink); background: var(--surface); box-shadow: var(--shadow-sm); }
.desktop-nav a.is-active::after { content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--primary-2); bottom: 3px; left: 50%; transform: translateX(-50%); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-switch { height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-elevated); font-size: .82rem; font-weight: 800; }
.language-switch__icon { font-size: .86rem; color: var(--primary-2); }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--bg-elevated); cursor: pointer; transition: .2s ease; }
.icon-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.theme-icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon--moon { display: none; }
html[data-theme="dark"] .theme-icon--sun { display: none; }
html[data-theme="dark"] .theme-icon--moon { display: block; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--bg-elevated); padding: 0; cursor: pointer; place-content: center; gap: 4px; }
.menu-button span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: var(--header-height) 0 0; background: var(--bg-elevated); backdrop-filter: blur(24px); border-top: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu__inner { padding: 24px; display: grid; gap: 6px; }
.mobile-menu__inner > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 750; font-size: 1.08rem; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 0 22px; font-weight: 800; font-size: .92rem; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 12px 28px rgba(40, 72, 230, .25); }
.button--primary:hover { box-shadow: 0 18px 40px rgba(40, 72, 230, .34); }
.button--secondary { color: var(--ink); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.button--ghost { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button--white { color: #102064; background: white; }
.button--small { min-height: 40px; padding-inline: 16px; font-size: .83rem; }
.button--block { width: 100%; }
.button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--primary-2); }
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 42px; }
.section-heading__copy { max-width: 760px; }
.section-heading h2, .page-hero h1, .hero h1 { margin: 10px 0 0; font-size: clamp(2.25rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
html[dir="rtl"] .section-heading h2, html[dir="rtl"] .page-hero h1, html[dir="rtl"] .hero h1 { letter-spacing: -.02em; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; max-width: 680px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-2); font-weight: 850; white-space: nowrap; }
.text-link::after { content: "↗"; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }
html[dir="rtl"] .text-link::after { transform: scaleX(-1); }

.hero { min-height: 820px; padding: 146px 0 54px; display: flex; align-items: center; position: relative; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 850px; height: 850px; border-radius: 50%; inset-inline-end: -270px; top: -190px; background: radial-gradient(circle, rgba(57, 87, 255, .28), rgba(22, 197, 226, .08) 48%, transparent 68%); filter: blur(8px); z-index: -1; animation: pulseGlow 8s ease-in-out infinite alternate; }
@keyframes pulseGlow { to { transform: scale(1.08); opacity: .72; } }
.hero-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 5; }
.hero h1 { max-width: 700px; font-size: clamp(3.3rem, 6vw, 6.4rem); }
.hero-title-accent { display: block; color: transparent; background: linear-gradient(95deg, var(--primary-2), #2dc9e2 72%); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 620px; margin: 25px 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--muted); font-size: .86rem; font-weight: 650; }
.hero-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(12, 168, 120, .12); }
.hero-visual { min-height: 570px; position: relative; perspective: 1200px; }
.hero-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.hero-globe { position: absolute; width: 470px; aspect-ratio: 1; border-radius: 50%; inset: 50% auto auto 50%; transform: translate(-50%, -50%); background: radial-gradient(circle at 36% 30%, rgba(255,255,255,.22), transparent 18%), radial-gradient(circle at 50% 50%, rgba(39, 88, 255, .3), rgba(6, 20, 70, .96) 72%); box-shadow: inset -30px -40px 70px rgba(0,0,0,.35), 0 40px 100px rgba(10,30,100,.32); overflow: hidden; }
.hero-globe::before { content: ""; position: absolute; inset: -10%; border-radius: 50%; background-image: linear-gradient(rgba(114, 213, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(114, 213, 255, .16) 1px, transparent 1px); background-size: 38px 38px; transform: rotate(15deg); animation: globeGrid 18s linear infinite; }
.hero-globe::after { content: ""; position: absolute; width: 65%; height: 42%; left: 15%; top: 28%; border-radius: 46% 40% 55% 30%; background: linear-gradient(135deg, rgba(35, 218, 224, .65), rgba(41, 77, 255, .45)); filter: blur(2px); opacity: .62; transform: rotate(-12deg); box-shadow: 110px 74px 0 -18px rgba(50, 187, 213, .4), -30px 105px 0 -22px rgba(61, 134, 255, .42); }
@keyframes globeGrid { to { transform: rotate(15deg) translateX(38px); } }
.orbit { position: absolute; inset: 50% auto auto 50%; width: 560px; height: 260px; border: 1px solid rgba(122, 164, 255, .34); border-radius: 50%; transform: translate(-50%, -50%) rotate(-18deg); }
.orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); top: 35px; left: 70px; box-shadow: 0 0 0 8px rgba(26,216,236,.13), 0 0 28px rgba(26,216,236,.7); animation: orbitPulse 2s ease-in-out infinite; }
@keyframes orbitPulse { 50% { transform: scale(1.25); } }
.hero-card { position: absolute; border-radius: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.4); box-shadow: var(--shadow-lg); transform-style: preserve-3d; will-change: transform; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3,8,28,.62)); }
.hero-card--one { width: 220px; height: 300px; left: 0; top: 50px; transform: rotate(-8deg) translateZ(50px); animation: floatOne 6s ease-in-out infinite; }
.hero-card--two { width: 250px; height: 184px; right: 0; top: 4px; transform: rotate(7deg) translateZ(80px); animation: floatTwo 7s ease-in-out infinite; }
.hero-card--three { width: 236px; height: 275px; right: 20px; bottom: 5px; transform: rotate(6deg) translateZ(62px); animation: floatOne 8s ease-in-out infinite reverse; }
.hero-card--four { width: 190px; height: 148px; left: 35px; bottom: 8px; transform: rotate(-5deg) translateZ(90px); animation: floatTwo 6.5s ease-in-out infinite reverse; }
@keyframes floatOne { 50% { translate: 0 -14px; rotate: 1deg; } }
@keyframes floatTwo { 50% { translate: 0 12px; rotate: -1deg; } }
.hero-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; background: var(--bg-elevated); backdrop-filter: blur(18px); border: 1px solid var(--line); border-radius: 16px; padding: 10px 13px; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 800; }
.hero-chip i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--primary-soft); color: var(--primary-2); font-style: normal; }
.hero-chip--one { left: 180px; top: 12px; }
.hero-chip--two { right: 120px; bottom: 32px; }
.hero-search-wrap { position: relative; z-index: 8; margin-top: -18px; }
.hero-search { display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: end; gap: 10px; padding: 14px; border-radius: 24px; background: var(--bg-elevated); backdrop-filter: blur(20px); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.search-field { min-width: 0; padding: 4px 14px; border-inline-end: 1px solid var(--line); }
.search-field:last-of-type { border: 0; }
.search-field label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 900; margin-bottom: 3px; }
html[dir="rtl"] .search-field label { letter-spacing: 0; }
.search-field select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 780; appearance: none; cursor: pointer; padding: 4px 0; }
.search-field select option { background: var(--surface); color: var(--ink); }
.hero-search .button { min-height: 58px; padding-inline: 26px; }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); }
.stat { padding: 26px; background: var(--surface); }
.stat strong { display: block; font-size: 1.85rem; line-height: 1; letter-spacing: -.04em; }
.stat span { display: block; color: var(--muted); font-size: .84rem; margin-top: 8px; }

.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.tour-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: .3s ease; min-width: 0; }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.tour-card__image { position: relative; height: 260px; overflow: hidden; }
.tour-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.tour-card:hover .tour-card__image img { transform: scale(1.06); }
.tour-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,14,46,0) 45%, rgba(5,14,46,.45)); }
.tour-badge { position: absolute; top: 16px; inset-inline-start: 16px; z-index: 2; border-radius: 999px; color: white; background: rgba(8, 18, 60, .62); backdrop-filter: blur(12px); padding: 7px 11px; font-size: .72rem; font-weight: 850; }
.tour-favourite { position: absolute; top: 15px; inset-inline-end: 15px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(8,18,60,.42); color: white; display: grid; place-items: center; cursor: pointer; }
.tour-card__body { padding: 22px; }
.tour-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.tour-card__meta span:first-child { color: var(--primary-2); }
.tour-card h3 { margin: 10px 0 7px; font-size: 1.3rem; line-height: 1.2; letter-spacing: -.025em; }
.tour-card p { margin: 0; color: var(--muted); font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tour-card__facts { display: flex; gap: 15px; margin: 18px 0; color: var(--muted); font-size: .78rem; }
.tour-card__facts span { display: inline-flex; align-items: center; gap: 5px; }
.tour-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid var(--line); }
.price-block small { display: block; color: var(--muted-2); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.price-block strong { display: block; font-size: 1.2rem; line-height: 1.2; }

.experience-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 250px 250px; gap: 18px; }
.experience-card { position: relative; border-radius: 28px; overflow: hidden; isolation: isolate; min-height: 240px; }
.experience-card:first-child { grid-row: 1 / span 2; }
.experience-card:nth-child(4) { grid-column: 2 / span 2; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.experience-card:hover img { transform: scale(1.06); }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,10,35,.78)); z-index: 0; }
.experience-card__copy { position: absolute; z-index: 2; inset: auto 22px 21px; color: white; }
.experience-card__copy span { font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; opacity: .76; }
.experience-card__copy h3 { margin: 4px 0 0; font-size: 1.35rem; }

.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { position: relative; padding: 28px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; transition: .3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card::after { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 50%; background: var(--primary-soft); top: -64px; inset-inline-end: -58px; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--primary-soft), rgba(26,216,236,.1)); color: var(--primary-2); font-size: 1.3rem; font-weight: 900; }
.feature-card h3 { margin: 20px 0 8px; font-size: 1.05rem; }
.feature-card p { color: var(--muted); margin: 0; font-size: .88rem; }

.compare-showcase { background: linear-gradient(135deg, #091a57, #162ca1 58%, #0daac3); border-radius: 40px; color: white; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.compare-showcase::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); right: -150px; top: -200px; box-shadow: 0 0 0 55px rgba(255,255,255,.04), 0 0 0 110px rgba(255,255,255,.025); }
.compare-showcase__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; padding: 64px; position: relative; z-index: 1; }
.compare-showcase h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.05em; margin: 12px 0 18px; }
.compare-showcase p { color: rgba(255,255,255,.75); margin: 0 0 26px; }
.mini-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(-2deg); }
.mini-package { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); }
.mini-package:last-child { transform: translateY(28px); background: white; color: #102064; box-shadow: 0 24px 50px rgba(0,0,0,.22); }
.mini-package small { font-weight: 850; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.mini-package strong { font-size: 1.55rem; display: block; margin: 6px 0 15px; }
.mini-package ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .8rem; }
.mini-package li::before { content: "✓"; margin-inline-end: 7px; color: #3bd6c1; font-weight: 900; }

.destination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.destination-card { position: relative; min-height: 360px; border-radius: 28px; overflow: hidden; isolation: isolate; box-shadow: var(--shadow-sm); }
.destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.destination-card:hover img { transform: scale(1.07); }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,10,35,.05), rgba(4,10,35,.84)); }
.destination-card__copy { position: absolute; inset: auto 22px 22px; z-index: 2; color: white; }
.destination-card__copy small { opacity: .74; font-weight: 700; }
.destination-card__copy h3 { margin: 3px 0 7px; font-size: 1.5rem; }
.destination-card__copy p { margin: 0; color: rgba(255,255,255,.72); font-size: .82rem; }
.destination-card__arrow { position: absolute; top: 18px; inset-inline-end: 18px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: white; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { padding: 28px; border-radius: 26px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: #ffb344; letter-spacing: .08em; }
.testimonial blockquote { margin: 18px 0 24px; font-size: 1rem; line-height: 1.75; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; color: white; background: linear-gradient(135deg, var(--primary), var(--cyan)); }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person small { color: var(--muted); }

.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 48px 54px; border-radius: 34px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(53,89,255,.2), transparent 70%); inset-inline-end: -60px; top: -90px; }
.cta-panel h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.cta-panel p { margin: 0; color: var(--muted); max-width: 700px; }
.cta-panel .button { flex: 0 0 auto; position: relative; z-index: 2; }

.page-hero { min-height: 520px; padding: 150px 0 74px; position: relative; overflow: hidden; display: flex; align-items: center; }
.page-hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(64,95,255,.28), transparent 68%); inset-inline-end: -120px; top: -180px; }
.page-hero::after { content: ""; position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(26,216,236,.18), transparent 68%); inset-inline-start: -100px; bottom: -180px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__copy { max-width: 880px; }
.page-hero h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); }
.page-hero p { margin: 24px 0 0; max-width: 720px; color: var(--muted); font-size: 1.15rem; }
.page-hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.page-hero__chips span { padding: 9px 13px; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-elevated); color: var(--muted); font-size: .8rem; font-weight: 750; }

.filter-bar { position: sticky; top: calc(var(--header-height) + 10px); z-index: 50; margin-top: -34px; }
.filter-form { padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 10px; background: var(--bg-elevated); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-md); }
.filter-form select { min-height: 52px; width: 100%; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--ink); padding: 0 14px; outline: none; font-weight: 700; }
.filter-results { margin: 30px 0 22px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); }
.empty-state { text-align: center; padding: 80px 24px; border: 1px dashed var(--line); background: var(--surface); border-radius: 28px; }
.empty-state h3 { font-size: 1.5rem; margin: 0 0 18px; }

.activity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.activity-card { display: grid; grid-template-columns: 210px 1fr; min-height: 220px; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-sm); transition: .3s ease; }
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.activity-card img { width: 100%; height: 100%; object-fit: cover; }
.activity-card__copy { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.activity-card h3 { margin: 0 0 8px; font-size: 1.35rem; }
.activity-card p { color: var(--muted); margin: 0 0 18px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-media { position: relative; min-height: 560px; }
.story-media img { width: 82%; height: 490px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow-lg); }
.story-media img:last-child { position: absolute; width: 48%; height: 260px; right: 0; bottom: 0; border: 8px solid var(--bg); }
html[dir="rtl"] .story-media img:last-child { right: auto; left: 0; }
.story-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1; margin: 10px 0 22px; letter-spacing: -.05em; }
.story-copy p { color: var(--muted); font-size: 1.05rem; }
.promise-list { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 12px; }
.promise-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 740; }
.promise-list li::before { content: "✓"; width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; display: grid; place-items: center; color: var(--success); background: rgba(12,168,120,.12); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: stretch; }
.contact-info, .form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 30px; padding: 36px; box-shadow: var(--shadow-sm); }
.contact-info { background: linear-gradient(145deg, #091957, #1e36b1); color: white; position: relative; overflow: hidden; }
.contact-info::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); right: -120px; bottom: -150px; box-shadow: 0 0 0 44px rgba(255,255,255,.04); }
.contact-info h2 { margin: 0 0 12px; font-size: 2rem; }
.contact-info > p { color: rgba(255,255,255,.72); }
.contact-details { display: grid; gap: 18px; margin-top: 36px; position: relative; z-index: 2; }
.contact-detail { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-detail small { display: block; opacity: .64; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 800; }
.contact-detail strong, .contact-detail a { display: block; margin-top: 5px; font-size: .95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; color: var(--muted); }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink); border-radius: 14px; outline: none; padding: 14px 15px; transition: .2s ease; }
.field input, .field select { min-height: 52px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary-2); box-shadow: 0 0 0 4px rgba(52,88,255,.1); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-note { color: var(--muted); font-size: .78rem; margin-top: 12px; }

.tour-hero { min-height: 720px; padding: 135px 0 55px; position: relative; display: flex; align-items: end; overflow: hidden; color: white; }
.tour-hero__bg { position: absolute; inset: 0; }
.tour-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,8,30,.92), rgba(3,8,30,.42) 62%, rgba(3,8,30,.2)), linear-gradient(180deg, rgba(3,8,30,.2), rgba(3,8,30,.72)); }
html[dir="rtl"] .tour-hero__bg::after { background: linear-gradient(-90deg, rgba(3,8,30,.92), rgba(3,8,30,.42) 62%, rgba(3,8,30,.2)), linear-gradient(180deg, rgba(3,8,30,.2), rgba(3,8,30,.72)); }
.tour-hero__content { position: relative; z-index: 2; max-width: 820px; }
.tour-hero__content h1 { margin: 14px 0 16px; font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .95; letter-spacing: -.06em; }
.tour-hero__content p { font-size: 1.15rem; color: rgba(255,255,255,.74); max-width: 690px; }
.tour-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0; }
.tour-hero__meta span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border-radius: 999px; padding: 9px 13px; font-size: .8rem; font-weight: 750; }
.tour-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.tour-summary { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); gap: 52px; align-items: start; }
.prose h2 { font-size: 2.2rem; line-height: 1.1; margin: 0 0 18px; letter-spacing: -.04em; }
.prose p { color: var(--muted); font-size: 1.03rem; }
.highlight-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; }
.highlight-list li { padding: 14px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); font-weight: 700; font-size: .86rem; }
.highlight-list li::before { content: "✦"; color: var(--primary-2); margin-inline-end: 7px; }
.booking-summary { position: sticky; top: 110px; padding: 28px; border-radius: 26px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.booking-summary small { color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-size: .7rem; font-weight: 900; }
.booking-summary .price { display: flex; align-items: baseline; gap: 7px; margin: 8px 0 20px; }
.booking-summary .price strong { font-size: 2.35rem; line-height: 1; }
.booking-summary .price span { color: var(--muted); font-size: .78rem; }
.booking-summary__row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .85rem; }
.booking-summary__row span { color: var(--muted); }
.booking-summary__row strong { text-align: end; }
.booking-summary .button { margin-top: 20px; }

.timeline { position: relative; margin-top: 34px; }
.timeline::before { content: ""; position: absolute; top: 18px; bottom: 18px; inset-inline-start: 18px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; padding: 0 0 26px; }
.timeline-number { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-weight: 900; box-shadow: 0 0 0 7px var(--bg); z-index: 1; }
.timeline-item h3 { margin: 6px 0 0; font-size: 1rem; }

.inclusion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inclusion-card { padding: 26px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); }
.inclusion-card h3 { margin: 0 0 18px; }
.inclusion-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.inclusion-card li { display: flex; gap: 10px; color: var(--muted); }
.inclusion-card--yes li::before { content: "✓"; color: var(--success); font-weight: 900; }
.inclusion-card--no li::before { content: "—"; color: var(--danger); font-weight: 900; }

.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: 24px; overflow: hidden; }
.gallery-grid figure:first-child { grid-row: 1 / span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }

.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); background: var(--surface); border-radius: 28px; box-shadow: var(--shadow-sm); transition: .25s ease; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.package-card.is-recommended { border-color: rgba(52,88,255,.4); box-shadow: 0 24px 65px rgba(52,88,255,.17); }
.package-ribbon { position: absolute; top: 15px; inset-inline-end: 15px; padding: 7px 10px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-2); font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.package-card__top small { text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: var(--primary-2); font-size: .7rem; }
.package-card__top h3 { font-size: 1.55rem; margin: 6px 0 12px; }
.package-price { display: flex; align-items: baseline; gap: 7px; }
.package-price strong { font-size: 2rem; line-height: 1; }
.package-price span { color: var(--muted); font-size: .72rem; }
.package-features { display: grid; gap: 13px; padding: 22px 0; margin: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.package-feature { display: grid; grid-template-columns: 82px 1fr; gap: 10px; font-size: .78rem; }
.package-feature strong { color: var(--muted); font-weight: 750; }
.package-feature span { font-weight: 700; }
.package-card__actions { margin-top: auto; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.compare-toggle { min-width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-2); cursor: pointer; display: grid; place-items: center; transition: .2s ease; }
.compare-toggle::before { content: "+"; font-size: 1.25rem; }
.compare-toggle.is-selected { color: white; background: var(--success); border-color: var(--success); }
.compare-toggle.is-selected::before { content: "✓"; }

.compare-dock { position: fixed; z-index: 900; inset-inline: 50% auto; bottom: 24px; transform: translate(-50%, 120px); width: min(calc(100% - 32px), 620px); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px 12px 18px; background: rgba(7,17,55,.93); color: white; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; backdrop-filter: blur(20px); box-shadow: 0 24px 70px rgba(0,0,0,.35); transition: .3s ease; opacity: 0; pointer-events: none; }
html[dir="rtl"] .compare-dock { transform: translate(50%, 120px); }
.compare-dock.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
html[dir="rtl"] .compare-dock.is-visible { transform: translate(50%, 0); }
.compare-dock__copy { min-width: 0; }
.compare-dock__copy strong { display: block; font-size: .9rem; }
.compare-dock__copy span { color: rgba(255,255,255,.64); font-size: .76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.compare-dock__actions { display: flex; gap: 8px; flex: 0 0 auto; }

.modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 22px; opacity: 0; pointer-events: none; transition: .25s ease; }
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(2,6,21,.72); backdrop-filter: blur(12px); }
.modal__panel { position: relative; width: min(100%, 980px); max-height: calc(100vh - 44px); overflow: auto; border-radius: 30px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(16px) scale(.985); transition: .25s ease; }
.modal.is-open .modal__panel { transform: none; }
.modal__header { position: sticky; top: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--bg-elevated); backdrop-filter: blur(16px); }
.modal__header h2 { margin: 0; font-size: 1.45rem; }
.modal__close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); cursor: pointer; font-size: 1.4rem; }
.compare-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.compare-table th, .compare-table td { padding: 17px 22px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: start; }
.compare-table th:first-child, .compare-table td:first-child { width: 25%; color: var(--muted); font-size: .8rem; font-weight: 850; }
.compare-table th:not(:first-child) { font-size: 1.1rem; }
.compare-table .compare-price { color: var(--primary-2); font-size: 1.5rem; font-weight: 900; }
.compare-table__actions td { padding-top: 25px; padding-bottom: 26px; }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); background: var(--surface); border-radius: 18px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border: 0; background: transparent; text-align: start; font-weight: 850; cursor: pointer; }
.faq-question::after { content: "+"; font-size: 1.3rem; color: var(--primary-2); transition: .2s ease; }
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { color: var(--muted); margin: 0; padding: 0 22px 22px; }

.booking-layout { display: grid; grid-template-columns: 1fr 390px; gap: 26px; align-items: start; }
.booking-preview { position: sticky; top: 110px; border-radius: 28px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.booking-preview img { width: 100%; height: 220px; object-fit: cover; }
.booking-preview__body { padding: 24px; }
.booking-preview h3 { margin: 0 0 7px; font-size: 1.35rem; }
.booking-preview p { color: var(--muted); margin: 0 0 18px; }
.booking-preview__package { padding: 14px; border-radius: 14px; background: var(--surface-2); display: flex; justify-content: space-between; gap: 15px; font-size: .85rem; }

.toast { position: fixed; z-index: 2200; top: 102px; inset-inline-end: 22px; width: min(calc(100% - 44px), 430px); display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 16px; color: white; box-shadow: var(--shadow-md); animation: toastIn .35s ease both; }
.toast--success { background: #087d5d; }
.toast--error { background: #ad3547; }
.toast button { margin-inline-start: auto; border: 0; background: transparent; color: white; font-size: 1.2rem; cursor: pointer; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-12px); } }

.site-footer { position: relative; margin-top: 80px; background: var(--footer); color: white; overflow: hidden; }
.footer-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(54,94,255,.24), transparent 70%); inset-inline-end: -220px; top: -280px; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr .7fr .9fr 1.1fr; gap: 56px; padding: 72px 0 52px; }
.footer-brand img { width: 185px; }
.footer-brand p, .site-footer p { color: rgba(255,255,255,.62); font-size: .86rem; }
.site-footer h3 { margin: 0 0 18px; font-size: .9rem; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.68); font-size: .84rem; }
.footer-links a:hover { color: white; }
.footer-contact span { line-height: 1.5; }
.social-row { display: flex; gap: 8px; margin-top: 20px; }
.social-row a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); color: white; font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.social-row a:hover { background: white; color: #13215d; }
.newsletter-form { display: flex; padding: 5px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.06); margin-top: 18px; }
.newsletter-form input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: white; padding: 0 12px; font-size: .82rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form button { width: 38px; height: 38px; border-radius: 50%; border: 0; background: white; color: #102064; cursor: pointer; }
.footer-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.52); font-size: .75rem; }
.footer-bottom div { display: flex; gap: 20px; }
.whatsapp-float { position: fixed; z-index: 850; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #21c66b; color: white; box-shadow: 0 16px 35px rgba(0,0,0,.25); transition: .2s ease; }
html[dir="rtl"] .whatsapp-float { right: auto; left: 22px; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 27px; fill: currentColor; }

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

.admin-body { background: #f3f6fb; color: #17213f; min-height: 100vh; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.admin-sidebar { background: #071441; color: white; padding: 28px 20px; }
.admin-sidebar img { width: 160px; margin-bottom: 38px; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar a { padding: 12px 14px; border-radius: 12px; color: rgba(255,255,255,.7); font-weight: 700; }
.admin-sidebar a:hover, .admin-sidebar a.is-active { background: rgba(255,255,255,.1); color: white; }
.admin-main { padding: 34px; overflow: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h1 { margin: 0; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.admin-stat { background: white; border-radius: 18px; padding: 22px; box-shadow: 0 10px 28px rgba(15,35,85,.08); }
.admin-stat strong { display: block; font-size: 2rem; }
.admin-table-wrap { background: white; border-radius: 20px; overflow: auto; box-shadow: 0 12px 30px rgba(15,35,85,.08); margin-bottom: 28px; }
.admin-table-wrap h2 { padding: 22px 24px 0; margin: 0 0 16px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 840px; }
.admin-table th, .admin-table td { padding: 13px 16px; border-top: 1px solid #e8edf6; text-align: left; font-size: .82rem; vertical-align: top; }
.admin-table th { color: #68718a; background: #f8faff; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 80% 10%, #3155ff 0, #071441 35%, #030716 80%); }
.admin-login-card { width: min(100%, 430px); background: white; border-radius: 28px; padding: 34px; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.admin-login-card img { width: 180px; margin: 0 auto 28px; }
.admin-login-card h1 { margin: 0 0 6px; text-align: center; }
.admin-login-card p { text-align: center; color: #6c7690; margin: 0 0 24px; }
.admin-login-card .field { margin-bottom: 15px; }
.admin-error { padding: 12px 14px; border-radius: 12px; background: #ffedf0; color: #a22e43; margin-bottom: 15px; font-size: .85rem; }

@media (max-width: 1120px) {
  :root { --container: 980px; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .mobile-menu { display: block; }
  .header-actions { margin-inline-start: auto; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-visual { transform: scale(.9); transform-origin: center; }
  .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .package-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
  .package-card__actions { grid-template-columns: 1fr auto; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-cta { display: none; }
  .brand { width: 135px; }
  .language-switch { padding-inline: 10px; }
  .language-switch__icon { display: none; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; font-size: clamp(3rem, 13vw, 5.5rem); }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { min-height: 500px; width: min(100%, 620px); margin: -20px auto 0; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .search-field { border: 0; border-bottom: 1px solid var(--line); padding: 9px 12px; }
  .hero-search .button { grid-column: 1 / -1; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .experience-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 240px 240px; }
  .experience-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .experience-card:nth-child(4) { grid-column: 1 / -1; }
  .compare-showcase__inner { grid-template-columns: 1fr; padding: 46px 34px 68px; }
  .mini-compare { max-width: 560px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 38px; }
  .page-hero { min-height: 450px; padding-top: 120px; }
  .filter-form { grid-template-columns: 1fr 1fr; }
  .filter-form .button { grid-column: 1 / -1; }
  .activity-list { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media { max-width: 700px; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .tour-summary { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-preview { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .icon-button { width: 39px; height: 39px; }
  .language-switch { height: 39px; font-size: .76rem; }
  .menu-button { width: 39px; height: 39px; }
  .hero { padding-top: 102px; }
  .hero .eyebrow { justify-content: center; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-visual { min-height: 420px; transform: scale(.82); width: 120%; margin-inline: -10%; }
  .hero-globe { width: 390px; }
  .orbit { width: 480px; }
  .hero-card--one { width: 170px; height: 235px; }
  .hero-card--two { width: 190px; height: 140px; }
  .hero-card--three { width: 185px; height: 220px; }
  .hero-card--four { width: 145px; height: 115px; }
  .hero-chip { display: none; }
  .hero-search { grid-template-columns: 1fr; border-radius: 20px; }
  .hero-search .button { grid-column: auto; }
  .stats-strip { border-radius: 20px; }
  .stat { padding: 20px; }
  .stat strong { font-size: 1.45rem; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card__image { height: 245px; }
  .why-grid { grid-template-columns: 1fr; }
  .experience-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .experience-card, .experience-card:first-child, .experience-card:nth-child(4) { min-height: 260px; grid-column: auto; grid-row: auto; }
  .compare-showcase { border-radius: 28px; }
  .compare-showcase__inner { padding: 38px 24px 58px; }
  .mini-compare { grid-template-columns: 1fr; transform: none; }
  .mini-package:last-child { transform: none; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 330px; }
  .page-hero h1 { font-size: clamp(2.8rem, 16vw, 4.8rem); }
  .filter-bar { position: relative; top: auto; }
  .filter-form { grid-template-columns: 1fr; }
  .filter-form .button { grid-column: auto; }
  .filter-results { align-items: flex-start; flex-direction: column; gap: 8px; }
  .activity-card { grid-template-columns: 1fr; }
  .activity-card img { height: 210px; }
  .story-media { min-height: 410px; }
  .story-media img { height: 350px; }
  .story-media img:last-child { height: 190px; border-width: 5px; }
  .contact-info, .form-card { padding: 26px 20px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .tour-hero { min-height: 670px; padding-bottom: 40px; }
  .tour-hero__content h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .tour-hero__actions { flex-direction: column; align-items: stretch; }
  .highlight-list { grid-template-columns: 1fr; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 240px); }
  .gallery-grid figure:first-child { grid-row: auto; }
  .package-card { padding: 22px; }
  .package-feature { grid-template-columns: 76px 1fr; }
  .compare-dock { bottom: 12px; }
  .compare-dock__copy span { max-width: 190px; }
  .compare-dock .button { min-height: 42px; padding-inline: 14px; font-size: .76rem; }
  .compare-table th, .compare-table td { padding: 13px 12px; font-size: .74rem; }
  .compare-table th:first-child, .compare-table td:first-child { width: 29%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  html[dir="rtl"] .whatsapp-float { left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
