@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --accent-50: #fff7ed;
  --accent-100: #ffedd5;
  --accent-200: #fed7aa;
  --accent-300: #fdba74;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --accent-700: #c2410c;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-800);
  background: linear-gradient(to bottom, var(--slate-50), #fff);
  line-height: 1.6;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header_logo{
  width: 100px;
}
/* Buttons */
.btn-primary {
  background: linear-gradient(to right, var(--accent-500), var(--accent-600));
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  padding: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.header.scrolled .logo-icon {
  background: linear-gradient(to bottom right, var(--primary-500), var(--accent-500));
}

.logo-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.logo-text {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s;
}

.header.scrolled .logo-text {
  color: var(--slate-800);
}

.logo-subtitle {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: color 0.3s;
}

.header.scrolled .logo-subtitle {
  color: var(--slate-500);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s;
}

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

.header.scrolled .nav-link {
  color: var(--slate-700);
}

.header.scrolled .nav-link::after {
  background: var(--primary-600);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.header.scrolled .lang-btn {
  background: var(--slate-100);
  color: var(--slate-700);
}

.book-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  background: white;
  color: var(--primary-600);
  text-decoration: none;
  transition: all 0.3s;
}

.header.scrolled .book-btn {
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}

.header.scrolled .mobile-menu-btn {
  color: var(--slate-700);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: var(--slate-100);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/kyrgyzstan.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.6), rgba(15,23,42,0.4), rgba(15,23,42,0.7));
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,74,110,0.3), rgba(194,65,12,0.3));
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-highlight {
  background: linear-gradient(to right, var(--primary-300), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 2rem;
  }
}

.hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .hero-stat {
    padding: 1.5rem;
  }
}

.hero-stat:hover {
  background: rgba(255,255,255,0.15);
}

.hero-stat svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-400);
  margin: 0 auto 0.5rem;
}

@media (min-width: 768px) {
  .hero-stat svg {
    width: 2rem;
    height: 2rem;
  }
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 1.875rem;
  }
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .hero-stat-label {
    font-size: 0.875rem;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  text-align: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-indicator:hover {
  color: white;
}

.scroll-indicator span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-badge.primary {
  background: var(--primary-100);
  color: var(--primary-700);
}

.section-badge.accent {
  background: var(--accent-100);
  color: var(--accent-700);
}

.section-badge.yellow {
  background: #fef3c7;
  color: #b45309;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title .highlight {
  background: linear-gradient(to right, var(--primary-600), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
}

/* About Section */
.about {
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

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

.about-image-bg {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, var(--primary-500), var(--accent-500));
  border-radius: 1.5rem;
  transform: rotate(3deg);
  opacity: 0.2;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 16rem;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.about-card-icon {
  padding: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary-500), var(--accent-500));
  border-radius: 0.75rem;
}

.about-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.about-card-title {
  font-weight: 700;
  color: var(--slate-800);
}

.about-card-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.about-stars {
  display: flex;
  gap: 0.25rem;
}

.about-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
  fill: currentColor;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 3rem;
  }
}

.about-text {
  color: var(--slate-600);
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text .intro {
  font-size: 1.125rem;
}

.about-quote {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate-700);
  font-style: italic;
  border-left: 4px solid var(--accent-500);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.about-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--slate-700);
}

.about-highlights svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
  flex-shrink: 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-feature {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid var(--slate-100);
  transition: box-shadow 0.3s;
}

.about-feature:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-feature svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-500);
  margin-bottom: 0.5rem;
}

.about-feature h4 {
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* Tours Section */
.tours {
  background: white;
  position: relative;
  overflow: hidden;
}

.tours-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tours-tabs-inner {
  display: inline-flex;
  background: var(--slate-100);
  border-radius: 9999px;
  padding: 0.375rem;
}

.tour-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: var(--slate-600);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tour-tab:hover {
  color: var(--slate-800);
}

.tour-tab.active {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tour-tab.active.half-day {
  color: var(--primary-600);
}

.tour-tab.active.full-day {
  color: var(--accent-600);
}

.tour-tab svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tour-tab-count {
  margin-left: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  background: var(--slate-200);
  color: var(--slate-600);
}

.tour-tab.active.half-day .tour-tab-count {
  background: var(--primary-100);
  color: var(--primary-600);
}

.tour-tab.active.full-day .tour-tab-count {
  background: var(--accent-100);
  color: var(--accent-600);
}

/* Tour tabs mobile responsive */
@media (max-width: 767px) {
  .tours-tabs {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .tours-tabs-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.5rem;
    width: 100%;
  }

  .tour-tab {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }

  .tour-tab svg {
    display: none;
  }

  .tour-tab-count {
    padding: 0.125rem 0.375rem;
    font-size: 0.625rem;
  }
}

@media (max-width: 480px) {
  .tours-tabs-inner {
    gap: 0.375rem;
  }

  .tour-tab {
    padding: 0.5rem 0.625rem;
    font-size: 0.8rem;
  }
}

.tours-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tour-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.5s;
}

.tour-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-8px);
}

