/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Accent */
  --gold:        #D4A843;
  --gold-light:  #F0C96A;
  --gold-dark:   #A8832A;
  --gold-dim:    rgba(212,168,67,0.15);

  /* Dark mode surfaces — Charcoal Luxury */
  --bg:          #18181B;
  --bg-card:     #222226;
  --bg-card-2:   #2A2A2F;
  --bg-input:    rgba(255,255,255,0.06);
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(212,168,67,0.22);
  --nav-text:    rgba(255,255,255,0.78);
  --header-bg:   rgba(20,20,24,0.96);

  /* Typography */
  --text:        #F0EDE6;
  --text-muted:  #8A8884;
  --text-soft:   #B8B5AE;

  /* Legacy aliases */
  --dark:        #18181B;
  --dark-2:      #222226;
  --dark-3:      #2A2A2F;
  --dark-4:      #343438;
  --white:       #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
}

/* ===== LIGHT MODE — Cream & Charcoal ===== */
html.light {
  --bg:          #FAFAF8;
  --bg-card:     #F2F0EB;
  --bg-card-2:   #E8E5DE;
  --bg-input:    rgba(0,0,0,0.04);
  --border:      rgba(0,0,0,0.09);
  --border-gold: rgba(168,131,42,0.28);
  --nav-text:    #1C1C1E;
  --header-bg:   rgba(250,250,248,0.97);
  --shadow:      0 20px 60px rgba(0,0,0,0.10);
  --text:        #1C1C1E;
  --text-muted:  #4A4845;
  --text-soft:   #2E2C2A;
  --dark:        #FAFAF8;
  --dark-2:      #F2F0EB;
  --dark-3:      #E8E5DE;
  --dark-4:      #DDD9D0;
  --gold-dark:   #8A6A1E;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.3s;
}
body:hover .cursor-follower { opacity: 1; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 99997;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
}
.preloader-logo span { color: var(--gold); }
.preloader-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-top: 1rem;
  animation: preloader-line 1.5s ease forwards 0.3s;
}
@keyframes preloader-line { to { width: 100%; } }

/* ===== CONTAINER & UTILS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
}
.section-sub {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
#header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 50px; filter: brightness(1.1); }

.navbar { display: flex; gap: 2rem; margin: 0 auto; }
.navbar a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nav-text);
  position: relative;
  transition: color 0.3s;
}
.navbar a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.navbar a:hover { color: var(--gold); }
.navbar a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }

.lang-switcher {
  position: relative;
}
.lang-current {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-size: 0.75rem; letter-spacing: 0.12em;
  font-family: var(--ff-body);
  color: var(--gold);
  transition: all 0.25s;
  white-space: nowrap;
}
.lang-current:hover { background: rgba(212,168,67,0.2); }
.lang-arrow { font-size: 0.6rem; transition: transform 0.25s; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 0.4rem;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 90px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: var(--ff-body);
  text-align: left;
  width: 100%;
}
.lang-btn:hover { background: var(--gold-dim); color: var(--gold); }
.lang-btn.active { color: var(--gold); background: var(--gold-dim); font-weight: 500; }

.header-search-btn, .header-login-btn {
  background: none; border: none; cursor: pointer;
  color: var(--nav-text);
  font-family: var(--ff-body);
  transition: color 0.3s;
}
.header-search-btn { font-size: 1rem; }
.header-login-btn {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}
.header-search-btn:hover, .header-login-btn:hover { color: var(--gold); border-color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
  display: block;
}

.search-overlay {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--header-bg);
  padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  min-height: 100px;
}
.search-overlay.active { transform: translateY(0); }
.search-box { display: flex; align-items: center; gap: 1rem; width: 100%; max-width: 600px; }
.search-box input {
  flex: 1; background: none; border: none; border-bottom: 1px solid rgba(201,168,76,0.4);
  color: var(--text); font-size: 1.5rem; font-family: var(--ff-display);
  padding: 0.5rem 0; outline: none;
}
.search-box input::placeholder { color: var(--text-muted); }
#search-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.2rem; cursor: pointer; transition: color 0.3s;
}
#search-close:hover { color: var(--gold); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 3rem;
  width: 90%; max-width: 440px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1rem;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--gold); }
.modal-header { margin-bottom: 2rem; }
.modal-header h2 {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 300;
}
.modal-header p { color: var(--text-muted); margin-top: 0.25rem; font-size: 0.9rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; background: var(--bg-input);
  border: none; border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--text); padding: 0.75rem 0;
  font-family: var(--ff-body); font-size: 1rem;
  outline: none; transition: border-color 0.3s;
}
.form-control:focus { border-bottom-color: var(--gold); }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
.btn-primary {
  width: 100%; background: var(--gold);
  color: var(--dark); border: none; cursor: pointer;
  padding: 1rem; font-family: var(--ff-body);
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-links {
  margin-top: 1.5rem; text-align: center;
  font-size: 0.85rem; color: var(--text-muted);
}
.form-links a { color: var(--gold); transition: opacity 0.3s; }
.form-links a:hover { opacity: 0.7; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.8) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1300px; margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.5rem; border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.5s both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  animation: fadeInUp 0.8s ease 0.7s both;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 500px; margin-top: 1.25rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.9s both;
}
.hero-cta {
  display: flex; gap: 1rem; margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1.1s both;
}
.btn-hero-primary {
  background: var(--gold); color: var(--dark);
  padding: 1rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  transition: all 0.3s;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}
.btn-hero-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  align-items: center;
  animation: fadeInUp 0.8s ease 1.3s both;
}
.hero-stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 300;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-video-controls {
  position: absolute; bottom: 6rem; right: 3rem;
  z-index: 3; display: flex; flex-direction: column; gap: 0.5rem;
}
.vid-dot {
  width: 4px; height: 30px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px; cursor: pointer;
  transition: all 0.3s;
  display: block;
}
.vid-dot.active, .vid-dot:hover {
  background: var(--gold); height: 50px;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== DIRECTIONS ===== */
