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

.hidden { display: none !important; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A35;
  --bg: #0D0D0D;
  --bg2: #141414;
  --bg3: #1A1A1A;
  --bg4: #222222;
  --bg5: #2A2A2A;
  --text: #F0F0F0;
  --text2: #A0A0A0;
  --text3: #707070;
  --border: #2E2E2E;
  --border2: #3A3A3A;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text2);
  font-size: 1.1rem;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--gold);
  color: #0D0D0D;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: 24px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--bg3);
  border-radius: 50px;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  color: var(--text2);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: #0D0D0D;
}

.admin-link {
  font-size: 1.1rem;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 4px;
}
.admin-link:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=90');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(13,13,13,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  margin-left: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(240,240,240,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(240,240,240,0.75);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-features svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}
.stat-label { font-size: 0.8rem; color: var(--text2); }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.4; }
}

/* ===== SEARCH BAR ===== */
.search-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding: 0 24px 60px;
}
.search-bar-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  box-shadow: var(--shadow);
}
.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
}
.search-field:first-child { padding-left: 0; }
.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.search-field input,
.search-field select {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  padding: 4px 0;
  width: 100%;
}
.search-field select option { background: var(--bg3); color: var(--text); }
.search-divider { width: 1px; height: 48px; background: var(--border); align-self: flex-end; margin-bottom: 4px; flex-shrink: 0; }
.search-btn { margin-left: 20px; flex-shrink: 0; }

/* ===== TOURS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--bg3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--border2);
  box-shadow: var(--shadow);
}
.tour-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.tour-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.tour-badge {
  position: static;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.tour-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 54px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tour-badge.bestseller { background: var(--gold); color: #0D0D0D; }
.tour-badge.wine { background: #8B3A62; color: #fff; }
.tour-badge.nature { background: #2D6A4F; color: #fff; }
.tour-badge.multi { background: #1D4E89; color: #fff; }

.tour-fav {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.tour-fav:hover, .tour-fav.active { background: #e53e3e; }

.tour-body { padding: 20px; }
.tour-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tour-desc {
  color: var(--text2);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text2);
  margin-bottom: 16px;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.tour-price { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.tours-more { text-align: center; margin-top: 48px; }

/* ===== WHY US ===== */
.why-section {
  background: var(--bg2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.12);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.8rem; color: var(--text2); line-height: 1.5; }

