/* =============================================
   DAMQ TRAVEL - Premium Tourism Website Styles
   ============================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a1a2e;
  --color-accent: #c9a96e;
  --color-accent-dark: #b08d4f;
  --color-white: #ffffff;
  --color-offwhite: #f7f5f0;
  --color-light: #eae6df;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-dark: #0f0f1a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  text-wrap: balance;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar.menu-open {
  background: var(--color-primary) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 12px 0;
  box-shadow: none !important;
}

.navbar-container {
  width: 100%;
  margin: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

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

.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 4px;
}

.navbar-logo .logo-divider {
  width: 1px;
  height: 24px;
  background: var(--color-accent);
  opacity: 0.6;
}

.navbar-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-phone:hover {
  color: var(--color-accent);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-cta-nav:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.15);
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  padding: 0;
}

.navbar-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  pointer-events: none;
}

.navbar-toggle:hover,
.navbar-toggle:active {
  background: rgba(201, 169, 110, 0.25);
  border-color: rgba(201, 169, 110, 0.6);
}

.navbar-toggle.active .toggle-open {
  display: none !important;
}

.navbar-toggle.active .toggle-close {
  display: block !important;
}

/* Mobile Menu — lives inside the <nav>, uses the nav's z-index */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease 0.15s;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateY(0);
  opacity: 1;
}

.mobile-links li {
  margin-bottom: 24px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--color-accent);
}

.mobile-menu-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-phone {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.mobile-cta {
  font-size: 15px;
  padding: 14px 36px;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 26, 0.5) 0%,
    rgba(15, 15, 26, 0.3) 40%,
    rgba(15, 15, 26, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid var(--color-accent);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 1.1s forwards;
  opacity: 0;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.hero-stats-inner {
  width: 100%;
  margin: 0 auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ---------- Section Common ---------- */
.section {
  padding: 120px 0;
}

.section-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
  text-wrap: pretty;
}

/* ---------- About Section ---------- */
.about {
  background: var(--color-offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-float-card .float-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.about-float-card .float-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.about-content {
  padding: 20px 0;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}

.about-title {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.about-feature-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ---------- Tours Section ---------- */
.tours-slider-wrap {
  position: relative;
  padding: 0 32px;
}

.tours-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tours-slider-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.4);
}

.tours-slider-arrow.arrow-left {
  left: -12px;
}

.tours-slider-arrow.arrow-right {
  right: -12px;
}

.tours-slider-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ---------- Day Tours Grid (One-day tours more visible) ---------- */
#dayToursSlider .tours-grid > .tour-card {
  min-width: calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}

/* ---------- Small size for One-day tours ---------- */
/* Apply same small size to Full Tours slider as well */
#dayToursSlider .tour-card-image,
#fullToursSlider .tour-card-image {
  height: 240px;
}

#dayToursSlider .tour-card-body,
#fullToursSlider .tour-card-body {
  padding: 24px 22px;
}

#dayToursSlider .tour-card-title,
#fullToursSlider .tour-card-title {
  font-size: 20px;
  margin-bottom: 10px;
}

#dayToursSlider .tour-card-desc,
#fullToursSlider .tour-card-desc {
  font-size: 13px;
  margin-bottom: 16px;
}

#dayToursSlider .tour-card-meta,
#fullToursSlider .tour-card-meta {
  padding-top: 16px;
  gap: 16px;
}

#dayToursSlider .tour-meta-item,
#fullToursSlider .tour-meta-item {
  font-size: 12px;
}

#dayToursSlider .tour-price-value,
#fullToursSlider .tour-price-value {
  font-size: 22px;
}

#dayToursSlider .btn-tour,
#fullToursSlider .btn-tour {
  padding: 9px 20px;
  font-size: 12px;
}

/* 4 day tours per row */
#dayToursSlider .tours-grid > .tour-card {
  min-width: calc(25% - 24px);
  max-width: calc(25% - 24px);
}

/* 3 full tours per row */
#fullToursSlider .tours-grid > .tour-card {
  min-width: calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}

@media (max-width: 1400px) {
  #dayToursSlider .tours-grid > .tour-card,
  #fullToursSlider .tours-grid > .tour-card {
    min-width: calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
  }
}