.tour-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

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

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

.tour-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.tour-badge.half-day {
  background: var(--primary-500);
  color: white;
}

.tour-badge.full-day {
  background: var(--accent-500);
  color: white;
}

.tour-difficulty {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.tour-difficulty.easy {
  background: #dcfce7;
  color: #15803d;
}

.tour-difficulty.moderate {
  background: #fef3c7;
  color: #b45309;
}

.tour-difficulty.challenging {
  background: #fee2e2;
  color: #b91c1c;
}

.tour-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
}

.tour-duration svg {
  width: 1rem;
  height: 1rem;
}

.tour-card-content {
  padding: 1.5rem;
}

.tour-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tour-best-for {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 0.75rem;
}

.tour-best-for svg {
  width: 1rem;
  height: 1rem;
}

.tour-description {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-highlights {
  margin-bottom: 1rem;
}

.tour-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.tour-highlights li svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary-500);
  flex-shrink: 0;
}

.tour-more {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.tour-included {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tour-included span {
  padding: 0.25rem 0.5rem;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.75rem;
  border-radius: 9999px;
}

.tour-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(to right, var(--slate-50), var(--primary-50));
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

.tour-cta:hover {
  background: linear-gradient(to right, var(--primary-50), var(--primary-100));
}

.tour-cta span {
  font-weight: 600;
  color: var(--slate-700);
  transition: color 0.3s;
}

.tour-cta:hover span {
  color: var(--primary-600);
}

.tour-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-400);
  transition: all 0.3s;
}

.tour-cta:hover svg {
  color: var(--primary-600);
  transform: translateX(4px);
}

.tours-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Stats Section */
.stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop') center/cover fixed no-repeat;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,74,110,0.9), rgba(194,65,12,0.9));
}

.stats-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Gallery Section */
.gallery {
  background: var(--slate-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 767px) {
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery-item-inner {
  aspect-ratio: 1;
  position: relative;
}

.gallery-item.large .gallery-item-inner {
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .gallery-item.large .gallery-item-inner {
    aspect-ratio: 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.7), rgba(15,23,42,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-content {
  opacity: 1;
}

.gallery-item-content h4 {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.gallery-item-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

.gallery-zoom svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 50%;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

.lightbox-nav svg {
  width: 2rem;
  height: 2rem;
}

.lightbox-content {
  max-width: 80rem;
  max-height: 90vh;
  padding: 1rem;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-caption {
  margin-top: 1rem;
}

.lightbox-caption h4 {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.lightbox-caption p {
  color: rgba(255,255,255,0.7);
}

/* Reviews Section */
.reviews {
  background: white;
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  position: relative;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 20;
}

@media (min-width: 768px) {
  .reviews-nav {
    display: flex;
  }
}

.reviews-nav:hover {
  background: var(--slate-50);
}

.reviews-nav.prev {
  left: -1rem;
}

.reviews-nav.next {
  right: -1rem;
}

.reviews-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-600);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--slate-50);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }

  .review-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .review-card:not(.featured) {
    opacity: 0.8;
  }
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-200);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
  fill: currentColor;
}

.review-text {
  color: var(--slate-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-tour {
  font-size: 0.875rem;
  color: var(--primary-600);
  font-weight: 500;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
  color: var(--slate-800);
}

.review-author-country {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.reviews-mobile-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .reviews-mobile-nav {
    display: none;
  }
}

.reviews-mobile-nav button {
  width: 3rem;
  height: 3rem;
  background: var(--slate-100);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-mobile-nav button svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-600);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--slate-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  width: 2rem;
  background: var(--primary-500);
}

.reviews-dot:hover {
  background: var(--slate-400);
}

/* Contact Section */
.contact {
  background: linear-gradient(to bottom, var(--slate-50), white);
  position: relative;
  overflow: hidden;
}

.contact-card {
  max-width: 56rem;
  margin: 0 auto;
  background: linear-gradient(to bottom right, var(--primary-600), var(--accent-600));
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-card {
    padding: 3rem;
  }
}

.contact-card-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-card-header h3 {
    font-size: 1.875rem;
  }
}

.contact-card-header p {
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.25rem;
  text-decoration: none;
  color: white;
  transition: background 0.3s;
}

.contact-item:hover {
  background: rgba(255,255,255,0.2);
}

.contact-item-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.1);
}