.directions { background: var(--bg-card); }
.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dir-card {
  position: relative; overflow: hidden;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  background: var(--bg-card-2);
  cursor: pointer;
  min-height: 320px;
  transition: var(--transition);
}
.dir-card::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  transition: opacity 0.4s;
}
.dir-card:hover::before { opacity: 0.3; }
.dir-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15; transition: opacity 0.4s, transform 0.6s;
  z-index: 0;
}
.dir-card:hover .dir-bg { opacity: 0.4; transform: scale(1.05); }
.dir-num {
  position: absolute; top: 2rem; right: 2rem;
  font-family: var(--ff-display);
  font-size: 4rem; font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  z-index: 1;
  transition: color 0.4s;
}
.dir-card:hover .dir-num { color: rgba(201,168,76,0.4); }
.dir-icon {
  position: relative; z-index: 1;
  font-size: 1.75rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.dir-card h3 {
  position: relative; z-index: 1;
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 400;
  margin-bottom: 0.75rem;
}
.dir-card p {
  position: relative; z-index: 1;
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.6;
}
.dir-arrow {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  z-index: 1;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  transform: translateX(-10px); opacity: 0;
  transition: all 0.3s;
}
.dir-card:hover .dir-arrow { transform: translateX(0); opacity: 1; }

/* ===== PACKAGES ===== */
.packages { background: var(--dark); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.pkg-img-wrap {
  position: relative; overflow: hidden;
  padding-top: 65%;
}
.pkg-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.pkg-card:hover .pkg-overlay { opacity: 1; }
.pkg-explore {
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--white); padding: 0.75rem 2rem;
  font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.pkg-explore:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.pkg-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(201,168,76,0.9);
  color: var(--dark); padding: 0.3rem 0.8rem;
  font-size: 0.8rem; font-weight: 600;
  border-radius: 10px;
}
.pkg-hot {
  position: absolute; top: 1rem; left: 1rem;
  background: #E74C3C;
  color: white; padding: 0.3rem 0.8rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 10px;
}
.pkg-info { padding: 1.5rem; }
.pkg-location {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.pkg-info h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.5rem;
}
.pkg-info p { color: var(--text-muted); font-size: 0.9rem; }
.pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.pkg-days {
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.pkg-days i { color: var(--gold); }
.btn-sm {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-sm:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* ===== FEATURED ===== */
.featured {
  background: var(--bg-card);
}
.featured-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.featured-img {
  position: relative;
}
.featured-img img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
}
.featured-float-card {
  position: absolute; bottom: -2rem; right: -2rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  min-width: 200px;
}
.float-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.featured-float-card strong { display: block; font-size: 0.9rem; }
.featured-float-card span { font-size: 0.75rem; color: var(--text-muted); }

.featured-text .section-title { text-align: left; }
.featured-text p {
  color: var(--text-muted); line-height: 1.8;
  margin-top: 1.5rem; font-size: 0.95rem;
}
.feat-list {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.feat-list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-soft);
}
.feat-list li i { color: var(--gold); font-size: 0.75rem; }
.btn-outline {
  display: inline-block; margin-top: 2rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 1rem 2.5rem;
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}

/* ===== SERVICES ===== */
.services { background: var(--dark); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-input);
}
.svc-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--bg);
  transition: background 0.4s;
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 2.5rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}
.svc-card:hover { background: var(--bg-card); }
.svc-card:hover::after { width: calc(100% - 5rem); }
.svc-icon-wrap {
  width: 50px; height: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon-wrap {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}
.svc-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 0.75rem;
}
.svc-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { background: var(--bg-card); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.gal-large { grid-column: span 2; }
.gal-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-item:hover .gal-info { opacity: 1; }
.gal-info h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.25rem;
}
.gal-info p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.gal-info a {
  margin-top: 0.75rem; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.5rem;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--dark); }
