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

:root {
  --red:      #E8522A;
  --red-dk:   #C43D18;
  --red-lt:   #F47A57;
  --green:    #1E7E2E;
  --green-lt: #2EA040;
  --cream:    #FDF8F3;
  --dark:     #1A120B;
  --muted:    #7A6A5A;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6); pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.25s, height 0.25s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 54px; height: 54px; }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 3rem;
  background: rgba(253,248,243,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,82,42,0.1);
  transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
nav.scrolled {
  padding: 0.5rem 3rem;
  background: rgba(253,248,243,0.97);
  box-shadow: 0 4px 32px rgba(232,82,42,0.1);
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; cursor: pointer;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img {
  height: 52px; width: auto; object-fit: contain;
  transition: height 0.35s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(232,82,42,0.18));
}
nav.scrolled .nav-logo img { height: 44px; }
.nav-logo:hover img { filter: drop-shadow(0 4px 16px rgba(232,82,42,0.35)); }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; color: var(--muted);
  font-weight: 500; padding: 0.45rem 0.9rem; border-radius: 100px;
  position: relative; transition: color 0.2s, background 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px; background: var(--red);
  transition: left 0.25s ease, right 0.25s ease;
}
.nav-links a:hover { color: var(--red); background: rgba(232,82,42,0.06); }
.nav-links a:hover::after { left: 16px; right: 16px; }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { left: 16px; right: 16px; }

.nav-cta {
  background: var(--red); color: white;
  border: none; padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative; overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(232,82,42,0.3);
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.nav-cta:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,82,42,0.4); }
.nav-cta:hover::before { transform: translateX(200%) skewX(-15deg); }
.nav-cta:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(232,82,42,0.3); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(253,248,243,0.97); backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; opacity: 0;
  transition: opacity 0.3s ease; pointer-events: none;
}
.nav-drawer.open { display: flex; opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-size: 1.5rem; font-weight: 600; color: var(--dark);
  text-decoration: none; padding: 0.75rem 2rem; border-radius: 16px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav-drawer a:hover { color: var(--red); background: rgba(232,82,42,0.08); transform: scale(1.04); }
.nav-drawer .drawer-cta {
  margin-top: 1rem; background: var(--red); color: white;
  border: none; padding: 0.85rem 2.5rem; border-radius: 100px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 8px 24px rgba(232,82,42,0.35);
  transition: background 0.2s, transform 0.2s;
}
.nav-drawer .drawer-cta:hover { background: var(--red-dk); transform: translateY(-2px); }
.nav-drawer .drawer-cta { display: inline-flex; align-items: center; gap: 8px; }
.phone-ico { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; }
  nav.scrolled { padding: 0.5rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 3rem 4rem;
  position: relative; overflow: hidden; gap: 3rem;
}
.hero-bg-circle {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,82,42,0.08) 0%, transparent 70%);
  top: -100px; right: -150px; pointer-events: none;
}
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(232,82,42,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 50%, black 40%, transparent 80%);
}

/* ── HERO BADGE (typewriter) ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,82,42,0.1); color: var(--red);
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(232,82,42,0.25);
  margin-bottom: 1.5rem;
  min-width: 260px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.3; transform:scale(0.7); } }

/* typewriter cursor blink */
#badge-text::after {
  content: '|';
  display: inline-block;
  margin-left: 1px;
  animation: blink 0.7s step-end infinite;
  color: var(--red);
}
@keyframes blink { 0%,100%{ opacity:1 } 50%{ opacity:0 } }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1; color: var(--dark); margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--red); font-style: italic; }
.hero-title .green  { color: var(--green); }

.hero-sub {
  font-size: 16px; color: var(--muted); line-height: 1.8;
  max-width: 440px; margin-bottom: 2rem;
}

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--red); color: white;
  border: none; padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-secondary {
  background: transparent; color: var(--dark);
  border: 1.5px solid rgba(26,18,11,0.2); padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(26,18,11,0.1);
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); }
.hero-stat-num span { color: var(--red); }
.hero-stat-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }

.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.hero-main-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(232,82,42,0.15);
  width: 100%; max-width: 420px;
  position: relative; z-index: 2;
}
.hero-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--red) 0%, #C43D18 40%, #8B2A0E 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-card-img-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='220' viewBox='0 0 400 220' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='90' r='80' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='200' cy='90' r='55' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: cover;
}
.hero-card-emoji { font-size: 5rem; position: relative; z-index: 1; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }

