/* ═══════════════════════════════════════════════════════════
   BAGOMARI TRAVEL — Main Stylesheet
   Design: Forest green + Georgian gold on warm parchment
═══════════════════════════════════════════════════════════ */

:root {
  --dark:    #0C1C10;
  --green:   #1A5C35;
  --green2:  #24844D;
  --gold:    #C9A84C;
  --gold2:   #E8C76A;
  --cream:   #F7F3EE;
  --white:   #FFFFFF;
  --text:    #1E1E1E;
  --text-mid:#4A4A4A;
  --text-lt: #7A7A7A;
  --border:  #E0DAD0;
  --shadow:  rgba(12,28,16,.15);
  --radius:  12px;
  --radius-sm:8px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Noto Sans Georgian', sans-serif;
  --transition:   .3s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ── Section helpers ───────────────────────────────── */
.section { padding: 90px 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 30px;
}
.section-title span { color: var(--green); }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  margin: 0 0 40px;
  border-radius: 2px;
}
.text-center { text-align: center; }
.text-center .section-divider { margin: 0 auto 40px; }

/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 4px 24px var(--shadow);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--green2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.logo-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }

/* Language Switcher */
.lang-switcher { position: relative; margin-left: 8px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,.2); }
.lang-btn .fa-chevron-down {
  font-size: 10px; transition: transform var(--transition);
}
.lang-switcher.open .lang-btn .fa-chevron-down { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  overflow: hidden;
  min-width: 150px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 14px; color: var(--text);
  transition: background var(--transition);
}
.lang-option:hover { background: var(--cream); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-nav.open { display: flex; max-height: 600px; }
.mob-link {
  color: rgba(255,255,255,.8);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all var(--transition);
}
.mob-link:hover, .mob-link.active {
  background: rgba(201,168,76,.15);
  color: var(--gold);
}
.mob-lang {
  display: flex; gap: 10px; padding: 14px 16px 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 10px;
}
.mob-lang-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  transition: all var(--transition);
}
.mob-lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

/* ════════════════════════════════════════════════════
   FLOATING CONTACT BUTTONS
════════════════════════════════════════════════════ */
.float-contacts {
  position: fixed; right: 20px; bottom: 30px;
  z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.viber    { background: #7360F2; }
.float-btn.facebook { background: #1877F2; }

/* ════════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slides { height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,28,16,.5) 0%,
    rgba(12,28,16,.35) 50%,
    rgba(12,28,16,.7) 100%
  );
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.hero-inner { max-width: 800px; }
.hero-sub-text {
  font-size: 13px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: block;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s .5s forwards;
}
.slide-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s .7s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 1px;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
}

/* Slider controls */
.hero-arrows {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px; z-index: 10;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px; border-radius: 4px;
}
.hero-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* Hero wave bottom */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 0;
  position: relative; z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--border);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--green); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 12px; color: var(--text-lt);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px;
}

/* ════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════ */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26,92,53,.4);
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-img-badge span { font-size: 12px; opacity: .85; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.about-feature:hover { box-shadow: 0 4px 20px var(--shadow); }
.about-feature i {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--green2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; flex-shrink: 0;
}
.about-feature span { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; padding-top:2px; }
.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-green:hover {
  background: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,92,53,.35);
}

