/* ========= ClickTrip — Shared styles ========= */
:root {
  --navy-900: #0A2540;
  --navy-800: #0F2F4E;
  --navy-700: #173A5E;
  --navy-50: #F3F6FB;
  --cream: #FEFBF3;
  --cream-2: #F8F2E4;
  --gold: #F59E0B;
  --gold-2: #EAB308;
  --coral: #F97360;
  --sky: #0EA5E9;
  --sky-2: #38BDF8;
  --teal: #14B8A6;
  --teal-2: #3DD9C2;
  --teal-900: #0F766E;
  --sand-1: #F5E6C8;
  --sand-2: #E8D2A0;
  --sand-3: #D4B483;
  --ink: #0A2540;
  --ink-2: #1F3A5F;
  --muted: #64748B;
  --line: #E5E9F0;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
  --shadow-md: 0 10px 30px rgba(10,37,64,0.10);
  --shadow-lg: 0 24px 60px rgba(10,37,64,0.14);
  --container: 1200px;
  --font-body: 'Heebo', 'Assistant', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'Assistant', 'Heebo', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  direction: rtl;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--sky); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-900); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); text-transform: uppercase;
  padding: 6px 12px; background: rgba(245,158,11,.12); border-radius: 999px;
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(254,251,243,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10,37,64,.06);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy-900); font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
}
.brand-name { font-family: var(--font-display); }
.brand-name b { color: var(--gold); }

.nav-links { display: flex; gap: 4px; margin-inline-start: 28px; flex: 1; }
.nav-links a {
  padding: 10px 14px; border-radius: 10px; color: var(--ink-2);
  font-weight: 600; font-size: .98rem; position: relative;
}
.nav-links a:hover { background: rgba(10,37,64,.05); color: var(--navy-900); }
.nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: ""; position: absolute; inset-inline: 14px; bottom: 4px;
  height: 3px; background: var(--gold); border-radius: 3px;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px;
  background: var(--navy-900); color: #fff !important;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 14px rgba(10,37,64,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(10,37,64,.28); background: var(--navy-800); color: #fff !important; }

.nav-burger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  align-items: center; justify-content: center;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-900); color: #E5EAF2; margin-top: 80px;
  padding: 64px 0 24px;
}
.footer a { color: #C8D2E2; }
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand-text { color: #9FADC2; font-size: .95rem; max-width: 340px; margin-top: 10px; }
.footer-bottom {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; color: #9FADC2;
  font-size: .88rem; flex-wrap: wrap; gap: 12px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px; border: 0;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--gold); color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(245,158,11,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,158,11,.55); background: var(--gold-2); }
.btn-ghost {
  background: #fff; color: var(--navy-900); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy-900); transform: translateY(-2px); }

/* ============ CARDS ============ */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 24px;
  border: 1px solid rgba(10,37,64,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ============ SUITCASE (the hero character) ============ */
.suitcase-stage {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.suitcase-wrap {
  width: 78%; max-width: 420px;
  transform-origin: 50% 95%;
  animation: case-bob 3.6s ease-in-out infinite;
  filter: drop-shadow(0 18px 26px rgba(10,37,64,.2));
}
.suitcase-shadow {
  position: absolute; bottom: 6%; left: 50%;
  width: 62%; height: 22px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10,37,64,.25), rgba(10,37,64,0) 70%);
  transform: translateX(-50%);
  animation: case-shadow 3.6s ease-in-out infinite;
}

@keyframes case-bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(1.5deg); }
}
@keyframes case-shadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .55; }
  50%      { transform: translateX(-50%) scale(.82); opacity: .3; }
}

.suitcase-wheel {
  transform-origin: center;
  animation: wheel-spin 1.6s linear infinite;
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }

.sticker { animation: sticker-wiggle 2.8s ease-in-out infinite; transform-origin: center; }
.sticker.s2 { animation-delay: -.6s; animation-duration: 3.2s; }
.sticker.s3 { animation-delay: -1.2s; animation-duration: 2.4s; }
@keyframes sticker-wiggle {
  0%,100% { transform: rotate(-4deg); }
  50%     { transform: rotate(5deg); }
}