.review-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  margin: 0.5rem;
}
.review-quote {
  font-size: 2rem; color: var(--gold);
  opacity: 0.3; margin-bottom: 1rem;
}
.review-card > p {
  color: var(--text-soft); line-height: 1.8;
  font-size: 0.95rem; font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.review-author img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.review-author strong { font-size: 0.9rem; display: block; }
.rev-stars { color: var(--gold); font-size: 0.75rem; margin-top: 0.25rem; }

/* ===== PARTNERS ===== */
.partners { background: var(--bg-card); }
.brand-slider .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.brand-slider img {
  max-height: 50px; width: auto;
  filter: brightness(0) invert(1) opacity(0.3);
  transition: filter 0.3s;
}
.brand-slider img:hover { filter: brightness(0) invert(1) opacity(0.8); }

/* ===== NEWS ===== */
.news { background: var(--dark); }
.news-card {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s;
  margin: 0.5rem;
}
.news-card:hover { transform: translateY(-4px); }
.news-img { overflow: hidden; }
.news-img img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 1.5rem; }
.news-date {
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
}
.news-body h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 400;
  margin: 0.5rem 0; line-height: 1.4;
}
.news-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.news-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.3s;
}
.news-link:hover { gap: 0.8rem; }

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 8px !important;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
}
.cta-content { position: relative; z-index: 2; padding: 4rem 2rem; }
.cta-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--white);
}
.cta-content p {
  color: rgba(255,255,255,0.7); margin: 1rem 0 2.5rem;
  font-size: 1.1rem;
}
.cta-contacts {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--border);
  color: var(--white); font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.cta-btn:hover { border-color: var(--gold); color: var(--gold); }