/* ── HERO SLIDER (4K rasmlar) ── */
.hero-slider { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 65%;
  background-color: #1a1208;
  filter: saturate(1.25) contrast(1.08) brightness(0.96);
  opacity: 0;
  transform: translateX(100%) scale(1.05);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1), opacity 1s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}
.hero-slide.prev {
  opacity: 0;
  transform: translateX(-100%) scale(1.05);
  z-index: 1;
}
/* yengil to'q overlay — matn o'qilishi uchun */
.hero-card-img::after {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(139,42,14,0.35) 0%, transparent 45%);
}
.hero-slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 4;
}
.hero-slider-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.hero-slider-dots .dot.active { width: 22px; border-radius: 100px; background: #fff; }
.hero-card-body { padding: 1.25rem 1.5rem; }
.hero-card-tag { font-size: 11px; color: var(--red); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-card-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 4px 0 8px; }
.hero-card-meta { display: flex; justify-content: space-between; align-items: center; }
.hero-card-price { font-size: 1.2rem; font-weight: 700; color: var(--red); }
.hero-card-days { font-size: 12px; color: var(--muted); }
.hero-card-btn {
  display: block; width: 100%; background: var(--green); color: white;
  border: none; padding: 0.75rem; border-radius: 12px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  margin-top: 1rem; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}
.hero-card-btn:hover { background: var(--green-lt); }

.float-card {
  position: absolute; background: white; border-radius: 14px;
  padding: 0.8rem 1rem; box-shadow: 0 12px 32px rgba(0,0,0,0.1); z-index: 3;
}
.float-card-1 { top: 20px; left: -30px; min-width: 145px; }
.float-card-2 { bottom: 60px; right: -20px; min-width: 130px; }
.fc-label { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.fc-val { font-weight: 700; font-size: 15px; color: var(--dark); }
.fc-sub { font-size: 11px; color: var(--green); font-weight: 600; }
.fc-stars { color: #F59E0B; font-size: 12px; }

/* ── SECTIONS ── */
.section { padding: 5rem 3rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2;
}
.section-title em { color: var(--red); font-style: italic; }
.section-sub { font-size: 15px; color: var(--muted); margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── DESTINATIONS CAROUSEL ── */
.dest-carousel {
  display: flex; align-items: center; gap: 1rem;
  max-width: 1200px; margin: 0 auto;
}
.dest-viewport { overflow: hidden; flex: 1; padding: 1rem 0; }
.dest-track {
  display: flex; gap: 1.5rem; align-items: stretch;
  will-change: transform;
}
.dest-card {
  background: white; border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer; position: relative;
  flex: 0 0 300px; width: 300px;
  display: flex; flex-direction: column;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(232,82,42,0.18); }
.dest-card.coming-soon { cursor: default; }
.dest-card.coming-soon:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.coming-badge {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  background: var(--red); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 14px rgba(232,82,42,0.4);
  display: flex; align-items: center; gap: 5px;
}
.coming-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: pulse 1.6s infinite;
}
.dest-card.coming-soon .dest-img { filter: saturate(0.55) brightness(0.8); }

/* Mavjud belgisi (yashil) */
.available-badge {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  background: var(--green); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 14px rgba(30,126,46,0.4);
  display: flex; align-items: center; gap: 5px;
}
.available-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: pulse 1.6s infinite;
}

.dest-img {
  height: 200px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  background-color: #1a1208;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img { transform: scale(1.06); }

/* o'q tugmalar */
.dest-arrow {
  flex-shrink: 0; position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  border: none; background: transparent; color: var(--red);
  cursor: pointer; font-size: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s, transform 0.2s;
}
/* hover'da paydo bo'ladigan dumaloq fon */
.dest-arrow::after {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 30px rgba(232,82,42,0.35);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  z-index: 0;
}
.dest-arrow:hover::after { transform: scale(1); opacity: 1; }
.dest-arrow:hover { color: white; }
.dest-arrow:active { transform: scale(0.92); }

/* chevron chizig'i — har doim ko'rinadi, markazda */
.dest-arrow::before {
  content: '';
  position: relative; z-index: 1;
  width: 13px; height: 13px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  border-radius: 2px;
}
.dest-arrow.prev::before { transform: translateX(2px) rotate(135deg); }
.dest-arrow.next::before { transform: translateX(-2px) rotate(-45deg); }

/* nuqtalar */
.dest-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem;
}
.dest-dots .ddot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(232,82,42,0.25); cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.dest-dots .ddot.active { width: 26px; border-radius: 100px; background: var(--red); }

@media (max-width: 768px) {
  .dest-arrow { display: none; }
  .dest-dots { display: none; }
  .dest-carousel { padding: 0; gap: 0; }
  .dest-viewport {
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
  }
  .dest-viewport::-webkit-scrollbar { display: none; }
  /* chetki kartalar ham markazga kelishi uchun simmetrik bo'shliq */
  .dest-track { gap: 0.85rem; padding: 0 7.5vw; transform: none !important; }
  .dest-card { scroll-snap-align: center; flex: 0 0 85vw; width: 85vw; }
  .dest-img { height: 200px; }
}
.dest-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.dest-country { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 4px 0 8px; min-height: 2.8rem; line-height: 1.2; }
.dest-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.dest-price { font-weight: 700; color: var(--red); font-size: 1.1rem; }
.dest-nights { font-size: 12px; color: var(--muted); background: rgba(232,82,42,0.08); padding: 3px 10px; border-radius: 100px; }

/* ── WHY US ── */
.why-section {
  background: var(--dark); padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.why-bg {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,82,42,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.why-section .section-header { margin-bottom: 2rem; padding: 0 3rem; }
.why-section .section-title { color: white; }
.why-section .section-tag { color: var(--red-lt); }
.why-section .section-sub { color: rgba(255,255,255,0.5); }

/* grid — 3 ustun, suzib turuvchi kartalar */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; padding: 0 3rem; max-width: 1100px; margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: whyFloat 6s ease-in-out infinite;
}
/* har bir karta turli fazada suzadi */
.why-card:nth-child(1) { animation-delay: 0s;   }
.why-card:nth-child(2) { animation-delay: 0.8s; }
.why-card:nth-child(3) { animation-delay: 1.6s; }
.why-card:nth-child(4) { animation-delay: 2.4s; }
.why-card:nth-child(5) { animation-delay: 3.2s; }
.why-card:nth-child(6) { animation-delay: 4.0s; }
@keyframes whyFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
/* yorug'lik chizig'i — hover'da yuradi */
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232,82,42,0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease; pointer-events: none;
}
.why-card:hover {
  background: rgba(232,82,42,0.1); border-color: rgba(232,82,42,0.4);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(232,82,42,0.2);
  animation-play-state: paused;
}
.why-card:hover::before { transform: translateX(120%); }

.why-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(232,82,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-icon { transform: scale(1.18) rotate(-8deg); }
.why-title { font-size: 16px; font-weight: 600; color: white; position: relative; z-index: 1; }

/* p matn — yashirin, hover'da ochiladi */
.why-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7;
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  position: relative; z-index: 1;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
.why-card:hover .why-desc { max-height: 140px; opacity: 1; margin-top: 0.7rem; }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; padding: 0 1.25rem; }
  .why-card { padding: 1.1rem; animation: none; }   /* telefonda suzish yo'q */
  .why-icon { width: 42px; height: 42px; font-size: 20px; margin-bottom: 0.7rem; }
  .why-title { font-size: 14px; }
  /* touch'da hover yo'q — matn doim ko'rinsin */
  .why-desc { max-height: 200px; opacity: 1; margin-top: 0.5rem; font-size: 12px; }
}

/* ── REVIEWS ── */
.reviews-section { padding: 5rem 0; background: white; overflow: hidden; }
.reviews-section .section-header { padding: 0 3rem; }

.reviews-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.reviews-marquee + .reviews-marquee { margin-top: 1.25rem; }
.reviews-track {
  display: flex; gap: 1.25rem; width: max-content; padding: 0.5rem 0;
}
.reviews-marquee[data-dir="left"]  .reviews-track { animation: revScrollL 48s linear infinite; }
.reviews-marquee[data-dir="right"] .reviews-track { animation: revScrollR 48s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes revScrollL { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes revScrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.review-card {
  flex: 0 0 360px; width: 360px;
  background: var(--cream);
  border: 1px solid rgba(26,18,11,0.07);
  border-radius: 20px; padding: 1.5rem 1.6rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(232,82,42,0.12);
  border-color: rgba(232,82,42,0.25);
  background: #fff;
}
.review-quote {
  position: absolute; top: 0.4rem; right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 1; color: rgba(232,82,42,0.13);
  pointer-events: none;
}
.review-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text {
  font-size: 14px; color: var(--dark); line-height: 1.7;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--c1, var(--red)), var(--c2, var(--red-dk)));
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.review-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.review-loc  { font-size: 12px; color: var(--muted); margin-top: 1px; }
.review-loc::before { content: '📍 '; }

@media (max-width: 560px) {
  .review-card { flex-basis: 300px; width: 300px; }
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #1A120B 0%, #120c07 100%);
  color: rgba(255,255,255,0.6);
  padding: 4rem 3rem 1.5rem;
  position: relative; overflow: hidden;
}
.footer-glow {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,82,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-top {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem;
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 60px; width: auto; margin-bottom: 1.1rem; filter: drop-shadow(0 4px 12px rgba(232,82,42,0.3)); }
.footer-about { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 320px; margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: 12px; }
.fsoc {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.fsoc svg { width: 20px; height: 20px; }
.fsoc:hover { transform: translateY(-4px); background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 8px 20px rgba(232,82,42,0.4); }

.footer-col { display: flex; flex-direction: column; }
.footer-h { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.footer-col a, .footer-contact-item {
  font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none;
  padding: 0.4rem 0; transition: color 0.2s, transform 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--red-lt); transform: translateX(4px); }
.footer-contact-item { cursor: default; }
a.footer-contact-item:hover { color: #fff; }
.fci-ico { font-size: 14px; }

.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; }
.footer-brand span { color: var(--red); }
.footer-made { color: rgba(255,255,255,0.4); }
.footer-login {
  color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-login:hover { color: #fff; border-color: var(--green-lt); background: rgba(46,160,64,0.12); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SCROLL NAV (o'ng tomon, vertikal markaz) ── */
.scroll-nav {
  position: fixed; right: 1.5rem; top: 50%; z-index: 90;
  transform: translateY(-50%) translateX(80px);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.scroll-nav.visible { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }

.scroll-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: none; cursor: pointer; position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(232,82,42,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.scroll-btn:hover { background: var(--red); transform: scale(1.12); box-shadow: 0 10px 28px rgba(232,82,42,0.4); }
.scroll-btn:active { transform: scale(0.94); }
.scroll-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.scroll-btn:disabled:hover { background: rgba(255,255,255,0.9); transform: none; box-shadow: 0 6px 20px rgba(232,82,42,0.18); }
.scroll-btn:disabled:hover .scroll-arrow { border-color: var(--red); }
.scroll-arrow {
  width: 11px; height: 11px;
  border-top: 2.5px solid var(--red);
  border-left: 2.5px solid var(--red);
  transition: border-color 0.25s;
}
.scroll-btn:hover .scroll-arrow { border-color: #fff; }
.scroll-btn.up   .scroll-arrow { transform: translateY(2px) rotate(45deg); }
.scroll-btn.down .scroll-arrow { transform: translateY(-2px) rotate(-135deg); }

/* progress chizig'i */
.scroll-progress {
  width: 3px; height: 70px; border-radius: 100px;
  background: rgba(232,82,42,0.15); overflow: hidden; position: relative;
}
.scroll-progress span {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(var(--red), var(--green)); border-radius: 100px;
  transition: height 0.1s linear;
}

@media (max-width: 768px) { .scroll-nav { display: none; } }

/* ── DESTINATION BG COLORS ── */
.bg-mecca    { background: linear-gradient(135deg, #C43D18 0%, #8B2A0E 100%); }
.bg-dubai    { background: linear-gradient(135deg, #1E5F8B 0%, #0D3A5C 100%); }
.bg-istanbul { background: linear-gradient(135deg, #6B3A8B 0%, #3D1D5C 100%); }
.bg-london   { background: linear-gradient(135deg, #2E4A6B 0%, #1A2E46 100%); }
.bg-paris    { background: linear-gradient(135deg, #8B6B2E 0%, #5C421A 100%); }
.bg-bali     { background: linear-gradient(135deg, #1E7E2E 0%, #0D4A18 100%); }

/* ═══════════════════════════════════════════
   MOBIL OVERRIDE — fayl oxirida (base'dan ustun)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* HERO — o'ng rasm yo'q, kontent o'rtada */
  .hero {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
    gap: 0;
  }
  .hero-visual { display: none !important; }
  .hero-badge  { margin-left: auto; margin-right: auto; }
  .hero-sub    { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
}
