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

:root {
  --primary: #1a3a5c;
  --primary-light: #2557a7;
  --accent: #e8863a;
  --accent-light: #f5a55a;
  --white: #ffffff;
  --light-bg: #f4f7fb;
  --light-gray: #e8edf3;
  --text-dark: #1c2b3a;
  --text-mid: #4a6078;
  --text-light: #8099b0;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-lg: 0 8px 40px rgba(26,58,92,0.16);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,134,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== HEADER & NAV ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

#site-header.scrolled {
  background: rgba(26,58,92,0.97);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--accent); }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-link .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition);
  opacity: 0.7;
}

.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--transition);
  border-top: 3px solid var(--accent);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  cursor: pointer;
}

.mega-menu-item:hover { background: var(--light-bg); }

.mega-menu-item img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.mega-menu-item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.mega-menu-item-info p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Simple dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border-top: 3px solid var(--accent);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 18px;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  margin-left: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 9px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.header-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding-top: 68px;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,92,0.72) 0%,
    rgba(26,58,92,0.38) 50%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,134,58,0.9);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title span { color: var(--accent-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 40px;
  display: flex;
  gap: 30px;
  z-index: 2;
}

.hero-stat {
  text-align: center;
  color: white;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--accent-light);
}

.hero-stat .label {
  font-size: 0.78rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  width: 24px;
}

/* ===== SEARCH BAR ===== */
#search-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 0;
  position: relative;
  z-index: 10;
}

.search-inner {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  margin: -30px auto 0;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
  background: white;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--light-gray);
  gap: 10px;
}

.search-field:last-of-type { border-right: none; }

.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 3px;
}

.search-field select,
.search-field input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  background: transparent;
}

.search-field-icon {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.search-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.search-btn:hover { background: var(--accent-light); }

/* ===== CITIES SECTION ===== */
#cities {
  padding: 90px 0 70px;
  background: var(--light-bg);
}

.cities-header {
  text-align: center;
  margin-bottom: 50px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.city-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.city-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-card:hover .city-card-img img { transform: scale(1.06); }

.city-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: white;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.city-card-body {
  padding: 20px;
}

.city-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.city-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.city-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.city-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}

.city-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== CITY DETAIL MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-hero {
  position: relative;
  height: 320px;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,0.85), transparent 50%);
}

.modal-hero-text {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: white;
}

.modal-hero-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-hero-text p { opacity: 0.85; font-size: 1rem; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-body {
  padding: 32px;
}

.modal-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 28px;
}

.modal-tab {
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.modal-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.modal-tab-content { display: none; }
.modal-tab-content.active { display: block; }

.modal-description {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Routes */
.routes-list { display: flex; flex-direction: column; gap: 20px; }

.route-card {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  transition: background var(--transition);
}

.route-card:hover { background: var(--light-gray); }

.route-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.route-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.route-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.route-duration {
  font-size: 0.82rem;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.route-diff {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Video placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0f1923;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.video-placeholder:hover img { opacity: 0.85; }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 68px;
  height: 68px;
  background: rgba(255,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.video-placeholder:hover .video-play-btn {
  background: #ff0000;
  transform: translate(-50%,-50%) scale(1.1);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.video-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.video-yt-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.75);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-yt-bar span {
  color: white;
  font-size: 0.82rem;
}

.video-yt-logo {
  color: #ff0000;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photo-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
  cursor: pointer;
}

.photo-gallery img:hover { transform: scale(1.03); }

/* ===== TOURS SECTION ===== */
#tours {
  padding: 90px 0;
  background: var(--white);
}

.tours-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tours-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 2px solid var(--light-gray);
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.tour-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-img img { transform: scale(1.07); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-badge.hot { background: #e53935; }
.tour-badge.new { background: #43a047; }

.tour-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}

.tour-wishlist:hover { background: white; transform: scale(1.1); }
.tour-wishlist.active { color: #e53935; }

.tour-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-city {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 6px;
}

.tour-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.tour-card-body p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.tour-card-features {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tour-feature {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-feature-icon { font-size: 0.9rem; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.tour-price-from {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tour-price-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.tour-price-per {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== GUIDES SECTION ===== */
#guides {
  padding: 90px 0;
  background: var(--light-bg);
}

.guides-header { text-align: center; margin-bottom: 50px; }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guide-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guide-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(232,134,58,0.25);
}

.guide-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.guide-specialty {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.guide-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

.guide-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.guide-stat {
  text-align: center;
}

.guide-stat .num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.guide-stat .lbl {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.guide-langs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lang-tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--light-bg);
  color: var(--text-mid);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 90px 0;
  background: var(--primary);
  overflow: hidden;
}

.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-header .section-title { color: white; }
.testimonials-header .section-subtitle { color: rgba(255,255,255,0.7); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 340px;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author-info .name {
  font-weight: 700;
  color: white;
  font-size: 0.92rem;
}

.testimonial-author-info .trip {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.t-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.t-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== WHY US ===== */
#why-us {
  padding: 90px 0;
  background: white;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-us-item {
  text-align: center;
  padding: 30px 20px;
}

.why-us-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(26,58,92,0.2);
}

.why-us-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-us-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== BOOKING / PURCHASE FORM ===== */
#booking {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #2557a7 100%);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.booking-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.25;
}

.booking-info p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 28px;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

.booking-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(232,134,58,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.booking-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.booking-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.form-success h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
}

.contact-item-text .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.contact-item-text .val {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

/* ===== NEWSLETTER ===== */
#newsletter {
  padding: 70px 0;
  background: var(--accent);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.newsletter-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--text-dark); }

/* ===== FOOTER ===== */
#footer {
  background: #0f1e2e;
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--accent);
  color: white;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
}

.footer-bottom a { color: var(--accent); }

/* ===== PAGE TABS (Guides etc) ===== */
.page-tabs-wrap {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 40px;
}

.page-tab {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition);
}

.page-tab:hover { color: var(--primary); }
.page-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
  background: var(--light-bg);
}

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  z-index: 9999;
  max-width: 320px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}

.notification.show { transform: translateX(0); }

.notification-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-inner { gap: 30px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0; right: 0; bottom: 0;
    background: var(--primary);
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
  }

  .mega-menu { display: none !important; }
  .dropdown-menu { display: none !important; }

  .hero-stats { display: none; }
  .cities-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .search-inner { flex-direction: column; border-radius: var(--radius); margin: -20px 20px 0; }
  .search-field { border-right: none; border-bottom: 1px solid var(--light-gray); }
  .search-btn { padding: 18px; width: 100%; justify-content: center; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .tours-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .guides-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeup {
  animation: fadeUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