/* Floating travel confetti around suitcase */
.floaty {
  position: absolute; font-size: 1.6rem;
  animation: floaty 6s ease-in-out infinite;
  opacity: .9;
}
@keyframes floaty {
  0%,100% { transform: translate(0,0) rotate(0); }
  25%     { transform: translate(-8px,-12px) rotate(-6deg); }
  50%     { transform: translate(6px,-22px) rotate(5deg); }
  75%     { transform: translate(-4px,-10px) rotate(-3deg); }
}

.plane-path {
  position: absolute; inset: 0; pointer-events: none;
  overflow: visible;
}
.plane {
  position: absolute; top: 10%; right: -60px;
  font-size: 1.6rem;
  animation: plane-fly 10s linear infinite;
}
@keyframes plane-fly {
  0%   { transform: translate(0, 0) rotate(-10deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(-140%, 40px) rotate(-10deg); opacity: 0; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Page hero (secondary pages) */
.page-hero {
  position: relative; padding: 80px 0 40px;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(14,165,233,.12), transparent 60%),
    radial-gradient(1000px 600px at -10% 20%, rgba(245,158,11,.10), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.page-hero .breadcrumbs {
  font-size: .88rem; color: var(--muted); margin-bottom: 10px;
}
.page-hero .breadcrumbs a { color: var(--muted); }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
}

/* Selection */
::selection { background: var(--gold); color: var(--navy-900); }

/* ============ MOUSE TRAIL ============ */
.cursor-trail {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, rgba(245,158,11,0) 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: trail-fade .9s ease-out forwards;
  mix-blend-mode: multiply;
}
@keyframes trail-fade {
  0% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(0.2); }
}

/* ============ SUITCASE EYES (character) ============ */
.eye-white { fill: #fff; }
.eye-pupil {
  fill: #0A2540;
  transform-origin: center;
  transform-box: fill-box;
  transition: transform .15s ease-out;
}
.eye-blink {
  fill: #173A5E;
  transform-origin: center;
  transform-box: fill-box;
  animation: blink 5s infinite;
  transform: scaleY(0);
}
@keyframes blink {
  0%, 96%, 100% { transform: scaleY(0); }
  97%, 99% { transform: scaleY(1); }
}
.eye-brow {
  animation: brow-dance 4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes brow-dance {
  0%, 70%, 100% { transform: translateY(0); }
  80% { transform: translateY(-2px) rotate(-3deg); }
  90% { transform: translateY(-1px) rotate(2deg); }
}
.mouth { transition: all .3s ease; }
.suitcase-wrap:hover .mouth { transform: scaleX(1.15) scaleY(1.3); }

/* ============ BEACH VIBES DECOR ============ */
.beach-band {
  position: relative;
  background: linear-gradient(180deg, #FEFBF3 0%, #FDF1D6 40%, #F5E3B0 70%, #E8D089 100%);
  overflow: hidden;
}
.wave-top {
  position: absolute; top: 0; left: 0; right: 0; height: 80px;
  background-image:
    radial-gradient(ellipse 60px 30px at 50% 100%, #FEFBF3 98%, transparent 100%);
  background-size: 120px 60px;
  background-repeat: repeat-x;
}
.sand-texture::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(139,90,20,.08) 1px, transparent 2px),
    radial-gradient(circle at 75% 70%, rgba(139,90,20,.06) 1px, transparent 2px),
    radial-gradient(circle at 45% 85%, rgba(139,90,20,.08) 1px, transparent 2px),
    radial-gradient(circle at 85% 20%, rgba(139,90,20,.07) 1px, transparent 2px);
  background-size: 30px 30px, 40px 40px, 50px 50px, 35px 35px;
  pointer-events: none;
}
.palm-leaf {
  position: absolute; opacity: .18;
  animation: sway 6s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(6deg); }
}
.sun-big {
  position: absolute; top: -60px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.5) 0%, rgba(245,158,11,0) 70%);
  animation: sun-pulse 6s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* Clean mini-icons (no emoji) */
.mini-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.2em; height: 1.2em;
}

/* Mobile nav panel */
.mobile-panel {
  display: none; position: fixed; inset: 64px 0 0 0; z-index: 79;
  background: var(--cream); padding: 24px;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block; padding: 16px 12px; font-size: 1.15rem;
  color: var(--navy-900); font-weight: 700;
  border-bottom: 1px solid var(--line);
}