@media (max-width: 1024px) {
  #dayToursSlider .tours-grid > .tour-card,
  #fullToursSlider .tours-grid > .tour-card {
    min-width: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

.tours-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}

.tours-grid::-webkit-scrollbar {
  display: none;
}

.tours-grid > .tour-card {
  min-width: calc(50% - 16px);
  max-width: calc(50% - 16px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.tours-grid > .tour-card:nth-child(n+3) {
  min-width: calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}

.tours-grid > .tour-featured {
  min-width: calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.tour-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(201, 169, 110, 0.3);
}

.tour-card-image {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.tour-card-save {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tour-card-save:hover {
  background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
  color: var(--color-white);
  transform: scale(1.15);
}

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

.tour-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tour-card-title {
  font-size: 24px;
  margin-bottom: 14px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.tour-card:hover .tour-card-title {
  color: var(--color-accent);
}

.tour-card-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  margin-top: auto;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.tour-meta-item svg {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.5) 0%, rgba(232, 232, 232, 0.3) 100%);
}

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

.tour-price-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.tour-price-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.tour-price-value small {
  font-size: 14px;
  font-weight: 500;
  color: #999;
  margin-top: 4px;
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d4a 100%);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-tour:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d4af37 100%);
  color: var(--color-primary);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* ---------- Multi-day tours BLUE Theme ---------- */
#fullToursSlider .tour-card {
  background: #1a1a2e;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
#fullToursSlider .tour-card:hover {
  border-color: #c9a96e;
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
#fullToursSlider .tour-card-title {
  color: #ffffff;
}
#fullToursSlider .tour-card:hover .tour-card-title {
  color: #c9a96e;
}
#fullToursSlider .tour-card-desc {
  color: rgba(255, 255, 255, 0.7);
}
#fullToursSlider .tour-card-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}
#fullToursSlider .tour-meta-item {
  color: rgba(255, 255, 255, 0.7);
}
#fullToursSlider .tour-meta-item svg {
  color: #c9a96e;
}
#fullToursSlider .tour-card-footer {
  background: rgba(0, 0, 0, 0.2);
}
#fullToursSlider .tour-price-value {
  color: #ffffff;
}
#fullToursSlider .tour-price-label {
  color: rgba(255, 255, 255, 0.5);
}
#fullToursSlider .tour-price-value small {
  color: rgba(255, 255, 255, 0.5);
}
#fullToursSlider .btn-tour {
  background: #c9a96e;
  color: #1a1a2e;
}
#fullToursSlider .btn-tour:hover {
  background: #ffffff;
  color: #1a1a2e;
}

/* Featured Tour (Wide Card) */
.tour-featured {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(201, 169, 110, 0.15);
  height: 100%;
}

.tour-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(201, 169, 110, 0.3);
}

