/* ============================================================
   JOY AIR TRAVELS — GLOBAL STYLESHEET
   Color: Deep Blue #2C337C | Accent Gold: #FEC041
   Font: Playfair Display (all)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --blue-deep:   #2C337C;
  --blue-mid:    #3A4290;
  --blue-light:  #4D56B8;
  --gold:        #FEC041;
  --gold-dark:   #E5A820;
  --gold-light:  #FFD280;
  --white:       #FFFFFF;
  --offwhite:    #F8FAFF;
  --text-dark:   #0D1117;
  --text-mid:    #3D5166;
  --text-light:  #6B808F;
  --border:      #E2EBF3;
  --shadow-sm:   0 2px 8px rgba(44,51,124,.08);
  --shadow-md:   0 8px 30px rgba(44,51,124,.12);
  --shadow-lg:   0 20px 60px rgba(44,51,124,.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.joy-body {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, button, select, textarea { font-family: inherit; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2           { font-family: 'Playfair Display', Georgia, serif; line-height: 1.18; font-weight: 700; }
h3, h4, h5       { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }
.display-font    { font-family: 'Playfair Display', Georgia, serif; }
.ui-font         { font-family: 'Playfair Display', Georgia, serif; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-deep); }

/* ─── Buttons ─────────────────────────────────────────────── */
.joy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition);
}
.joy-btn-primary {
  background: var(--gold); color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(254,192,65,.4);
}
.joy-btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254,192,65,.5);
}
.joy-btn-outline {
  background: transparent; color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}
.joy-btn-outline:hover {
  background: var(--blue-deep); color: var(--white);
  transform: translateY(-2px);
}
.joy-btn-white {
  background: var(--white); color: var(--blue-deep);
  box-shadow: var(--shadow-md);
}
.joy-btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-12px); }
}
@keyframes scrollBob {
  0%,100% { transform:translateY(0) scaleY(1); opacity:1; }
  50%      { transform:translateY(6px) scaleY(0.6); opacity:.4; }
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes particleDrift {
  0%   { transform:translateY(0) translateX(0); opacity:.6; }
  100% { transform:translateY(-100vh) translateX(30px); opacity:0; }
}
@keyframes pulsePing {
  0%   { transform:scale(1); opacity:.8; }
  100% { transform:scale(2.5); opacity:0; }
}
.animate-up {
  opacity:0; animation:fadeUp .7s cubic-bezier(.4,0,.2,1) forwards;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.joy-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
}
.joy-nav.scrolled {
  background: rgba(44,51,124,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 32px; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-deep); font-size: 1.2rem; font-weight: 800;
}
.nav-logo-text { color: var(--white); font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:1.15rem; }
.nav-logo-text span { color:var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav-link {
  color: rgba(255,255,255,.85); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link.has-drop { display:flex; align-items:center; gap:4px; }
.nav-actions { display:flex; align-items:center; gap:10px; margin-left:auto; }
.nav-btn-login {
  color: var(--white); border: 1.5px solid rgba(255,255,255,.4);
  padding: 7px 18px; border-radius: var(--radius-md); font-size:.88rem; font-weight:500;
  transition: var(--transition);
}
.nav-btn-login:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.nav-btn-book {
  background: var(--gold); color: var(--blue-deep);
  padding: 8px 20px; border-radius: var(--radius-md);
  font-size:.88rem; font-weight:700; font-family:'Playfair Display',Georgia,serif;
  transition: var(--transition);
}
.nav-btn-book:hover { background: var(--gold-dark); transform:translateY(-1px); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
}
.nav-currency {
  color: rgba(255,255,255,.7); font-size:.85rem; cursor:pointer;
  display:flex; align-items:center; gap:4px;
}

/* ─── HERO ──────────────────────────────────────────────── */
.joy-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-layers { position:absolute; inset:0; z-index:0; }
.hero-bg-img {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  background-color: var(--blue-deep);
  transition: transform 8s ease;
}
.joy-hero:hover .hero-bg-img { transform: scale(1.03); }
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(44,51,124,.95) 0%, rgba(44,51,124,.75) 60%, rgba(44,51,124,.5) 100%);
}
.hero-particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
.particle {
  position:absolute; border-radius:50%;
  background:rgba(254,192,65,.3);
  animation: particleDrift linear infinite;
}
.hero-content {
  position:relative; z-index:1; padding-top:90px; padding-bottom:60px;
  width:100%;
}
.hero-pretitle {
  color: var(--gold); font-size:.9rem; letter-spacing:.12em; text-transform:uppercase;
  margin-bottom:12px; font-weight:500;
}
.hero-title {
  color: var(--white); font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height:1.08; margin-bottom:16px; font-weight:800;
}
.hero-title-accent { color: var(--gold); }
.hero-subtitle {
  color: rgba(255,255,255,.8); font-size:1.1rem;
  max-width:480px; margin-bottom:36px; line-height:1.6;
}

/* ─── SEARCH BOX ─────────────────────────────────────────── */
.search-box {
  background: rgba(255,255,255,.98);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; max-width:1100px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.3);
}
.search-tabs {
  display:flex; background: var(--blue-deep); padding:0 20px; gap:4px;
}
.stab {
  color:rgba(255,255,255,.65); background:none; border:none;
  padding:14px 18px; font-size:.88rem; font-weight:500; cursor:pointer;
  border-bottom:3px solid transparent; transition:var(--transition);
  display:flex; align-items:center; gap:6px;
}
.stab.active, .stab:hover { color:var(--white); border-bottom-color:var(--gold); }
.stab.active { color:var(--gold); }
.search-form { padding:20px 20px 16px; }
.sform-row {
  display:flex; gap:8px; align-items:flex-end; flex-wrap:wrap;
}
.sfield {
  flex:1; min-width:140px; position:relative;
}
.sfield label {
  display:block; font-size:.75rem; font-weight:600; color:var(--text-light);
  text-transform:uppercase; letter-spacing:.06em; margin-bottom:5px;
}
.sfield input[type="text"],
.sfield input[type="date"] {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:var(--radius-sm);
  font-size:.92rem; color:var(--text-dark); background:var(--offwhite);
  transition:var(--transition); outline:none;
}
.sfield input:focus {
  border-color:var(--blue-light); background:var(--white);
  box-shadow:0 0 0 3px rgba(14,79,122,.12);
}
.swap-btn {
  width:38px; height:38px; border-radius:50%;
  background:var(--blue-deep); color:var(--white); border:none;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; flex-shrink:0; margin-bottom:1px;
  transition:var(--transition);
}
.swap-btn:hover { background:var(--gold); color:var(--blue-deep); transform:rotate(180deg); }
.swap-btn.swapped { transform:rotate(180deg); }
.search-submit-btn {
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--blue-deep); border:none; border-radius:var(--radius-md);
  padding:11px 28px; font-family:'Playfair Display',Georgia,serif; font-weight:700;
  font-size:1rem; cursor:pointer; display:flex; align-items:center; gap:8px;
  white-space:nowrap; transition:var(--transition); flex-shrink:0;
  box-shadow:0 4px 15px rgba(254,192,65,.4);
}
.search-submit-btn:hover {
  transform:translateY(-2px); box-shadow:0 8px 25px rgba(254,192,65,.5);
}
/* Passenger dropdown */
.pax-btn {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:var(--radius-sm);
  background:var(--offwhite); color:var(--text-dark); font-size:.92rem;
  cursor:pointer; display:flex; align-items:center; justify-content:space-between;
  transition:var(--transition); text-align:left;
}
.pax-btn:hover { border-color:var(--blue-light); }
.pax-dropdown {
  position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:100;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-md); padding:16px;
  box-shadow:var(--shadow-lg); display:none;
}
.pax-dropdown.show { display:block; }
.pax-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid var(--border);
}
.pax-row:last-of-type { border-bottom:none; }
.pax-row b { font-size:.9rem; }
.pax-row small { display:block; color:var(--text-light); font-size:.75rem; }
.pax-ctrl { display:flex; align-items:center; gap:12px; }
.pax-ctrl button {
  width:30px; height:30px; border-radius:50%;
  border:1.5px solid var(--border); background:var(--white);
  cursor:pointer; font-size:1.1rem; font-weight:600; color:var(--blue-deep);
  transition:var(--transition); line-height:1;
}
.pax-ctrl button:hover { background:var(--blue-deep); color:var(--white); border-color:var(--blue-deep); }
.pax-ctrl span { font-weight:700; min-width:20px; text-align:center; }
.cabin-select {
  width:100%; margin-top:10px; padding:9px 12px;
  border:1.5px solid var(--border); border-radius:var(--radius-sm);
  background:var(--offwhite); font-size:.9rem; cursor:pointer;
}
/* Autocomplete */
.autocomplete-list {
  position:absolute; top:calc(100% + 4px); left:0; right:0; z-index:200;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  display:none; max-height:260px; overflow-y:auto;
}
.autocomplete-list.show { display:block; }
.ac-item {
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; cursor:pointer; border-bottom:1px solid var(--border);
  transition:background .15s;
}
.ac-item:last-child { border-bottom:none; }
.ac-item:hover { background:var(--offwhite); }
.ac-code {
  font-weight:800; color:var(--blue-deep); font-size:.9rem;
  min-width:38px; font-family:'Playfair Display',Georgia,serif;
}
.ac-name { font-weight:600; font-size:.85rem; flex:1; }
.ac-airport { font-size:.75rem; color:var(--text-light); white-space:nowrap; }

