/* ═══════════════════════════════════════════════════
   Tour Alanya — Frontend Stylesheet
   Aesthetic: Premium Luxury Mediterranean
   Fonts: Playfair Display (headings) + Montserrat (body) + Cormorant Garamond (italic)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;1,400;1,600&family=Montserrat:wght@400;600&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  --deep-navy:    #0A1628;
  --royal-navy:   #1A3A5C;
  --navy-light:   #1e3352;
  --teal:         #1A9B8C;
  --teal-hover:   #158a7c;
  --gold:         #C9A84C;
  --gold-dark:    #A07830;
  --gold-light:   #E8D5A3;
  --cream:        #F5F0E8;
  --white:        #FFFFFF;
  --text:         #1A3A5C;
  --text-muted:   #5a7a9a;
  --border:       rgba(201,168,76,.3);

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Montserrat', sans-serif;
  --font-italic:   'Cormorant Garamond', Georgia, serif;

  --shadow-sm:  0 2px 12px rgba(10,22,40,.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,.14);
  --shadow-lg:  0 20px 60px rgba(10,22,40,.20);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--teal); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--teal-hover); }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--royal-navy);
}

.display-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--royal-navy);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--royal-navy);
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
}

/* ── Buttons ─────────────────────────────────────── */
/* Primary Button */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--royal-navy);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  border: none;
  box-shadow: 0 4px 20px rgba(26,58,92,.25);
  transition: var(--trans);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,92,.35);
  color: var(--gold-light);
  background: var(--deep-navy);
}

/* Secondary Button */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold-dark);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  border: 1px solid var(--gold);
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--royal-navy);
  border-color: var(--gold);
}

/* White/Ghost variant for dark backgrounds */
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  color: var(--gold-light);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  border: 1px solid var(--gold);
  backdrop-filter: blur(8px);
  transition: var(--trans);
}
.btn-outline-white:hover {
  background: var(--gold);
  color: var(--royal-navy);
  border-color: var(--gold);
}