.tour-featured .tour-featured-image {
  position: relative;
  overflow: hidden;
  height: 340px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tour-featured .tour-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-featured:hover .tour-featured-image img {
  transform: scale(1.12);
}

.tour-featured-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-featured-title {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.tour-featured:hover .tour-featured-title {
  color: var(--color-accent);
}

.tour-featured-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-featured-details {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 24px;
}

.tour-featured-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.tour-featured-detail svg {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
}

.tour-featured-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-featured-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.tour-featured-price small {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  display: block;
  margin-top: 4px;
}

.btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}

.btn-featured:hover {
  background: linear-gradient(135deg, #2d2d4a 0%, #3d3d5a 100%);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ---------- Map Section ---------- */
.map-section {
  background: var(--color-primary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.map-section .section-tag {
  color: var(--color-accent);
}

.map-section .section-title {
  color: var(--color-white);
}

.map-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(201, 169, 110, 0.3);
  max-width: 1000px;
  margin: 0 auto;
}

.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.gold { background: var(--color-accent); }
.legend-dot.white { background: var(--color-white); }
.legend-dot.green { background: #4ade80; }

/* ---------- Reviews Section ---------- */
.reviews {
  background: var(--color-offwhite);
}

.reviews-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: 100%;
  padding: 0 20px;
}

.review-card-inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.review-quote {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 1;
  color: rgba(201, 169, 110, 0.1);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.review-stars svg {
  color: var(--color-accent);
}

.review-text {
  font-size: 19px;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 32px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.review-info h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.review-info p {
  font-size: 13px;
  color: var(--color-text-light);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.review-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid var(--color-light);
  border-radius: 50%;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition);
}

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

.reviews-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.review-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

/* ---------- Video Modal ---------- */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.video-modal {
  position: relative;
  width: 94%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.video-modal-overlay.active .video-modal {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-modal-close:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.video-modal-content {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark);
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

/* ---------- Add Review Section ---------- */
.add-review-section {
  max-width: 700px;
  margin: 72px auto 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.add-review-title {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.add-review-subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 36px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.review-form .form-group {
  margin-bottom: 16px;
}

.review-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.review-form .form-group input,
.review-form .form-group select,
.review-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-offwhite);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: all var(--transition-fast);
  outline: none;
}

.review-form .form-group input:focus,
.review-form .form-group select:focus,
.review-form .form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
  background: var(--color-white);
}

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

.review-form .form-group input::placeholder,
.review-form .form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 6px;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-light);
  transition: all var(--transition-fast);
  border-radius: 4px;
}

.star-btn:hover {
  transform: scale(1.15);
}

.star-btn.active svg {
  fill: var(--color-accent);
  stroke: var(--color-accent);
  color: var(--color-accent);
}

.star-btn.hover svg {
  fill: var(--color-accent);
  stroke: var(--color-accent);
  color: var(--color-accent);
  opacity: 0.7;
}

.btn-submit-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 36px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-submit-review:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

/* New review card appended dynamically */
.review-card .review-avatar {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .add-review-section {
    padding: 32px 24px;
    margin-top: 48px;
  }
  .review-form-row {
    grid-template-columns: 1fr;
  }
  .video-modal-close {
    top: -44px;
  }
}

/* ---------- Contact Section ---------- */
.contact {
  position: relative;
  overflow: hidden;
}

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

.contact-content {
  padding: 20px 0;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.contact-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}

.contact-title {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

.contact-form-wrap {
  background: var(--color-offwhite);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-white);
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.6;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 36px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary);
  position: relative;
}

.footer-wave {
  color: var(--color-offwhite);
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 4px;
}

.footer-logo .logo-divider {
  width: 1px;
  height: 20px;
  background: var(--color-accent);
  opacity: 0.6;
}

.footer-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 3px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-list li {
  margin-bottom: 14px;
}

.footer-list a,
.footer-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer-list a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contacts svg {
  color: var(--color-accent);
  margin-top: 2px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

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

.footer-admin {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
}

.footer-admin:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate3d {
  0% { transform: perspective(1000px) rotateY(0deg); }
  100% { transform: perspective(1000px) rotateY(360deg); }
}

.anim-3d-rotate {
  animation: rotate3d 10s linear infinite;
  transform-style: preserve-3d;
}

/* 3D Carousel Spinner (Y-axis rotation) */
@keyframes spin-3d {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-360deg); }
}

.anim-spin-3d {
  animation: spin-3d 20s linear infinite;
  transform-style: preserve-3d;
}

/* Orbit Animation (Rotating around a center point) */
@keyframes orbit-circle {
  0%   { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.anim-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px; /* Half of element height */
  margin-left: -50px; /* Half of element width */
  animation: orbit-circle 12s linear infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ---------- Leaflet Map ---------- */
#georgia-map {
  height: 500px;
  width: 100%;
  background: #f5f5f5;
  border-radius: var(--radius-lg);
}

#georgia-map .leaflet-control-zoom a {
  background: #fff;
  color: #1a1a2e;
  border-color: rgba(0, 0, 0, 0.15);
}

#georgia-map .leaflet-control-zoom a:hover {
  background: #c9a96e;
  color: #fff;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
  font-family: var(--font-body) !important;
  width: 260px !important;
}

/* ---------- Seasons Section ---------- */
.seasons-section {
  background: var(--color-offwhite);
}

.season-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.season-card {
  flex: 1 1 0;
  max-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-light);
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.season-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.season-card:hover .season-card-img img {
  transform: scale(1.08);
}

.season-card-body {
  padding: 1.4rem 1.3rem 1.5rem;
  text-align: center;
}

.season-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: -44px auto 0.8rem;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border: 3px solid var(--color-white);
}