/* ─── HERO STATS ─────────────────────────────────────────── */
.hero-stats {
  display:flex; align-items:center; gap:30px; margin-top:28px; flex-wrap:wrap;
}
.hstat {
  display:flex; flex-direction:column;
}
.hstat-num {
  color:var(--gold); font-family:'Playfair Display',Georgia,serif; font-weight:800;
  font-size:2rem; line-height:1;
}
.hstat span { color:rgba(255,255,255,.7); font-size:.82rem; margin-top:2px; }
.hstat-div { width:1px; height:40px; background:rgba(255,255,255,.2); }

/* ─── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-indicator {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:1;
}
.scroll-dot {
  width:28px; height:46px; border:2px solid rgba(255,255,255,.4);
  border-radius:14px; position:relative;
}
.scroll-dot::after {
  content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; background:var(--gold); border-radius:2px;
  animation:scrollBob 1.5s ease infinite;
}

/* ─── AIRLINES STRIP ─────────────────────────────────────── */
.airlines-strip {
  background:var(--white); border-top:1px solid var(--border);
  border-bottom:1px solid var(--border); padding:20px 0; overflow:hidden;
}
.strip-label {
  text-align:center; color:var(--text-light); font-size:.8rem;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px;
}
.airlines-scroll {
  display:flex; gap:32px; width:max-content;
  animation:marquee 30s linear infinite;
}
.airlines-scroll:hover { animation-play-state:paused; }
.airline-logo-item {
  display:flex; align-items:center; flex-shrink:0; opacity:.6;
  transition:opacity .3s; filter:grayscale(1);
}
.airline-logo-item:hover { opacity:1; filter:none; }
.airline-logo-item img { height:30px; width:auto; }