/* ===== DESTINATIONS ===== */
.destinations-section { background: var(--bg); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.dest-card:hover { transform: scale(1.02); }
.dest-card:hover .dest-overlay { opacity: 0.5; }
.dest-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  border-radius: var(--radius-lg);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%);
  transition: opacity 0.3s;
}
.dest-name {
  position: absolute;
  bottom: 16px; left: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.dest-large .dest-name { font-size: 1.5rem; }

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.1);
}
.service-icon { font-size: 2.4rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--bg);
  padding: 100px 0;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.how-step:hover { border-color: var(--gold-dark); }
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 80px;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #0D0D0D;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 2.4rem; margin-bottom: 16px; }
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 0.82rem; color: var(--text2); line-height: 1.5; }

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); filter: brightness(1.1); }
.g-tall { grid-row: 1 / 3; }
.g-wide { grid-column: 2 / 4; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.test-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.test-stars { font-size: 1rem; margin-bottom: 16px; }
.test-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-author strong { font-size: 0.95rem; }
.test-author small { color: var(--text2); font-size: 0.78rem; }

/* ===== ABOUT ===== */
.about-section {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p { color: var(--text2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.about-features { margin: 24px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ab-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.ab-feat span:first-child {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-image { position: relative; }
.about-img-wrap { position: relative; }
.about-img {
  height: 480px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
}
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: #0D0D0D;
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-gold);
}
.ab-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-float span:last-child { font-size: 0.8rem; font-weight: 600; }

/* ===== BOOKING ===== */
.booking-section {
  background: var(--bg);
  padding: 100px 0;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.booking-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.booking-info > p { color: var(--text2); margin-bottom: 32px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.contact-item strong { font-size: 0.78rem; color: var(--text2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item a, .contact-item span { font-size: 0.95rem; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

.booking-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.booking-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg4); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text3); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p { color: var(--text2); font-size: 0.88rem; margin-top: 16px; margin-bottom: 24px; line-height: 1.6; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--text2); }
.footer-socials a:hover svg { fill: #0D0D0D; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--text2); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg4);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form button {
  background: var(--gold);
  color: #0D0D0D;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1rem;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-col > p { color: var(--text2); font-size: 0.85rem; margin-bottom: 16px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; color: var(--text2); font-size: 0.82rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-inner span { color: var(--text3); font-size: 0.82rem; }
.payment-icons { display: flex; gap: 8px; }
.pay-badge {
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #1a2e1a;
  border: 1px solid #2D6A4F;
  color: #81C995;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-large { grid-row: auto; grid-column: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-badge-float { right: 16px; }
  .booking-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-steps { flex-direction: column; align-items: stretch; gap: 16px; }
  .how-arrow { transform: rotate(90deg); margin: 0 auto; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 80px 40px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    font-size: 1.1rem;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 0; padding: 120px 24px 80px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-bg { background-attachment: scroll; }
  .search-bar-wrap { flex-direction: column; gap: 16px; padding: 24px; }
  .search-field { padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .search-field:last-of-type { border-bottom: none; }
  .search-divider { display: none; }
  .search-btn { width: 100%; justify-content: center; }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .gallery-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge-float { position: static; margin-top: 16px; display: inline-flex; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .lang-switcher { display: none; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== USER MENU ===== */
.user-menu { position: relative; display: flex; align-items: center; }
.user-signin-btn { font-size: 0.85rem; padding: 10px 20px; }

.user-dropdown { position: relative; }
.user-drop-trigger {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 14px 6px 6px;
  cursor: pointer; transition: var(--transition);
}
.user-drop-trigger:hover { border-color: var(--border2); }
.user-drop-trigger .user-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.user-drop-trigger .user-avatar-letter {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D; font-weight: 800; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
#navUserName { font-size: 0.85rem; font-weight: 600; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.drop-arrow { font-size: 0.65rem; color: var(--text2); transition: transform 0.2s; }
.user-drop-trigger.open .drop-arrow { transform: rotate(180deg); }

.user-drop-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); min-width: 190px;
  box-shadow: var(--shadow); z-index: 500;
  overflow: hidden; opacity: 0; transform: translateY(-8px);
  pointer-events: none; transition: var(--transition);
}
.user-drop-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.udm-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 0.88rem; font-weight: 500;
  color: var(--text2); transition: background 0.15s, color 0.15s;
  width: 100%;
}
.udm-item:hover { background: var(--bg4); color: var(--text); }
.udm-divider { height: 1px; background: var(--border); margin: 4px 0; }
.udm-logout { color: #E53E3E !important; }
.udm-logout:hover { background: rgba(229,62,62,0.1) !important; }

/* ===== i18n additions ===== */
/* (nav_signin, udm_* keys are in translations obj in script.js) */

/* ===== SITE MODALS (booking + auth prompt) ===== */
.site-modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.site-modal {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); width: 100%; max-width: 520px;
  max-height: 90vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.site-modal-sm { max-width: 400px; }
.site-modal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.site-modal-hdr h3 { font-size: 1.1rem; font-weight: 700; }
.site-modal-close {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg4);
  color: var(--text2); font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.site-modal-close:hover { background: var(--bg5); color: var(--text); }
.site-modal-body { padding: 20px 24px; overflow-y: auto; flex: 1; }
.site-modal-ftr {
  padding: 14px 24px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; justify-content: flex-end; flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border-radius: var(--radius); background: transparent;
  border: 1px solid var(--border2); color: var(--text2); font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  text-decoration: none; font-family: var(--font);
}
.btn-ghost:hover { border-color: var(--text2); color: var(--text); }

.bm-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.bm-field label { font-size: 0.75rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.bm-field input, .bm-field select, .bm-field textarea {
  background: var(--bg4); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 0.9rem; padding: 11px 14px; outline: none;
  width: 100%; transition: border-color 0.2s; font-family: var(--font);
}
.bm-field input:focus, .bm-field select:focus, .bm-field textarea:focus { border-color: var(--gold); }
.bm-field select option { background: var(--bg4); }
.bm-field textarea { resize: vertical; }

.bm-tour-info {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.92rem; font-weight: 600; margin-bottom: 18px; color: var(--gold-light);
}
.sm-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.sm-field label { font-size: 0.75rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; }
.sm-field input, .sm-field select, .sm-field textarea {
  background: var(--bg4); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 0.9rem; padding: 11px 14px; outline: none;
  width: 100%; transition: border-color 0.2s; font-family: var(--font);
}
.sm-field input:focus, .sm-field select:focus, .sm-field textarea:focus { border-color: var(--gold); }
.sm-field select option { background: var(--bg4); }
.sm-field textarea { resize: vertical; }
.sm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Auth prompt modal */
.ap-icon { font-size: 3rem; text-align: center; margin-bottom: 14px; }
.site-modal-body p { color: var(--text2); font-size: 0.9rem; text-align: center; line-height: 1.6; }
.ap-tour-name {
  margin-top: 14px; padding: 10px 16px; text-align: center;
  background: var(--bg4); border-radius: 10px;
  font-weight: 600; font-size: 0.9rem; color: var(--gold-light);
}
.ap-ftr { justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== COMMUNITY REVIEWS SECTION ===== */
.community-reviews-section {
  background: var(--bg2); padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cr-top-action { text-align: center; margin-bottom: 40px; }
.cr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cr-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition);
}
.cr-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.cr-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cr-card-top .user-avatar,
.cr-card-top .user-avatar-letter { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.user-avatar-letter {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cr-user-info { display: flex; flex-direction: column; gap: 2px; }
.cr-user-name { font-weight: 700; font-size: 0.92rem; }
.cr-user-tour { font-size: 0.78rem; color: var(--text2); }
.cr-stars { margin-left: auto; font-size: 0.95rem; }
.stars-filled { color: var(--gold); }
.stars-empty  { color: var(--text3); }
.cr-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.cr-text  { color: var(--text2); font-size: 0.85rem; line-height: 1.65; margin-bottom: 14px; }
.cr-date  { font-size: 0.75rem; color: var(--text3); margin-bottom: 12px; }
.cr-photos {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.cr-photo-thumb {
  width: 66px; height: 66px; border-radius: 8px; object-fit: cover;
  cursor: pointer; border: 1px solid var(--border); transition: opacity 0.2s;
}
.cr-photo-thumb:hover { opacity: 0.8; }
.cr-more-photos {
  width: 66px; height: 66px; border-radius: 8px;
  background: var(--bg4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--text2); cursor: pointer;
}
.cr-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px;
  color: var(--text2); font-size: 0.95rem;
}
.cr-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }

/* ===== SITE LIGHTBOX ===== */
.site-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
}
.slb-img-wrap img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.slb-close, .slb-prev, .slb-next {
  position: fixed; background: rgba(255,255,255,0.1);
  color: #fff; border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; cursor: pointer;
}
.slb-close { top: 20px; right: 20px; font-size: 1rem; }
.slb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.slb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.slb-close:hover, .slb-prev:hover, .slb-next:hover { background: rgba(255,255,255,0.25); }
.slb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600;
}

@media (max-width: 1024px) { .cr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  {
  .cr-grid { grid-template-columns: 1fr; }
  .sm-field-row { grid-template-columns: 1fr; }
  .user-drop-menu { right: -40px; }
}