/* ════════════════════════════════════════════════════
   TOURS SECTION
════════════════════════════════════════════════════ */
.tours-section { background: var(--white); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}
.tour-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.tour-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.06); }
.tour-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
}
.tour-price-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
}
.tour-price-tag small { font-size: 10px; opacity: .7; }
.tour-body { padding: 20px; }
.tour-meta {
  display: flex; gap: 16px;
  margin-bottom: 10px;
}
.tour-meta span {
  font-size: 12px; color: var(--text-lt);
  display: flex; align-items: center; gap: 5px;
}
.tour-meta i { color: var(--gold); }
.tour-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
  line-height: 1.3;
}
.tour-desc {
  font-size: 13px; color: var(--text-mid);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-footer {
  display: flex; gap: 10px;
}
.btn-sm {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-sm.green { background: var(--green); color: var(--white); }
.btn-sm.green:hover { background: var(--green2); }
.btn-sm.outline-green {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-sm.outline-green:hover { background: var(--green); color: var(--white); }
.tours-more { text-align: center; margin-top: 50px; }

/* ════════════════════════════════════════════════════
   DESTINATIONS
════════════════════════════════════════════════════ */
.dest-section { background: var(--cream); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.dest-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,28,16,.85) 0%, rgba(12,28,16,.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
  margin-bottom: 8px;
}
.dest-card:first-child .dest-name { font-size: 2.2rem; }
.dest-region { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.dest-explore-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
  width: fit-content;
}
.dest-card:hover .dest-explore-btn {
  background: var(--gold);
  color: var(--dark);
}

/* ════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: 10px; cursor: pointer;
  position: relative;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(12,28,16,.5);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 32px;
  cursor: pointer; opacity: .8;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ════════════════════════════════════════════════════
   FACEBOOK PLUGIN SECTION
════════════════════════════════════════════════════ */
.fb-section {
  background: linear-gradient(135deg, #0C1C10, #1A3320);
  padding: 80px 0;
  text-align: center;
}
.fb-section .section-label { color: var(--gold); }
.fb-section .section-title { color: var(--white); }
.fb-section .section-divider { margin: 0 auto 40px; }
.fb-section p { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.fb-plugin-wrap {
  display: flex; justify-content: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { }
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}
.ci-label { font-size: 12px; color: var(--text-lt); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.ci-value { font-size: 15px; color: var(--text); font-weight: 500; margin-top: 2px; }
.ci-value a { color: var(--text); transition: color var(--transition); }
.ci-value a:hover { color: var(--green); }
.social-links { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.social-link.wa { background: #E8FDF1; color: #25D366; border: 1.5px solid #25D366; }
.social-link.vb { background: #F0EDFF; color: #7360F2; border: 1.5px solid #7360F2; }
.social-link.fb { background: #E8F0FE; color: #1877F2; border: 1.5px solid #1877F2; }
.social-link:hover { opacity: .85; transform: translateY(-1px); }

/* Contact Form */
.contact-form { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: 0 8px 32px var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .3px; }
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,92,53,.1);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert {
  padding: 14px 18px; border-radius: 10px;
  margin-bottom: 18px; font-size: 14px; font-weight: 500;
  display: none;
}
.alert.success { background: #E8FDF1; color: #1A7A40; border: 1px solid #A8E6C0; display: block; }
.alert.error   { background: #FEE; color: #C0392B; border: 1px solid #F5C6CB; display: block; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.8); }
.footer-wave { background: var(--cream); line-height: 0; }
.footer-wave svg path { fill: var(--dark); }
.footer-body { padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo i { color: var(--gold); font-size: 1.8rem; }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col h4 {
  font-size: 14px; font-weight: 700;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.65); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul a i { color: var(--gold); width: 16px; flex-shrink: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.65); font-size: 14px;
  margin-bottom: 10px;
}
.contact-list li i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-list li a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom-lang { display: flex; gap: 8px; }
.footer-bottom-lang a {
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-bottom-lang a.active,
.footer-bottom-lang a:hover { background: var(--gold); color: var(--dark); }

/* ════════════════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1A3320 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1565008576549-57e7e3e3d5b4?w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: .12;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.7); font-size: 15px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 13px; color: rgba(255,255,255,.6);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid  { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand-col { grid-column: span 2; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .tours-grid  { grid-template-columns: 1fr; }
  .dest-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .brand-col { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-badge { right: 0; bottom: -10px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-item { padding: 18px 10px; }
  .stat-num { font-size: 1.8rem; }
  .about-features { grid-template-columns: 1fr; }
}

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