/* ── Header ──────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  margin-top: 30px;
  transition: var(--trans);
}
#header.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  margin-top: 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  max-width: 1320px; margin: 0 auto;
  transition: padding .3s;
}
#header.scrolled .header-inner { padding: 14px 40px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--royal-navy);
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo span { color: var(--gold-light); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,.12);
}

.header-actions {
  display: flex; align-items: center; gap: 12px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,.3);
  cursor: pointer;
  transition: var(--trans);
}
.lang-switcher:hover { color: var(--gold-light); border-color: var(--gold); }

.currency-switcher {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,.3);
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}
.currency-switcher:hover { color: var(--gold-light); border-color: var(--gold); }

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: var(--gold); font-size: 22px; padding: 4px;
}

/* ── Mobile Nav ──────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--deep-navy);
  z-index: 999;
  flex-direction: column;
  padding: 80px 40px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--gold-light);
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--gold); font-size: 24px;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--deep-navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/public/assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: .35;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,.95) 0%,
    rgba(10,22,40,.6) 50%,
    rgba(26,58,92,.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-desc {
  font-family: var(--font-body);
  color: rgba(255,255,255,.75);
  font-size: 18px;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,.2);
  padding-top: 40px;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-family: var(--font-body);
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
}

/* Search Box */
.search-box {
  background: white;
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin-top: 32px;
  border: 1px solid var(--border);
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: transparent;
}
.search-box input::placeholder {
  color: #aaa;
  font-family: var(--font-body);
}
.search-box select {
  border: none; outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 0 16px 0 8px;
  border-left: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

/* Floating Card */
.hero-float-card {
  position: absolute; right: 60px; bottom: 120px;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: white;
  min-width: 220px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-float-card .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  opacity: .6;
  margin-bottom: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-float-card .value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-float-card .badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(26,155,140,.2);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── Section Base ────────────────────────────────── */
.section {
  padding: clamp(60px,8vw,100px) 40px;
  max-width: 1320px; margin: 0 auto;
}
.section-header {
  margin-bottom: clamp(32px,4vw,56px);
}

/* ── Tour Cards ──────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e5e7eb;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal);
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tour-card-wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: var(--trans);
  backdrop-filter: blur(4px);
}
.tour-card-wishlist:hover { background: white; transform: scale(1.1); }

.tour-card-body { padding: 20px; }
.tour-card-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.tour-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.tour-card-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tour-card-meta span { display: flex; align-items: center; gap: 5px; }
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tour-price-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
  letter-spacing: .04em;
}
.tour-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--royal-navy);
  line-height: 1;
}
.tour-price small {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.tour-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.stars { color: #fbbf24; letter-spacing: -2px; }
.tour-card-btn {
  display: block; width: 100%;
  background: var(--royal-navy);
  color: var(--gold);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: 14px;
  transition: var(--trans);
  text-align: center;
}
.tour-card-btn:hover {
  background: var(--deep-navy);
  color: var(--gold-light);
}

/* ── Categories ──────────────────────────────────── */
.categories-section { background: var(--deep-navy); }
.categories-section .section-title { color: white; }
.categories-section .section-subtitle { color: var(--gold); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  color: var(--gold-light);
}
.cat-card:hover {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.cat-icon {
  font-size: 36px; margin-bottom: 12px;
  display: block;
}
.cat-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-body);
}

/* ── Why Us ──────────────────────────────────────── */
.why-us-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.feature-item { padding: 8px; }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(26,155,140,.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,155,140,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  color: var(--teal);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--royal-navy);
  margin-bottom: 10px;
}
.feature-desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Destinations ────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dest-grid-col { display: flex; flex-direction: column; gap: 20px; }
.dest-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #e5e7eb;
  border: 1px solid var(--border);
}
.dest-card.large { aspect-ratio: 3/4; }
.dest-card.small { aspect-ratio: 16/9; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.88) 0%, transparent 60%);
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; color: white;
}
.dest-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.dest-count {
  font-size: 12px;
  font-family: var(--font-body);
  opacity: .7;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-quote {
  font-family: var(--font-italic);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--royal-navy);
  line-height: 1.65;
  margin-bottom: 24px;
}
.review-quote::before {
  content: '"';
  color: var(--teal);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 4px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,155,140,.1);
  border: 1px solid rgba(26,155,140,.2);
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--royal-navy);
}
.review-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: -2px; margin-left: auto; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-navy) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,155,140,.12) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; color: white;
}
.cta-content .section-title { color: white; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--deep-navy);
  color: var(--gold-light);
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  color: var(--gold-light);
  opacity: .8;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(232,213,163,.6);
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.footer-col h5 {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(232,213,163,.55);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(232,213,163,.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(232,213,163,.35); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Sticky Currency / Language Bar ─────────────── */
.sticky-topbar {
  background: var(--deep-navy);
  color: rgba(232,213,163,.6);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  padding: 8px 40px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.topbar-left { display: flex; gap: 20px; }
.topbar-left a { color: rgba(232,213,163,.45); transition: var(--trans); }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 12px; align-items: center; }

/* ── Scroll to top ───────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 44px; height: 44px;
  background: var(--teal);
  color: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(26,155,140,.4);
  opacity: 0; pointer-events: none;
  transition: var(--trans);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--royal-navy); transform: translateY(-3px); }

/* ── Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ── Utilities ───────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--deep-navy); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.full-width { max-width: none; }
.container  { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 992px) {
  .nav-links, .header-actions .btn-gold { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-float-card { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 16px 20px; }
  .sticky-topbar { display: none; }
  .section { padding: 48px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .search-box { flex-direction: column; border-radius: var(--radius-md); padding: 16px; }
  .search-box select { border-left: none; border-top: 1px solid var(--border); padding: 8px 0 0; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .tours-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}