.cta-btn-green {
  background: #25D366; border-color: #25D366; color: var(--white) !important;
}
.cta-btn-green:hover { background: #20ba58; border-color: #20ba58; color: var(--white) !important; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); }
.footer-top { padding: 5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { height: 55px; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li, .footer-col ul a {
  color: var(--text-muted); font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.footer-contact li i { color: var(--gold); margin-top: 0.2rem; font-size: 0.8rem; }
.footer-contact a { color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0; text-align: center;
}
.footer-bottom span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--dark);
  border: none; cursor: pointer;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== MOBILE MENU ===== */
@media (max-width: 1024px) {
  .navbar {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(300px, 85vw);
    background: var(--bg-card);
    flex-direction: column; justify-content: center;
    gap: 2rem; padding: 5rem 3rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
    border-left: 1px solid rgba(201,168,76,0.1);
  }
  .navbar.open { right: 0; }
  .navbar a { font-size: 1rem; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .dir-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gal-large { grid-column: span 2; }
  .featured-inner { grid-template-columns: 1fr; gap: 3rem; }
  .featured-float-card { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-video-controls { display: none; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }

  /* ── Mobile Header ── */
  #header { padding: 0.75rem 0; }
  .header-inner { padding: 0 1rem; gap: 0.75rem; }

  /* Логотип үлкейту */
  .logo-img { height: 42px !important; }

  /* Search жасыру */
  .header-search-btn { display: none; }

  /* Login батырмасын кішірейту */
  .header-login-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  /* Toggle батырмасын кішірейту */
  .theme-toggle {
    width: 44px !important;
    height: 24px !important;
  }
  .theme-toggle::before {
    width: 16px !important;
    height: 16px !important;
  }
  html.light .theme-toggle::before { transform: translateX(20px) !important; }
  .theme-toggle .knob-icon { width: 16px !important; height: 16px !important; font-size: 9px !important; }
  html.light .theme-toggle .knob-icon { transform: translateX(20px) !important; }
}

/* ── Тіл ауыстырғышты мобильде navbar ішіне қою ── */
@media (max-width: 1024px) {
  .navbar-lang {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-large { grid-column: span 1; }
  .gal-info { opacity: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  width: 52px; height: 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(201,168,76,0.35);
  background: var(--bg-card);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
  display: flex; align-items: center; padding: 0 4px;
}
html.light .theme-toggle {
  background: var(--gold);
  border-color: var(--gold);
}

/* Sliding knob */
.theme-toggle::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute; left: 3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  z-index: 1;
}
html.light .theme-toggle::before {
  transform: translateX(24px);
  background: #fff;
}

/* Icons inside toggle */
.theme-icon-dark,
.theme-icon-light {
  position: absolute;
  font-size: 11px; line-height: 1;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
.theme-icon-dark  { right: 7px; color: rgba(201,168,76,0.7); opacity: 1; }
.theme-icon-light { left: 7px;  color: #fff; opacity: 0; }
html.light .theme-icon-dark  { opacity: 0; }
html.light .theme-icon-light { opacity: 1; }

/* Icon inside the knob */
.theme-toggle .knob-icon {
  position: absolute; left: 3px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--dark);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
  pointer-events: none; z-index: 2;
}
html.light .theme-toggle .knob-icon {
  transform: translateX(24px);
  color: var(--gold);
}

/* ===== LIGHT MODE — overrides ===== */
html.light .preloader { background: var(--bg); }

/* ── Universal black text ── */
html.light body                { color: #1C1C1E; }
html.light p,
html.light h1, html.light h2, html.light h3, html.light h4, html.light h5,
html.light span, html.light li, html.light a,
html.light .section-title,
html.light .section-sub,
html.light .tour-desc,
html.light .day-desc,
html.light .day-title,
html.light .desc,
html.light .pkg-info h3,
html.light .pkg-info p,
html.light .svc-card h3,
html.light .svc-card p,
html.light .dir-card h3,
html.light .dir-card p,
html.light .review-card > p,
html.light .review-author strong,
html.light .news-body h3,
html.light .news-body p,
html.light .news-date,
html.light .sidebar-title,
html.light .sidebar-sub,
html.light .sidebar-info-row .val,
html.light .sidebar-info-row .label,
html.light .price-from,
html.light .price-per,
html.light .guarantee-item,
html.light .footer-brand p,
html.light .footer-col ul li,
html.light .footer-col ul a,
html.light .footer-bottom span,
html.light .chip,
html.light .ess-card p,
html.light .ess-card h4,
html.light .inc-col ul li,
html.light .modal-header h2,
html.light .modal-header p,
html.light .form-group label,
html.light .pkg-days,
html.light .navbar a,
html.light .lang-btn,
html.light .header-login-btn,
html.light .header-search-btn,
html.light .back-link,
html.light .hero-scroll span  { color: #1C1C1E; }

/* ── Keep gold accents ── */
html.light .section-tag,
html.light .section-label,
html.light .pkg-location,
html.light .news-link,
html.light .btn-sm,
html.light .gal-info a,
html.light .dir-icon,
html.light .dir-arrow,
html.light .svc-icon-wrap,
html.light .footer-col h4,
html.light .rev-stars i,
html.light .float-icon,
html.light .feat-list li i,
html.light .guarantee-item i,
html.light .sidebar-info-row .label i,
html.light .pkg-days i,
html.light .price-amount,
html.light .day-num-label,
html.light .chip i,
html.light .footer-contact li i  { color: var(--gold-dark) !important; }

html.light .navbar a:hover,
html.light .lang-btn:hover,
html.light .lang-btn.active      { color: var(--gold-dark) !important; }

/* ── White text on gold/green buttons ── */
html.light .btn-hero-primary,
html.light .btn-primary,
html.light .btn-book,
html.light .btn-wa,
html.light .cta-btn-green,
html.light .pkg-badge            { color: #ffffff !important; }

html.light .cta-btn              { color: #1C1C1E; }
html.light .btn-hero-ghost       { color: #1C1C1E; border-color: rgba(0,0,0,0.35); }
html.light .btn-hero-ghost:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
html.light .btn-outline          { color: var(--gold-dark); border-color: var(--gold-dark); }
html.light .btn-outline:hover    { color: #1C1C1E; }
html.light .btn-sm               { color: var(--gold-dark) !important; }

/* ── Hero — keep readable over video ── */
html.light .hero-title  { color: #ffffff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
html.light .hero-sub    { color: rgba(255,255,255,0.9); }
html.light .hero-badge  { color: var(--gold-light); border-color: rgba(201,168,76,0.5); }
html.light .stat-num    { color: var(--gold-light); }
html.light .stat-label  { color: rgba(255,255,255,0.75); }
html.light .scroll-text { color: rgba(255,255,255,0.55); }
html.light .hero-scroll .scroll-line { background: rgba(255,255,255,0.35); }

/* ── Logo — ақ нұсқасын қараға айналдыру ── */
html.light .logo-img,
html.light .footer-logo { filter: brightness(0) invert(0) !important; }

/* ── Section backgrounds ── */
html.light .svc-grid          { background: rgba(0,0,0,0.05); }
html.light .svc-card          { background: var(--bg); }
html.light .svc-card:hover    { background: var(--bg-card); }

/* ── Directions overlay ── */
html.light .dir-bg            { opacity: 0.2; }
html.light .dir-card:hover .dir-bg { opacity: 0.45; }
html.light .dir-card::before  { background: rgba(245,242,236,0.6); }
html.light .dir-card:hover::before { background: rgba(245,242,236,0.15); }
html.light .dir-num           { color: rgba(0,0,0,0.1); }
html.light .dir-card:hover .dir-num { color: rgba(0,0,0,0.25); }

/* ── Cards shadow ── */
html.light .pkg-card,
html.light .svc-card,
html.light .review-card,
html.light .news-card         { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

/* ── Form controls ── */
html.light .form-control             { border-bottom-color: rgba(0,0,0,0.2); color: #1C1C1E; }
html.light .form-control::placeholder { color: rgba(0,0,0,0.3); }
html.light .search-box input         { border-bottom-color: rgba(0,0,0,0.2); color: #1C1C1E; }
html.light .search-overlay           { background: rgba(245,242,236,0.98); }
html.light #search-close             { color: #666; }

/* ── Modal ── */
html.light .modal-box  { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
html.light .modal-close { color: #666; }

/* ── Footer ── */
html.light .footer         { background: var(--bg-card); }
html.light .footer-bottom  { border-color: rgba(0,0,0,0.08); }
html.light .footer-social a { border-color: rgba(0,0,0,0.15); color: #555; }
html.light .footer-social a:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Misc ── */
html.light .back-top        { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
html.light .hamburger span  { background: #111111; }
html.light .preloader-logo  { color: #1C1C1E; }

/* ── Smooth theme transition ── */
body, #header, .pkg-card, .dir-card, .svc-card, .review-card,
.news-card, .footer, .modal-box, .sidebar-card, .ess-card,
.day-box, .inc-wrap, .price-table th, .price-table td,
.logo-img, .footer-logo {
  transition: background 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, filter 0.35s ease;
}