.season-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.season-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.season-card-months {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .season-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .season-card {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
  }
  .season-card-img {
    height: 140px;
  }
  .season-card-body {
    padding: 1.2rem 1rem 1.3rem;
  }
}

@media (max-width: 480px) {
  .season-cards {
    gap: 12px;
  }
  .season-card {
    flex: 1 1 calc(50% - 6px);
  }
  .season-card-img {
    height: 110px;
  }
  .season-card-body {
    padding: 1rem 0.7rem 1.1rem;
  }
  .season-card-icon {
    width: 44px;
    height: 44px;
    margin-top: -34px;
  }
  .season-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .season-card h4 {
    font-size: 0.95rem;
  }
  .season-card-desc {
    font-size: 0.78rem;
  }
}

.custom-popup .leaflet-popup-content-wrapper {
  padding: 0 !important;
}

/* Map popup structure */
.map-popup {
  display: flex;
  flex-direction: column;
}

.map-popup-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  position: relative;
}

.map-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-popup-body {
  padding: 12px 14px 14px;
}

.map-popup-title {
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  color: var(--color-primary) !important;
  margin: 0 0 4px !important;
  font-weight: 700;
}

.map-popup-desc {
  font-size: 12px !important;
  color: var(--color-text-light) !important;
  margin: 0 0 8px !important;
  line-height: 1.4;
}

.map-popup-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

.map-popup-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #c9a96e;
  text-decoration: none;
  transition: color 0.2s;
}

.map-popup-link:hover {
  color: #b8942e;
}

/* ---------- Page Header (for sub-pages) ---------- */
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.7) 100%);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  margin-top: 12px;
  margin-bottom: 16px;
}

.page-header-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Blog Grid ---------- */
.blog-grid {
  column-count: 3 !important;
  column-gap: 10px;
  display: block;
}

.blog-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
  position: relative;
  cursor: pointer;
}

.blog-card:hover {
  transform: none;
  box-shadow: none;
}

.blog-card-image {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  z-index: 1;
}

.blog-card-image img {
  width: 100%;
  height: auto !important;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
  opacity: 0.9;
}

.blog-card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.blog-card:hover .blog-card-category {
  opacity: 1;
}

.blog-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 16px;
}

.blog-card:hover .blog-card-body {
  opacity: 1;
}

.blog-card-meta {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  margin-bottom: 6px;
}

.blog-card-meta span:not(:last-child)::after {
  content: '•';
  margin-left: 12px;
  color: rgba(255,255,255,0.4);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-card:hover .blog-card-title {
  color: #fff;
}

.blog-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.blog-card-link:hover {
  gap: 10px;
  color: var(--color-accent);
}

.blog-photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.blog-video-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 5;
}
.blog-video-badge svg { display: block; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 30px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ---------- Tours Sub-Heading ---------- */
.tours-sub-heading {
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.tours-sub-heading h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.tours-sub-heading p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.tours-sub-heading:first-of-type {
  margin-top: 40px;
}

/* Tours Divider (Однодневные туры) */
.tours-divider {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 100px;
  margin-bottom: 50px;
  padding: 0 10px;
}

.tours-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.6), transparent);
}

.tours-divider-content {
  text-align: center;
  flex-shrink: 0;
}

.tours-divider-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.tours-divider-content p {
  font-size: 17px;
  color: #1a1a2e;
  font-weight: 600;
  max-width: 540px;
  line-height: 1.7;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
  position: relative;
  z-index: 1002;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(201, 169, 110, 0.12);
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-current:hover {
  background: rgba(201, 169, 110, 0.22);
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
}

.lang-current svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.lang-current .lang-arrow {
  transition: transform var(--transition);
}

.lang-switcher.active .lang-current .lang-arrow {
  transform: rotate(180deg);
}

.lang-switcher.active .lang-current {
  background: rgba(201, 169, 110, 0.25);
  border-color: var(--color-accent);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-option:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--color-white);
}