/* ─── SECTIONS ──────────────────────────────────────────── */
.joy-section { padding:90px 0; }
.bg-dark-blue { background:var(--blue-deep); }
.bg-light-blue { background:linear-gradient(135deg,#f0f6ff 0%,#e8f2ff 100%); }
.section-header { text-align:center; margin-bottom:52px; }
.section-header.light .section-title,
.section-header.light .section-sub { color:var(--white); }
.section-eyebrow {
  display:inline-block; color:var(--blue-light); font-size:.82rem;
  font-weight:700; text-transform:uppercase; letter-spacing:.12em;
  margin-bottom:10px;
}
.bg-dark-blue .section-eyebrow { color:var(--gold); }
.section-title {
  font-size:clamp(1.9rem,4vw,3rem); color:var(--text-dark);
  margin-bottom:12px; line-height:1.15;
}
.section-sub { color:var(--text-light); font-size:1rem; max-width:560px; margin:0 auto; }

/* ─── DEAL CARDS ─────────────────────────────────────────── */
.deals-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px;
}
.deal-card { cursor:pointer; }
.deal-card-inner {
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); overflow:hidden;
  transition:var(--transition); border:1px solid var(--border);
}
.deal-card-inner:hover {
  transform:translateY(-6px); box-shadow:var(--shadow-lg);
  border-color:var(--gold);
}
.deal-img-wrap { position:relative; height:180px; overflow:hidden; }
.deal-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.deal-card-inner:hover .deal-img-wrap img { transform:scale(1.06); }
.deal-img-placeholder {
  width:100%; height:100%; background:linear-gradient(135deg,var(--blue-deep),var(--blue-light));
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; color:rgba(255,255,255,.3);
}
.deal-badge {
  position:absolute; top:12px; left:12px;
  background:var(--gold); color:var(--blue-deep);
  padding:4px 10px; border-radius:20px; font-size:.72rem; font-weight:800;
  letter-spacing:.05em; text-transform:uppercase;
}
.deal-disc-badge {
  position:absolute; top:12px; right:12px;
  background:#e74c3c; color:#fff;
  padding:4px 10px; border-radius:20px; font-size:.72rem; font-weight:800;
}
.deal-body { padding:16px; }
.deal-route {
  display:flex; align-items:center; gap:8px; margin-bottom:6px;
}
.deal-code {
  background:var(--offwhite); color:var(--blue-deep);
  font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1rem;
  padding:4px 10px; border-radius:6px;
}
.deal-arrow { color:var(--text-light); font-size:1.1rem; }
.deal-title { font-weight:600; font-size:.88rem; color:var(--text-dark); margin-bottom:4px; }
.deal-airline { font-size:.78rem; color:var(--text-light); margin-bottom:10px; }
.deal-footer { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:6px; }
.deal-price-wrap { display:flex; align-items:baseline; gap:6px; }
.deal-orig { text-decoration:line-through; color:var(--text-light); font-size:.82rem; }
.deal-price { color:var(--blue-deep); font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.3rem; }
.deal-type-badge {
  font-size:.72rem; font-weight:700; padding:3px 9px; border-radius:20px;
}
.deal-type-badge.rt { background:#e8f4ff; color:var(--blue-light); }
.deal-type-badge.ow { background:#fff3e0; color:#e67e22; }
.deal-expires { font-size:.74rem; color:#e74c3c; margin-top:6px; }

/* ─── FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px;
}
.feature-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:32px;
  transition:var(--transition);
}
.feature-card:hover {
  background:rgba(255,255,255,.1); border-color:rgba(254,192,65,.3);
  transform:translateY(-4px);
}
.fc-icon {
  width:56px; height:56px; background:rgba(254,192,65,.15);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; color:var(--gold); margin-bottom:16px;
  border:1px solid rgba(254,192,65,.2);
}
.feature-card h3 { color:var(--white); font-size:1.05rem; margin-bottom:10px; }
.feature-card p { color:rgba(255,255,255,.65); font-size:.88rem; line-height:1.65; }

/* ─── PACKAGES GRID ──────────────────────────────────────── */
.packages-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px;
}
.pkg-card { border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); }
.pkg-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.pkg-card-link { display:block; background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--border); }
.pkg-img-wrap { position:relative; height:220px; overflow:hidden; }
.pkg-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.pkg-card:hover .pkg-img-wrap img { transform:scale(1.08); }
.pkg-img-placeholder {
  width:100%; height:100%; background:linear-gradient(135deg,var(--blue-deep),var(--blue-light));
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; color:rgba(255,255,255,.3);
}
.pkg-overlay {
  position:absolute; inset:0; background:linear-gradient(to top,rgba(44,51,124,.8),transparent 60%);
  display:flex; align-items:flex-end; padding:16px;
}
.pkg-category {
  background:var(--gold); color:var(--blue-deep);
  padding:4px 12px; border-radius:20px; font-size:.72rem; font-weight:800;
  text-transform:uppercase; letter-spacing:.08em;
}
.pkg-disc-badge {
  position:absolute; top:12px; right:12px;
  background:#e74c3c; color:#fff;
  padding:5px 12px; border-radius:20px; font-size:.76rem; font-weight:800;
}
.pkg-body { padding:20px; }
.pkg-meta { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.pkg-dest { font-size:.78rem; color:var(--blue-light); font-weight:600; }
.pkg-duration { font-size:.78rem; color:var(--text-light); }
.pkg-title { font-size:1.05rem; font-weight:700; color:var(--text-dark); margin-bottom:6px; }
.pkg-desc { font-size:.82rem; color:var(--text-light); line-height:1.6; margin-bottom:14px; }
.pkg-footer { display:flex; align-items:center; justify-content:space-between; }
.pkg-orig { text-decoration:line-through; color:var(--text-light); font-size:.8rem; margin-right:4px; }
.pkg-price { color:var(--blue-deep); font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.4rem; }
.pkg-per { color:var(--text-light); font-size:.78rem; }
.pkg-cta {
  color:var(--gold); font-weight:700; font-size:.85rem;
  display:flex; align-items:center; gap:4px; transition:gap .2s;
}
.pkg-card:hover .pkg-cta { gap:8px; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-carousel {
  position:relative; min-height:260px; max-width:800px; margin:0 auto;
}
.tcard {
  position:absolute; inset:0; opacity:0; transition:opacity .5s; pointer-events:none;
}
.tcard.active { opacity:1; pointer-events:auto; }
.tcard-inner {
  background:var(--white); border-radius:var(--radius-xl);
  box-shadow:var(--shadow-md); padding:40px 44px;
  border:1px solid var(--border); position:relative;
}
.tcard-quote { font-size:3rem; color:var(--gold); line-height:1; margin-bottom:12px; }
.tcard-text { font-size:1.05rem; color:var(--text-mid); line-height:1.7; margin-bottom:20px; font-style:italic; }
.tcard-stars { color:var(--gold); margin-bottom:16px; font-size:1rem; gap:3px; display:flex; }
.tcard-author { display:flex; align-items:center; gap:14px; }
.tcard-avatar img,
.avatar-initials {
  width:48px; height:48px; border-radius:50%; object-fit:cover;
}
.avatar-initials {
  background:var(--blue-deep); color:var(--white);
  font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
}
.tcard-author strong { display:block; font-weight:700; font-size:.95rem; }
.tcard-author span { color:var(--text-light); font-size:.8rem; display:block; }
.tcard-author em { color:var(--blue-light); font-size:.78rem; font-style:normal; display:block; }
.testimonials-nav { display:flex; gap:8px; justify-content:center; margin-top:24px; }
.tnav-dot {
  width:10px; height:10px; border-radius:50%; border:none;
  background:var(--border); cursor:pointer; transition:var(--transition);
}
.tnav-dot.active { background:var(--blue-deep); transform:scale(1.3); }

/* ─── BLOG GRID ──────────────────────────────────────────── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }
.blog-card {
  display:block; background:var(--white); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--border);
  transition:var(--transition);
}
.blog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.blog-img-wrap { position:relative; height:200px; overflow:hidden; }
.blog-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.blog-card:hover .blog-img-wrap img { transform:scale(1.06); }
.blog-img-placeholder {
  width:100%; height:100%; background:linear-gradient(135deg,#e8f2ff,#c5ddf0);
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; color:var(--blue-light);
}
.blog-cat {
  position:absolute; bottom:12px; left:12px;
  background:var(--gold); color:var(--blue-deep);
  padding:3px 10px; border-radius:20px; font-size:.72rem; font-weight:800;
}
.blog-body { padding:20px; }
.blog-meta { display:flex; gap:14px; color:var(--text-light); font-size:.76rem; margin-bottom:10px; }
.blog-title { font-size:.95rem; font-weight:700; color:var(--text-dark); margin-bottom:8px; }
.blog-excerpt { font-size:.82rem; color:var(--text-light); line-height:1.6; margin-bottom:14px; }
.blog-read-more { color:var(--blue-light); font-size:.82rem; font-weight:600; display:flex; align-items:center; gap:4px; }
.blog-card:hover .blog-read-more { color:var(--blue-deep); gap:8px; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  position:relative; padding:80px 0; overflow:hidden;
}
.nl-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg,var(--blue-deep) 0%,var(--blue-mid) 60%,#2C337C 100%);
}
.nl-bg::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.nl-content {
  position:relative; z-index:1; text-align:center; max-width:620px; margin:0 auto;
}
.nl-icon { font-size:3rem; color:var(--gold); margin-bottom:16px; }
.nl-content h2 { color:var(--white); font-size:2rem; margin-bottom:10px; }
.nl-content p { color:rgba(255,255,255,.75); margin-bottom:28px; }
.nl-form {
  display:flex; gap:0; max-width:480px; margin:0 auto;
  background:rgba(255,255,255,.12); border-radius:var(--radius-md);
  border:1px solid rgba(255,255,255,.2); overflow:hidden;
  backdrop-filter:blur(10px);
}
.nl-form input {
  flex:1; padding:14px 20px; background:none; border:none;
  color:var(--white); font-size:.9rem; outline:none;
}
.nl-form input::placeholder { color:rgba(255,255,255,.5); }
.nl-form button {
  background:var(--gold); color:var(--blue-deep); border:none;
  padding:14px 24px; font-family:'Playfair Display',Georgia,serif; font-weight:700;
  font-size:.9rem; cursor:pointer; white-space:nowrap; transition:var(--transition);
  display:flex; align-items:center; gap:6px;
}
.nl-form button:hover { background:var(--gold-dark); }
.nl-note { color:rgba(255,255,255,.45); font-size:.76rem; margin-top:12px; }

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem; box-shadow:0 4px 20px rgba(37,211,102,.5);
  transition:var(--transition);
}
.whatsapp-fab:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,.7); }
.wa-pulse {
  position:absolute; width:100%; height:100%; border-radius:50%;
  background:#25D366; animation:pulsePing 2s ease infinite; z-index:-1;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.joy-footer {
  background:var(--text-dark); color:rgba(255,255,255,.75);
  padding-top:70px; padding-bottom:28px;
}
.footer-top {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:40px; padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width:320px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo .nav-logo-icon { width:36px; height:36px; }
.footer-brand p { font-size:.86rem; line-height:1.7; color:rgba(255,255,255,.55); margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; }
.footer-social {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:center; font-size:1rem;
  transition:var(--transition);
}
.footer-social:hover { background:var(--gold); color:var(--blue-deep); transform:translateY(-2px); }
.footer-col h4 { color:var(--white); font-size:.9rem; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col a { color:rgba(255,255,255,.55); font-size:.85rem; transition:color .2s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; font-size:.8rem; color:rgba(255,255,255,.35); flex-wrap:wrap; gap:10px;
}
.footer-payments { display:flex; gap:8px; align-items:center; }
.fpay {
  background:rgba(255,255,255,.08); border-radius:6px;
  padding:4px 10px; font-size:.75rem; color:rgba(255,255,255,.5);
}

/* ─── FLASH MESSAGES ─────────────────────────────────────── */
.flash-message {
  position:fixed; top:80px; right:20px; z-index:2000;
  background:var(--white); border-left:4px solid #2ecc71;
  padding:14px 20px; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  font-size:.9rem; font-weight:500; max-width:380px;
  animation:fadeUp .4s ease;
}
.flash-message.error { border-color:#e74c3c; }

/* ─── RESULTS PAGE ───────────────────────────────────────── */
.results-wrap { display:flex; gap:28px; margin-top:24px; }
.filter-sidebar {
  width:260px; flex-shrink:0;
}
.filter-card {
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); border:1px solid var(--border);
  padding:20px; margin-bottom:16px;
}
.filter-card h5 { font-size:.9rem; font-weight:700; margin-bottom:14px; color:var(--text-dark); }
.filter-results { flex:1; min-width:0; }
.flight-card {
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); border:1px solid var(--border);
  padding:20px; margin-bottom:16px; transition:var(--transition);
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.flight-card:hover { box-shadow:var(--shadow-md); border-color:var(--blue-light); }
.flight-airline { display:flex; align-items:center; gap:10px; min-width:140px; }
.flight-airline img { width:50px; height:25px; object-fit:contain; }
.flight-airline-name { font-size:.82rem; font-weight:600; }
.flight-route { flex:1; display:flex; align-items:center; gap:14px; }
.flight-time-block { text-align:center; }
.flight-time { font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.3rem; color:var(--text-dark); }
.flight-airport { font-size:.76rem; color:var(--text-light); }
.flight-path { flex:1; display:flex; flex-direction:column; align-items:center; }
.flight-duration { font-size:.76rem; color:var(--text-light); margin-bottom:4px; }
.flight-line { width:100%; height:1px; background:var(--border); position:relative; }
.flight-line::after { content:'✈'; position:absolute; top:-7px; right:-2px; font-size:.8rem; color:var(--blue-light); }
.flight-stops { font-size:.72rem; color:var(--text-light); margin-top:4px; }
.flight-stops.non-stop { color:#2ecc71; font-weight:600; }
.flight-price-block { text-align:right; min-width:120px; }
.flight-price { font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.6rem; color:var(--blue-deep); }
.flight-price-note { font-size:.72rem; color:var(--text-light); }
.flight-book-btn {
  background:var(--gold); color:var(--blue-deep);
  border:none; border-radius:var(--radius-md);
  padding:10px 20px; font-family:'Playfair Display',Georgia,serif; font-weight:700;
  cursor:pointer; transition:var(--transition); font-size:.9rem;
}
.flight-book-btn:hover { background:var(--gold-dark); transform:translateY(-2px); }

/* ─── ADMIN ──────────────────────────────────────────────── */
.admin-layout { display:flex; min-height:100vh; }
.admin-sidebar {
  width:250px; background:var(--blue-deep); flex-shrink:0;
  position:fixed; top:0; left:0; bottom:0; overflow-y:auto; z-index:100;
  display:flex; flex-direction:column;
}
.admin-sidebar-logo {
  padding:24px 20px; border-bottom:1px solid rgba(255,255,255,.08);
}
.admin-nav { flex:1; padding:16px 0; }
.admin-nav-section { padding:8px 20px 4px; color:rgba(255,255,255,.35); font-size:.68rem; text-transform:uppercase; letter-spacing:.1em; }
.admin-nav a {
  display:flex; align-items:center; gap:10px;
  padding:10px 20px; color:rgba(255,255,255,.7);
  font-size:.88rem; transition:var(--transition); border-left:3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  background:rgba(255,255,255,.08); color:var(--white);
  border-left-color:var(--gold);
}
.admin-nav a.active { background:rgba(254,192,65,.1); color:var(--gold); }
.admin-nav a i { font-size:1.1rem; min-width:20px; }
.admin-main { margin-left:250px; flex:1; background:var(--offwhite); min-height:100vh; }
.admin-topbar {
  background:var(--white); border-bottom:1px solid var(--border);
  padding:0 28px; height:60px; display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; z-index:50; box-shadow:var(--shadow-sm);
}
.admin-topbar h1 { font-size:1.1rem; font-weight:700; color:var(--text-dark); }
.admin-content { padding:28px; }
.stat-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; margin-bottom:28px; }
.stat-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:22px; box-shadow:var(--shadow-sm); border:1px solid var(--border);
  display:flex; align-items:center; gap:16px; min-width:0;
}
.stat-icon {
  width:50px; height:50px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
  flex-shrink:0;
}
.stat-icon.blue { background:#e8f4ff; color:var(--blue-light); }
.stat-icon.gold { background:#fff8e6; color:var(--gold-dark); }
.stat-icon.green { background:#e6f9f0; color:#27ae60; }
.stat-icon.red { background:#fef0ee; color:#e74c3c; }
.stat-info { min-width:0; flex:1; }
.stat-value { font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:clamp(.95rem,2vw,1.5rem); color:var(--text-dark); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.stat-label { font-size:.78rem; color:var(--text-light); white-space:nowrap; }
.admin-card {
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); border:1px solid var(--border);
  overflow:hidden; margin-bottom:24px;
}
.admin-card-header {
  padding:16px 22px; border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
}
.admin-card-header h3 { font-size:1rem; font-weight:700; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th {
  background:var(--offwhite); padding:11px 16px;
  font-size:.76rem; text-transform:uppercase; letter-spacing:.06em;
  color:var(--text-light); text-align:left; border-bottom:1px solid var(--border);
}
.admin-table td { padding:13px 16px; font-size:.88rem; border-bottom:1px solid var(--border); vertical-align:middle; }
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:var(--offwhite); }
.status-badge {
  padding:4px 10px; border-radius:20px; font-size:.72rem; font-weight:700; text-transform:capitalize;
}
.status-badge.confirmed { background:#e6f9f0; color:#27ae60; }
.status-badge.pending   { background:#fff3e0; color:#e67e22; }
.status-badge.cancelled { background:#fef0ee; color:#e74c3c; }
.status-badge.completed { background:#e8f4ff; color:var(--blue-light); }
.btn-sm-admin {
  padding:5px 12px; border-radius:var(--radius-sm); font-size:.76rem;
  font-weight:600; cursor:pointer; border:none; transition:var(--transition);
  display:inline-flex; align-items:center; gap:4px;
}
.btn-view   { background:#e8f4ff; color:var(--blue-light); }
.btn-edit   { background:#fff8e6; color:var(--gold-dark); }
.btn-delete { background:#fef0ee; color:#e74c3c; }
.btn-view:hover   { background:var(--blue-light); color:#fff; }
.btn-edit:hover   { background:var(--gold-dark); color:#fff; }
.btn-delete:hover { background:#e74c3c; color:#fff; }
.admin-form-wrap { padding:24px; max-width:760px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.82rem; font-weight:600; color:var(--text-mid); margin-bottom:6px; }
.form-control {
  width:100%; padding:11px 14px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:.9rem; outline:none;
  transition:border-color .2s; background:var(--white);
}
.form-control:focus { border-color:var(--blue-light); box-shadow:0 0 0 3px rgba(14,79,122,.1); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-actions { display:flex; gap:12px; margin-top:24px; padding-top:20px; border-top:1px solid var(--border); }
.btn-save { background:var(--blue-deep); color:#fff; padding:11px 24px; border:none; border-radius:var(--radius-md); font-weight:700; cursor:pointer; font-size:.9rem; }
.btn-save:hover { background:var(--blue-mid); }
.btn-cancel { background:var(--offwhite); color:var(--text-mid); padding:11px 24px; border:1.5px solid var(--border); border-radius:var(--radius-md); font-weight:600; cursor:pointer; font-size:.9rem; }
.revenue-chart { padding:20px 24px; }
.admin-chart-bar { display:flex; align-items:flex-end; gap:12px; height:180px; }
.chart-col { flex:1; display:flex; flex-direction:column; align-items:center; gap:6px; }
.chart-bar { width:100%; border-radius:6px 6px 0 0; background:var(--blue-light); transition:var(--transition); cursor:pointer; }
.chart-bar:hover { background:var(--gold); }
.chart-label { font-size:.7rem; color:var(--text-light); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1024px) {
  .footer-top { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links, .nav-actions { display:none; }
  .nav-mobile-btn { display:flex; }
  .joy-hero { min-height:auto; padding:120px 0 60px; }
  .hero-title { font-size:2.4rem; }
  .sform-row { flex-direction:column; }
  .sfield { min-width:unset; }
  .search-submit-btn { width:100%; justify-content:center; }
  .results-wrap { flex-direction:column; }
  .filter-sidebar { width:100%; }
  .admin-sidebar { transform:translateX(-100%); transition:transform .3s; }
  .admin-sidebar.open { transform:translateX(0); }
  .admin-main { margin-left:0; }
  .footer-top { grid-template-columns:1fr; }
  .hero-stats { gap:16px; }
  .features-grid, .packages-grid, .blog-grid, .deals-grid { grid-template-columns:1fr; }
  .tcard-inner { padding:24px; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .joy-section { padding:60px 0; }
  .section-title { font-size:1.7rem; }
  .whatsapp-fab { bottom:16px; right:16px; }
  .nl-form { flex-direction:column; border-radius:var(--radius-md); }
  .nl-form button { border-radius:0 0 var(--radius-md) var(--radius-md); }
}

/* ============================================================
   HERO IMAGE SLIDER
   ============================================================ */
.hero-slides { position:absolute; inset:0; z-index:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  background-color:#2C337C; /* solid fallback if image blocked */
  opacity:0; transition:opacity 1.4s ease-in-out;
  animation:kenBurns 12s ease-in-out infinite alternate;
}
.hero-slide.active { opacity:1; }
@keyframes kenBurns {
  0%   { transform:scale(1)    translateX(0)   translateY(0); }
  100% { transform:scale(1.08) translateX(-1%) translateY(-1%); }
}
/* Layered gradient overlay — richer than before */
.hero-overlay-v2 {
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(
    160deg,
    rgba(44,51,124,.88) 0%,
    rgba(44,51,124,.65) 45%,
    rgba(44,51,124,.45) 70%,
    rgba(28,33,90,.75) 100%
  );
}
/* Bottom vignette so text always readable */
.hero-vignette {
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  height:260px;
  background:linear-gradient(to top, rgba(44,51,124,.7) 0%, transparent 100%);
}

/* Slide indicators */
.hero-dots {
  position:absolute; bottom:100px; left:50%;
  transform:translateX(-50%); z-index:10;
  display:flex; gap:10px; align-items:center;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.35); border:none; padding:0; cursor:pointer;
  transition:all .4s;
}
.hero-dot.active {
  background:var(--gold); width:26px; border-radius:4px;
}

/* Destination label */
.hero-dest-label {
  position:absolute; bottom:140px; right:32px; z-index:10;
  background:rgba(255,255,255,.12); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.2); border-radius:40px;
  padding:6px 16px; color:#fff; font-size:.78rem; font-weight:600;
  display:flex; align-items:center; gap:6px;
  opacity:0; transition:opacity .6s .3s;
  font-family:'Playfair Display', Georgia, serif;
}
.hero-dest-label.show { opacity:1; }
.hero-dest-label i { color:var(--gold); }

/* Slider arrows */
.hero-arrow {
  position:absolute; top:50%; z-index:10;
  transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.12); backdrop-filter:blur(10px);
  border:1.5px solid rgba(255,255,255,.25);
  color:#fff; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .3s; opacity:0;
}
.joy-hero:hover .hero-arrow { opacity:1; }
.hero-arrow:hover { background:rgba(255,255,255,.25); transform:translateY(-50%) scale(1.08); }
.hero-arrow.prev { left:20px; }
.hero-arrow.next { right:20px; }

/* ─── Improved hero typography ─────────────────────────────── */
.hero-pretitle {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(254,192,65,.15); border:1px solid rgba(254,192,65,.3);
  border-radius:30px; padding:6px 16px;
  color:var(--gold); font-size:.82rem; letter-spacing:.1em;
  text-transform:uppercase; margin-bottom:18px; font-weight:600;
}
.hero-title {
  font-family:'Playfair Display', Georgia, serif;
  color:var(--white); font-size:clamp(2.8rem, 6.5vw, 5.2rem);
  line-height:1.1; margin-bottom:18px; font-weight:800;
}
.hero-title-accent {
  color:var(--gold);
  font-style:italic;
}
.hero-subtitle {
  color:rgba(255,255,255,.82); font-size:1.08rem;
  max-width:500px; margin-bottom:36px; line-height:1.7;
  font-family:'Playfair Display', Georgia, serif;
}

/* ─── Improved section titles ───────────────────────────────── */
.section-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(2rem, 4vw, 3rem); color:var(--text-dark);
  margin-bottom:12px; line-height:1.2;
}
.bg-dark-blue .section-title { color:var(--white); }
.section-eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  color:var(--blue-light); font-size:.8rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.14em; margin-bottom:10px;
  font-family:'Playfair Display', Georgia, serif;
}
.bg-dark-blue .section-eyebrow { color:var(--gold); }

/* ─── Improved search box ───────────────────────────────────── */
.search-box {
  background:rgba(255,255,255,.97);
  border-radius:var(--radius-xl); box-shadow:0 32px 80px rgba(0,0,0,.3);
  overflow:hidden; max-width:1100px;
  border:1px solid rgba(255,255,255,.6);
}
.search-tabs {
  display:flex; background:var(--blue-deep); padding:0 24px; gap:4px;
  border-bottom:2px solid rgba(255,255,255,.08);
}
.stab {
  color:rgba(255,255,255,.6); background:none; border:none;
  padding:15px 20px; font-size:.86rem; font-weight:600;
  cursor:pointer; border-bottom:3px solid transparent;
  transition:var(--transition); display:flex; align-items:center; gap:6px;
  font-family:'Playfair Display', Georgia, serif; letter-spacing:.02em;
}
.stab.active { color:var(--gold); border-bottom-color:var(--gold); }
.stab:hover:not(.active) { color:#fff; border-bottom-color:rgba(255,255,255,.3); }
.search-submit-btn {
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color:var(--blue-deep); border:none; border-radius:var(--radius-md);
  padding:13px 32px; font-family:'Playfair Display', Georgia, serif; font-weight:800;
  font-size:.95rem; cursor:pointer;
  display:flex; align-items:center; gap:8px; white-space:nowrap;
  transition:var(--transition); flex-shrink:0;
  box-shadow:0 4px 20px rgba(254,192,65,.5);
  letter-spacing:.02em;
}
.search-submit-btn:hover {
  transform:translateY(-2px); box-shadow:0 10px 32px rgba(254,192,65,.6);
}

/* ─── Improved feature cards ────────────────────────────────── */
.feature-card {
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg); padding:36px 32px;
  transition:var(--transition); position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(254,192,65,.05), transparent);
  opacity:0; transition:opacity .4s;
}
.feature-card:hover::before { opacity:1; }
.feature-card:hover {
  background:rgba(255,255,255,.09); border-color:rgba(254,192,65,.35);
  transform:translateY(-6px);
}
.fc-icon {
  width:60px; height:60px;
  background:linear-gradient(135deg, rgba(254,192,65,.2), rgba(254,192,65,.08));
  border-radius:16px; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--gold); margin-bottom:18px;
  border:1px solid rgba(254,192,65,.25);
}
.feature-card h3 { color:var(--white); font-size:1.05rem; margin-bottom:10px; font-family:'Playfair Display',Georgia,serif; }
.feature-card p  { color:rgba(255,255,255,.62); font-size:.87rem; line-height:1.7; }

/* ─── Improved package cards ────────────────────────────────── */
.pkg-card-link {
  box-shadow:0 4px 20px rgba(44,51,124,.1);
  transition:var(--transition);
}
.pkg-card:hover .pkg-card-link {
  box-shadow:0 20px 60px rgba(44,51,124,.2);
}
.pkg-title { font-family:'Playfair Display', Georgia, serif; font-size:1.1rem; }

/* ─── Improved deal cards ───────────────────────────────────── */
.deal-title { font-family:'Playfair Display', Georgia, serif; font-size:.9rem; }

/* ─── Hero stats refresh ────────────────────────────────────── */
.hero-stats { display:flex; align-items:center; gap:32px; margin-top:32px; flex-wrap:wrap; }
.hstat { display:flex; flex-direction:column; }
.hstat-num {
  color:var(--gold); font-family:'Playfair Display', Georgia, serif;
  font-weight:700; font-size:2.2rem; line-height:1;
}
.hstat span { color:rgba(255,255,255,.65); font-size:.8rem; margin-top:3px; }
.hstat-div { width:1px; height:44px; background:rgba(255,255,255,.18); }

/* ============================================================
   GLOBAL UI/UX IMPROVEMENTS — Travel Experience Polish
   ============================================================ */

/* ─── Page wrapper — correct top padding for fixed nav ─── */
body.joy-body > *:not(#joyNav):not(.jnav-mobile):not(.whatsapp-fab) {
  /* individual pages set their own top padding */
}
.page-top-pad { padding-top: 72px; }

/* ─── Inner page hero — reusable for all inner pages ─── */
.inner-hero {
  padding: 110px 0 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0d4a7a 50%, #0a3560 100%);
}
.inner-hero::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50v-5h-2v5h-5v2h5v5h2v-5h5v-2h-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.inner-hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:80px;
  background: linear-gradient(to bottom, transparent, var(--offwhite));
}
.inner-hero .container { position:relative; z-index:1; }
.inner-hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(254,192,65,.15); border:1px solid rgba(254,192,65,.3);
  border-radius:30px; padding:6px 16px; color:var(--gold);
  font-size:.78rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.12em; margin-bottom:14px;
}
.inner-hero h1 {
  font-family:'Playfair Display', Georgia, serif;
  color:#fff; font-size:clamp(2rem,5vw,3.2rem);
  margin-bottom:10px; line-height:1.15;
}
.inner-hero p { color:rgba(255,255,255,.72); font-size:1rem; max-width:520px; }

/* ─── Scroll reveal animation ─── */
.reveal {
  opacity:0; transform:translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ─── Improved cards — universal hover ─── */
.joy-card {
  background:#fff; border-radius:var(--radius-lg);
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow:hidden;
}
.joy-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(254,192,65,.3);
}

/* ─── Page breadcrumb ─── */
.page-breadcrumb {
  display:flex; align-items:center; gap:6px;
  font-size:.78rem; color:rgba(255,255,255,.55);
  margin-bottom:14px;
}
.page-breadcrumb a { color:rgba(255,255,255,.55); transition:color .2s; }
.page-breadcrumb a:hover { color:var(--gold); }
.page-breadcrumb i { font-size:.6rem; color:rgba(255,255,255,.3); }

/* ─── Better form controls ─── */
.form-control, .form-select {
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  padding:11px 14px;
  font-size:.88rem;
  font-family:'Playfair Display', Georgia, serif;
  transition:border-color .2s, box-shadow .2s;
  background:var(--offwhite);
}
.form-control:focus, .form-select:focus {
  border-color:var(--blue-light);
  box-shadow:0 0 0 3px rgba(14,79,122,.1);
  background:#fff; outline:none;
}
.form-label { font-size:.78rem; font-weight:700; color:var(--text-mid); letter-spacing:.04em; }

/* ─── Improved flight cards ─── */
.flight-card {
  background:#fff; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); border:1px solid var(--border);
  padding:22px 24px; margin-bottom:14px;
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  transition:all .3s ease; position:relative; overflow:hidden;
}
.flight-card::before {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width:3px; background:transparent; transition:background .3s;
}
.flight-card:hover {
  box-shadow:var(--shadow-md);
  border-color:var(--blue-light);
  transform:translateX(2px);
}
.flight-card:hover::before { background:var(--gold); }

/* ─── Improved blog card ─── */
.blog-card { transition:transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.blog-title { font-family:'Playfair Display', Georgia, serif; font-weight:700; }

/* ─── Stat counter pill ─── */
.stat-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  border-radius:30px; padding:8px 18px; color:rgba(255,255,255,.85);
  font-size:.82rem; font-weight:600; backdrop-filter:blur(10px);
}
.stat-pill strong { color:var(--gold); font-family:'Playfair Display',serif; font-size:1.1rem; }

/* ─── Trust badges strip ─── */
.trust-strip {
  display:flex; align-items:center; justify-content:center;
  gap:32px; flex-wrap:wrap; padding:20px 0;
}
.trust-badge {
  display:flex; align-items:center; gap:8px;
  color:var(--text-light); font-size:.82rem; font-weight:600;
}
.trust-badge i { color:var(--gold); font-size:1.1rem; }

/* ─── CTA banner ─── */
.cta-banner {
  background:linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  border-radius:var(--radius-xl); padding:48px 40px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:'✈'; position:absolute; right:40px; top:50%; transform:translateY(-50%);
  font-size:8rem; color:rgba(255,255,255,.04); pointer-events:none;
}
.cta-banner h2 { color:#fff; font-family:'Playfair Display',serif; font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:8px; }
.cta-banner p { color:rgba(255,255,255,.7); margin:0; }
.cta-banner .joy-btn-primary { flex-shrink:0; }

/* ─── Page loading bar ─── */
#pageLoader {
  position:fixed; top:0; left:0; z-index:99999;
  height:3px; width:0; background:linear-gradient(to right, var(--gold), var(--gold-dark));
  transition:width .3s ease; border-radius:0 3px 3px 0;
}

/* ─── Better empty state ─── */
.empty-state {
  text-align:center; padding:80px 20px;
  background:#fff; border-radius:var(--radius-xl); border:2px dashed var(--border);
}
.empty-state-icon {
  width:80px; height:80px; border-radius:50%;
  background:linear-gradient(135deg,#e8f4ff,#c5ddf0);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:2rem; color:var(--blue-light); margin-bottom:16px;
}
.empty-state h4 { font-family:'Playfair Display',serif; color:var(--text-dark); margin-bottom:8px; }
.empty-state p  { color:var(--text-light); margin-bottom:24px; }

/* ─── Success confetti animation ─── */
@keyframes confettiFall {
  0%   { transform:translateY(-20px) rotate(0deg); opacity:1; }
  100% { transform:translateY(100vh)  rotate(720deg); opacity:0; }
}

/* ─── Package category badge colours ─── */
.cat-beach     { background:#e8f8f5; color:#1abc9c; }
.cat-luxury    { background:#fef9e7; color:#f39c12; }
.cat-adventure { background:#fef0ee; color:#e74c3c; }
.cat-honeymoon { background:#fce4ec; color:#e91e63; }
.cat-cultural  { background:#e8f4ff; color:var(--blue-light); }
.cat-family    { background:#f3e5f5; color:#9c27b0; }
.cat-safari    { background:#f1f8e9; color:#558b2f; }

/* ─── Testimonial card improvements ─── */
.tcard-inner {
  background:#fff; border-radius:var(--radius-xl);
  box-shadow:0 8px 40px rgba(44,51,124,.1);
  padding:44px; border:1px solid var(--border);
  position:relative;
}
.tcard-inner::before {
  content:'"'; position:absolute; top:20px; right:30px;
  font-family:'Playfair Display',serif; font-size:8rem;
  color:rgba(44,51,124,.06); line-height:1;
  pointer-events:none;
}
.tcard-text { font-size:1.05rem; font-style:italic; line-height:1.8; color:var(--text-mid); }

/* ─── Better WhatsApp FAB ─── */
.whatsapp-fab {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  box-shadow:0 4px 20px rgba(37,211,102,.5);
  transition:all .3s ease;
}
.whatsapp-fab:hover {
  transform:scale(1.1) translateY(-3px);
  box-shadow:0 10px 32px rgba(37,211,102,.7);
}

/* ─── Booking steps progress ─── */
.booking-progress {
  display:flex; align-items:center; margin-bottom:32px; padding:20px 24px;
  background:#fff; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm); border:1px solid var(--border);
}

/* ─── Additional responsive fixes ─── */
@media(max-width:768px) {
  .inner-hero { padding:90px 0 50px; }
  .inner-hero h1 { font-size:1.9rem; }
  .cta-banner { text-align:center; padding:32px 24px; }
  .cta-banner::before { display:none; }
  .pkg-book-grid { grid-template-columns:1fr; }
  .trust-strip { gap:16px; }
}
@media(max-width:480px) {
  .inner-hero { padding:80px 0 40px; }
  .cta-banner { padding:28px 20px; }
}

/* ============================================================
   MOBILE RESPONSIVENESS — Hero search & global fixes
   ============================================================ */
@media(max-width:992px) {
  .hero-content { padding: 0 16px; }
  .search-box { max-width:100%; margin:0 -4px; }
  .hero-stats { gap:20px; margin-top:24px; }
}

@media(max-width:768px) {
  /* Hero */
  .joy-hero { min-height:100svh; }
  .hero-arrow { display:none; }
  .hero-text { text-align:center; }
  .hero-pretitle { justify-content:center; }
  .hero-title { font-size:2rem; }
  .hero-subtitle { font-size:.9rem; }
  .hero-subtitle br { display:none; }

  /* Search box */
  .search-box { border-radius:12px; margin:0; }
  .search-tabs { padding:0 10px; gap:0; overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .search-tabs::-webkit-scrollbar { display:none; }
  .stab { padding:12px 14px; font-size:.8rem; white-space:nowrap; flex-shrink:0; }
  .search-form { padding:14px 12px 12px; }
  .sform-row { flex-direction:column; gap:10px; }
  .sfield { min-width:unset; width:100%; }
  .sfield label { font-size:.72rem; }
  .swap-btn { display:none; }
  .search-submit-btn { width:100%; justify-content:center; padding:13px; font-size:.95rem; }
  .pax-dropdown { left:0; right:0; z-index:9999; position:fixed; width:90vw; margin:0 auto; top:auto; }
  .sfield { position:static; }
  .search-form { overflow:visible; }

  /* Hero stats */
  .hero-stats { justify-content:center; gap:12px; flex-wrap:wrap; margin-top:20px; }
  .hstat-num { font-size:1.6rem; }
  .hstat span { font-size:.75rem; }
  .hstat-div { display:none; }

  /* Sections */
  .features-grid { grid-template-columns:1fr; gap:12px; }
  .packages-grid { grid-template-columns:1fr; }
  .deals-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }

  /* Manage page */
  .manage-header h1 { font-size:1.4rem; }
  .bi-header { flex-direction:column; align-items:flex-start; }
  .bi-meta { gap:10px; }

  /* Footer */
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }

  /* Airlines strip */
  .strip-label { font-size:.78rem; }

  /* Testimonials */
  .tcard-inner { padding:20px; }
  .tcard-text { font-size:.9rem; }
}

@media(max-width:480px) {
  .hero-title { font-size:1.7rem; }
  .hero-pretitle { font-size:.75rem; }
  .hero-stats .hstat { min-width:calc(50% - 8px); }
  .stab { padding:10px 11px; font-size:.76rem; }
  .hero-arrow { display:none; }
  .hero-dots { bottom:14px; }
  .hero-dest-label { font-size:.78rem; bottom:50px; }
  .scroll-indicator { display:none; }

  /* Newsletter */
  .nl-form { flex-direction:column; border-radius:12px; }
  .nl-form input { border-radius:12px 12px 0 0 !important; }
  .nl-form button { border-radius:0 0 12px 12px !important; }

  /* Package detail */
  .pkg-detail-hero { height:300px; }
  .pkg-hero-content h1 { font-size:1.4rem; }
  .sc-body { padding:16px; }

  /* Booking form */
  .form-row { grid-template-columns:1fr; }
  .booking-progress { padding:14px 12px; overflow-x:auto; }
}

/* Ensure body content is never hidden under fixed navbar on all pages */
.joy-body > section:first-of-type,
.joy-body > div:first-of-type,
.pkg-detail-hero,
.inner-hero {
  /* individual pages handle their own nav offset */
}