.contact-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-item-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-weight: 600;
  font-size: 1.125rem;
}

.contact-social {
  text-align: center;
}

.contact-social-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-social-link:hover {
  transform: scale(1.05);
}

.contact-social-link.whatsapp {
  background: #22c55e;
}

.contact-social-link.whatsapp:hover {
  background: #16a34a;
}

.contact-social-link.instagram {
  background: linear-gradient(to bottom right, #a855f7, #ec4899, #f97316);
}

.contact-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-buttons {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-button:hover {
  transform: scale(1.02);
}

.contact-button.whatsapp {
  background: #22c55e;
}

.contact-button.whatsapp:hover {
  background: #16a34a;
}

.contact-button.email {
  background: var(--primary-500);
}

.contact-button.email:hover {
  background: var(--primary-600);
}

.contact-button svg {
  width: 1.5rem;
  height: 1.5rem;
}

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

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-99%);
}

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

.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  padding: 0.5rem;
  background: linear-gradient(to bottom right, var(--primary-500), var(--accent-500));
  border-radius: 0.75rem;
}

.footer-logo-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-logo-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-400);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-description {
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--slate-800);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #22c55e;
}

.footer-social a.instagram:hover {
  background: #ec4899;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
}

.footer-contact-item a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: white;
}

.footer-contact-item span {
  color: var(--slate-400);
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--slate-500);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: white;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.scroll-top svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

/* Tour Detail Page */
.tour-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tour-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tour-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8), rgba(15,23,42,0.3), transparent);
}

.tour-detail-hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
  width: 100%;
}

.tour-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.tour-detail-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.tour-detail-breadcrumb a:hover {
  color: white;
}

.tour-detail-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tour-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .tour-detail-title {
    font-size: 3.5rem;
  }
}

.tour-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255,255,255,0.8);
}

.tour-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-detail-meta-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.tour-detail-content {
  padding: 4rem 0;
}

.tour-detail-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .tour-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.tour-detail-section {
  margin-bottom: 2.5rem;
}

.tour-detail-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.tour-detail-section p {
  color: var(--slate-600);
  line-height: 1.8;
}

.tour-detail-list {
  list-style: none;
}

.tour-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--slate-600);
}

.tour-detail-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.tour-detail-sidebar {
  position: sticky;
  top: 6rem;
}

.tour-detail-cta-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
}

.tour-detail-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}

.tour-detail-cta-card p {
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

.tour-detail-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-600);
  text-decoration: none;
  margin-top: 2rem;
  transition: color 0.3s;
}

.tour-detail-back:hover {
  color: var(--primary-600);
}

.tour-detail-back svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-500), var(--accent-500));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--primary-600), var(--accent-600));
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Why Me Section */
.why-me {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
  position: relative;
  overflow: hidden;
}

.why-me::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-me-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-me-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .why-me-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-me-card {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.why-me-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-500), var(--accent-500));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-me-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.why-me-card:hover::before {
  transform: scaleX(1);
}

.why-me-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.why-me-card:hover .why-me-icon {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
}

.why-me-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-600);
  transition: color 0.3s ease;
}

.why-me-card:hover .why-me-icon svg {
  color: white;
}

.why-me-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
}

.why-me-card p {
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Multi-day tab styles */
.tour-tab.active.multi-day {
  color: #059669;
}

.tour-tab.active.multi-day .tour-tab-count {
  background: #d1fae5;
  color: #059669;
}

.tour-badge.multi-day {
  background: #059669;
  color: white;
}

/* Telegram social link */
.contact-social-link.telegram {
  background: #0088cc;
}

.contact-social-link.telegram:hover {
  background: #006699;
}