.lang-option.active {
  background: rgba(201, 169, 110, 0.18);
  color: var(--color-accent);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-accent);
}

.lang-option.active .lang-flag {
  background: rgba(201, 169, 110, 0.3);
  border-color: var(--color-accent);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 6px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50px;
}

.mobile-lang-btn {
  padding: 8px 20px;
  background: transparent;
  border: none;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-lang-btn.active {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

/* ---------- SVG Map Styles ---------- */
.georgia-svg-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark);
}

.georgia-svg-map svg {
  display: block;
}

.region-link {
  cursor: pointer;
  transition: all var(--transition);
}

.region-link:hover .region-path,
.region-link:focus .region-path {
  fill: rgba(201, 169, 110, 0.3);
  stroke: #c9a96e;
  stroke-width: 2.5;
  filter: url(#regionGlow);
}

.region-link:hover .region-dot,
.region-link:focus .region-dot {
  r: 7;
  fill: #c9a96e;
  filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.6));
}

.region-path {
  transition: all 0.3s ease;
}

.region-dot {
  transition: all 0.3s ease;
}

.region-dot-capital {
  filter: drop-shadow(0 0 8px rgba(201, 169, 110, 0.5));
}

/* Region Tooltip */
.region-tooltip {
  position: absolute;
  z-index: 10;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s ease;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.region-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.region-tooltip-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.region-tooltip-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 8px;
}

.region-tooltip-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201, 169, 110, 0.2);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
}

/* Region Cards Grid */
.region-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.region-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.region-card:hover,
.region-card.highlighted {
  background: rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
}

.region-card-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.region-card-info {
  flex: 1;
}

.region-card-info h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1px;
}

.region-card-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.region-card svg {
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-fast);
}

.region-card:hover svg,
.region-card.highlighted svg {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .region-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .tours-slider-arrow.arrow-left {
    left: -8px;
  }
  .tours-slider-arrow.arrow-right {
    right: -8px;
  }
}

@media (max-width: 1024px) {
  .navbar-links {
    display: none !important;
  }
  .navbar-phone {
    display: none !important;
  }
  .btn-cta-nav:not(.mobile-cta) {
    display: none !important;
  }
  .lang-switcher {
    display: none !important;
  }
  .navbar-toggle {
    display: flex !important;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-float-card {
    bottom: 20px;
    right: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .tour-featured {
    min-width: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .tour-featured .tour-featured-image {
    height: 280px;
  }
  .tour-featured-content {
    padding: 24px 20px;
  }
  .region-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #fullToursSlider .tours-grid > .tour-card {
    min-width: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  
  #dayToursSlider .tours-grid > .tour-card {
    min-width: calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .section-container {
    padding: 0 16px;
  }
  .footer-container {
    padding: 0 16px;
  }
  .navbar-container {
    padding: 0 16px;
  }
  .navbar-logo {
    flex-shrink: 0;
  }
  .navbar-actions {
    gap: 10px;
    flex-shrink: 0;
  }
  .navbar-toggle {
    margin-left: auto;
  }
  .hero {
    min-height: 550px;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 20px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .tours-grid {
    gap: 16px;
  }
  .tours-grid > .tour-card {
    min-width: 280px;
    max-width: 100%;
  }
  
  #fullToursSlider .tours-grid > .tour-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  #dayToursSlider .tours-grid > .tour-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .tours-grid > .tour-featured {
    min-width: 280px;
    max-width: 100%;
  }
  .tour-featured .tour-featured-image {
    height: 240px;
  }
  .tour-featured-content {
    padding: 20px 16px;
  }
  .tours-slider-arrow {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }
  .tours-slider-wrap {
    padding: 0 16px;
  }
  .tours-slider-arrow.arrow-left {
    left: -8px;
  }
  .tours-slider-arrow.arrow-right {
    right: -8px;
  }
  .tours-divider {
    margin-top: 50px;
    margin-bottom: 28px;
    gap: 14px;
  }
  .tours-divider-content h3 {
    font-size: clamp(22px, 3.5vw, 32px);
  }
  .tours-divider-content p {
    font-size: 14px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  #dayToursSlider .tour-card-image,
  #fullToursSlider .tour-card-image {
    height: 200px;
  }
  
  #dayToursSlider .tour-card-title,
  #fullToursSlider .tour-card-title {
    font-size: 18px;
  }
  
  #dayToursSlider .tour-price-value,
  #fullToursSlider .tour-price-value {
    font-size: 20px;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-left {
    flex-direction: column;
    gap: 10px;
  }
  .review-card-inner {
    padding: 32px 24px;
  }
  .review-text {
    font-size: 16px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  #georgia-map {
    height: 300px;
  }
  .region-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px;
  }
  .region-card {
    padding: 10px 12px;
  }
  .region-card-info h4 {
    font-size: 12px;
  }
  .region-card-info p {
    font-size: 10px;
  }
  .tour-featured-details {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-stats {
    display: none;
  }
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  .section-container {
    padding: 0 12px;
  }
  .footer-container {
    padding: 0 12px;
  }
  .navbar-container {
    padding: 0 12px;
  }
  .navbar-logo {
    flex-shrink: 0;
  }
  .navbar-logo .logo-text {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .navbar-logo .logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .navbar-logo .logo-divider {
    height: 18px;
  }
  .navbar-actions {
    gap: 8px;
    flex-shrink: 0;
  }
  .navbar-toggle {
    margin-left: auto;
  }
  .hero {
    min-height: 480px;
  }
  .hero-content {
    padding: 0 12px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: clamp(24px, 8vw, 36px);
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
  }
  .section-tag {
    font-size: 10px;
  }
  .section-title {
    font-size: clamp(22px, 6vw, 30px);
  }
  .section-subtitle {
    font-size: 13px;
  }
  .review-quote {
    display: none;
  }
  .review-card-inner {
    padding: 24px 16px;
  }
  .review-text {
    font-size: 14px;
  }
  .tour-card-content {
    padding: 20px 16px;
  }
  .tour-featured-content {
    padding: 24px 16px;
  }
  .tours-slider-arrow {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .tours-slider-wrap {
    padding: 0 20px;
  }
  .tours-slider-arrow.arrow-left {
    left: -6px;
  }
  .tours-slider-arrow.arrow-right {
    right: -6px;
  }
  .tours-divider {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 24px;
    gap: 10px;
  }
  .tours-divider-line {
    display: none;
  }
  .tours-divider-content h3 {
    font-size: clamp(20px, 5vw, 28px);
  }
  .tours-divider-content p {
    font-size: 13px;
  }
  #georgia-map {
    height: 240px;
  }
  .region-cards {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }
  .region-card-info h4 {
    font-size: 12px;
  }
  .region-card-info p {
    font-size: 10px;
  }
  .contact-form-wrap {
    padding: 24px 16px;
  }
  .contact-info h3 {
    font-size: 22px;
  }
  .mobile-link {
    font-size: 26px;
  }
  .mobile-links li {
    margin-bottom: 18px;
  }
  .lang-current span {
    display: none;
  }
  .lang-current {
    padding: 8px 10px;
  }
  .footer-col h3 {
    font-size: 14px;
  }
}

/* ---------- Sub-Page Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 280px;
  }
  .page-header-content {
    padding: 0 20px;
  }
  .page-header-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .blog-grid {
    column-count: 2 !important;
    column-gap: 8px;
  }
  .blog-card {
    margin-bottom: 8px;
  }
  .blog-card-body {
    padding: 12px;
  }
  .blog-card-title {
    font-size: 14px;
  }
  .blog-card-desc {
    display: none; /* Hide desc on mobile for cleaner look */
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    height: 220px;
  }
  .page-header-content {
    padding: 0 16px;
  }
  .page-header-title {
    font-size: 26px;
  }
  .page-header-subtitle {
    font-size: 13px;
  }
  .blog-card-body {
    padding: 16px;
  }
  .blog-card-title {
    font-size: 17px;
  }
  .service-card {
    padding: 24px 20px;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
