/* ============================================================
   KhivaGo — style.css
   Design: Desert Gold × Deep Slate × Terracotta
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --amber:       #D4963A;       /* primary gold accent */
  --amber-dark:  #B97E28;
  --amber-light: #F5C96D;
  --terracotta:  #C06840;       /* warm action color */
  --teal:        #3A8A8D;       /* cool accent */
  --navy:        #1A2C42;       /* deep dark */
  --slate:       #2D3A4A;       /* text dark */
  --cream:       #FAF6EF;       /* light bg */
  --sand:        #F0E9D8;       /* card bg */
  --white:       #FFFFFF;
  --gray-light:  #EDE8DF;
  --gray-mid:    #A09080;
  --text-main:   #1E2328;
  --text-sub:    #5C5245;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --shadow-soft: 0 4px 24px rgba(30,20,10,.08);
  --shadow-mid:  0 8px 40px rgba(30,20,10,.13);
  --shadow-strong: 0 16px 60px rgba(30,20,10,.18);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.kg-card-img,
.kg-gallery-img,
.kg-hero-img,
.kg-content-img,
.kg-profile-img {
  max-width: 100%;
  object-fit: cover;
}

/* ── Section Utilities ──────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.bg-light-khiva { background: var(--cream); }
.bg-dark-khiva  { background: var(--navy); }

.section-header { max-width: 560px; margin: 0 auto 20px; }

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,150,58,.1);
  border: 1px solid rgba(212,150,58,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag--light {
  color: var(--amber-light);
  background: rgba(245,201,109,.1);
  border-color: rgba(245,201,109,.25);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary-khiva {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(212,150,58,.35);
}
.btn-primary-khiva:hover {
  background: var(--amber-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,150,58,.45);
}

.btn-ghost-khiva {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.45);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost-khiva:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm-khiva { padding: 10px 22px; font-size: .875rem; }

.btn-white-khiva {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white-khiva:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.btn-ghost-white-khiva {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: var(--transition);
}
.btn-ghost-white-khiva:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#mainNav {
  background: rgba(26,44,66,.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.2);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(26,44,66,.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.2);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.brand-accent { color: var(--amber); }

/* Nav links */
.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--amber);
  background: rgba(212,150,58,.1);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
  color: var(--navy);
  background: var(--amber);
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Language switcher */
.lang-switcher { margin-left: 24px; }
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .04em;
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2C42 40%, #2D3A4A 70%, #1A2C42 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative grid */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,150,58,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,150,58,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,150,58,.2) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,138,141,.15) 0%, transparent 70%);
  bottom: -100px; right: 100px;
}

.hero-content-wrap { position: relative; z-index: 2; }

/* Hero text */
.hero-text-col { padding: 140px 0 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,150,58,.12);
  border: 1px solid rgba(212,150,58,.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeSlideUp .8s ease both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeSlideUp .8s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeSlideUp .8s .25s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeSlideUp .8s .35s ease both;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp .8s .45s ease both;
}
.h-stat {
  display: flex;
  flex-direction: column;
}
.h-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.h-stat-l {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}
.h-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero image stack */
.hero-image-col { padding: 120px 0 60px; }
.hero-image-stack {
  position: relative;
  animation: fadeSlideUp .8s .2s ease both;
}

.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-card--main {
  width: 100%;
  height: 420px;
}
.hero-img-card--sm {
  position: absolute;
  width: 190px;
  height: 130px;
  border: 3px solid var(--navy);
}
.hero-img-card--top {
  top: -30px;
  right: -30px;
  border-radius: var(--radius-md);
}
.hero-img-card--bot {
  bottom: -30px;
  left: -24px;
  border-radius: var(--radius-md);
}

.img-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(26,44,66,.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.img-card-label i { color: var(--amber); }

.hero-float-badge {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-mid);
  white-space: nowrap;
}
.hero-float-badge i { color: var(--amber); font-size: 1.2rem; }
.hero-float-badge strong { display: block; font-size: 1.1rem; color: var(--slate); }
.hero-float-badge span { font-size: .72rem; color: var(--gray-mid); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.7); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
#services .service-section-header {
  position: relative;
}

#services .service-heading {
  min-width: 0;
}

#services .service-see-all {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

#services .service-see-all i {
  color: var(--amber);
  font-size: .8rem;
  transition: transform .25s ease;
}

#services .service-see-all:hover {
  color: var(--amber-dark);
}

#services .service-see-all:hover i {
  transform: translateX(3px);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(26,44,66,.06);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.sc-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sc-icon--amber     { background: rgba(212,150,58,.12); color: var(--amber); }
.sc-icon--teal      { background: rgba(58,138,141,.12); color: var(--teal); }
.sc-icon--terracotta{ background: rgba(192,104,64,.12); color: var(--terracotta); }
.sc-icon--navy      { background: rgba(26,44,66,.1); color: var(--navy); }
.sc-icon--rose      { background: rgba(192,64,80,.1); color: #C04050; }
.sc-icon--golden    { background: rgba(212,172,58,.12); color: #C4A020; }
.sc-icon--sand      { background: rgba(212,150,58,.14); color: var(--amber-dark); }

.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.sc-desc { font-size: .9rem; color: var(--text-sub); line-height: 1.7; margin-bottom: 20px; }
.sc-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--transition);
}
.sc-link:hover { gap: 10px; }

/* ── HOTELS ────────────────────────────────────────────────── */
.section-hotels {
  background: var(--white);
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.hotel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,150,58,.45);
  box-shadow: var(--shadow-mid);
}
.hotel-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(212,150,58,.22), var(--shadow-soft);
}
.hotel-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.hotel-card:hover .hotel-img img {
  transform: scale(1.05);
}
.hotel-stars {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(26,44,66,.84);
  color: #F5A623;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: .7rem;
  backdrop-filter: blur(6px);
}
.hotel-recommended {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hotel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.hotel-loc {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-sub);
  font-size: .86rem;
  margin-bottom: 18px;
}
.hotel-loc i {
  color: var(--amber);
}
.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hotel-amenities > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,150,58,.1);
  color: var(--text-sub);
  border: 1px solid rgba(212,150,58,.18);
  border-radius: 50px;
  padding: 5px 10px;
  font-size: .76rem;
  font-weight: 600;
}
.hotel-amenities i {
  color: var(--amber);
}
.hotel-footer {
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hotel-price {
  color: var(--gray-mid);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hotel-price strong {
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1;
  margin-left: 4px;
}
.hotel-price small {
  color: var(--gray-mid);
  font-size: .72rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 2px;
}
.btn-hotel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-hotel:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── GUIDES ────────────────────────────────────────────────── */
.section-guides {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #17283B 52%, #0D1B2A 100%);
}
.section-guides::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,201,109,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,201,109,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-guides .container-xl {
  position: relative;
  z-index: 1;
}
.guide-card {
  height: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,150,58,.42);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.guide-card--featured {
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(212,150,58,.1));
  border-color: rgba(212,150,58,.5);
  box-shadow: 0 0 0 2px rgba(212,150,58,.18);
}
.guide-media {
  position: relative;
  height: 265px;
  overflow: hidden;
}
.guide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.78) 0%, rgba(13,27,42,.12) 58%, transparent 100%);
  pointer-events: none;
}
.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.guide-card:hover .guide-media img {
  transform: scale(1.06);
}
.guide-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  background: rgba(26,44,66,.82);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.guide-status i {
  color: #73D69D;
  font-size: .48rem;
}
.guide-status--soon {
  background: rgba(26,44,66,.82);
  border-color: rgba(212,150,58,.42);
}
.guide-status--soon i {
  color: var(--amber);
}
.guide-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.guide-body h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.guide-role {
  color: var(--amber-light);
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.guide-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.guide-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}
.guide-meta i {
  color: var(--amber);
  width: 16px;
  text-align: center;
}
.guide-desc {
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.guide-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.guide-rating {
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
}
.guide-rating i {
  color: #F5A623;
}
.guide-rating span {
  color: rgba(255,255,255,.44);
  font-weight: 500;
}
.btn-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-guide:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── WHY KHIVAGO ────────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-image-block {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}
.why-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}
.why-img-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-mid);
}
.why-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.why-number-badge {
  position: absolute;
  top: 24px;
  right: 16px;
  background: var(--amber);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-mid);
}
.why-number-badge span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.why-number-badge small {
  font-size: .7rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212,150,58,.1);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-item h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}
.why-item p {
  font-size: .85rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0;
}

/* ── PLACES ─────────────────────────────────────────────────── */
.place-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.place-card:hover img { transform: scale(1.05); }

.place-card--large { height: 520px; }
.place-card--sm    { height: 240px; }
.place-card--xs    { height: 226px; }

.place-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,40,.85) 0%, rgba(15,25,40,.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.place-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.place-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.place-card--xs .place-overlay h3 { font-size: 1.1rem; }

.place-overlay p {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  display: none;
}
.place-card--large .place-overlay p { display: block; }
.place-card--sm .place-overlay p    { display: block; font-size: .8rem; }

.place-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
}
.place-btn:hover { gap: 10px; color: var(--amber-light); }

/* ── TOUR CARDS ─────────────────────────────────────────────── */
.tour-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: transparent;
}
.tour-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(212,150,58,.3);
}

.tour-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.05); }

.tour-duration {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(26,44,66,.82);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 5px;
}
.tour-duration i { color: var(--amber); }

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

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tour-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(212,150,58,.12);
  color: var(--amber);
}
.tour-badge--gold    { background: rgba(212,172,58,.15); color: #B8920C; }
.tour-badge--teal    { background: rgba(58,138,141,.12); color: var(--teal); }

.tour-rating { font-size: .8rem; font-weight: 600; color: var(--text-sub); }
.tour-rating i { color: #F5A623; margin-right: 2px; }

.tour-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.tour-desc { font-size: .875rem; color: var(--text-sub); line-height: 1.65; margin-bottom: 20px; flex: 1; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}
.tour-price { display: flex; flex-direction: column; }
.tour-price-from { font-size: .7rem; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .05em; }
.tour-price strong { font-size: 1.3rem; color: var(--text-main); font-family: 'Cormorant Garamond', serif; }

/* ── TAXI & TRANSFER ───────────────────────────────────────── */
.section-taxi {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF6EF 0%, #FFFFFF 48%, #F0E9D8 100%);
}
.section-taxi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,150,58,.12) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.section-taxi .container-xl {
  position: relative;
  z-index: 1;
}
.taxi-title {
  max-width: 520px;
}
.taxi-desc {
  max-width: 560px;
}
.taxi-options {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 560px;
}
.taxi-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(212,150,58,.18);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.taxi-opt:hover {
  transform: translateX(6px);
  border-color: rgba(212,150,58,.4);
  box-shadow: var(--shadow-mid);
}
.taxi-opt > i {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(212,150,58,.12);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.taxi-opt strong {
  display: block;
  color: var(--text-main);
  font-size: .98rem;
  line-height: 1.25;
  margin-bottom: 3px;
}
.taxi-opt span {
  display: block;
  color: var(--text-sub);
  font-size: .86rem;
  line-height: 1.5;
}
.taxi-btn {
  margin-top: 30px;
}
.taxi-visual {
  position: relative;
  padding: 18px;
}
.taxi-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 78%;
  border-radius: var(--radius-xl);
  background: var(--amber);
  opacity: .14;
}
.taxi-visual img {
  position: relative;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}
.taxi-card-float {
  position: absolute;
  left: 0;
  bottom: 42px;
  background: var(--white);
  border: 1px solid rgba(212,150,58,.24);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-mid);
}
.taxi-card-float > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}
.taxi-card-float strong {
  display: block;
  color: var(--text-main);
  font-size: .94rem;
  line-height: 1.2;
}
.taxi-card-float span {
  display: block;
  color: var(--gray-mid);
  font-size: .78rem;
}

/* ── RESTAURANTS ────────────────────────────────────────────── */
.rest-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,150,58,.4);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.rest-img { position: relative; height: 200px; overflow: hidden; }
.rest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rest-card:hover .rest-img img { transform: scale(1.05); }

.rest-cuisine {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--amber);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.rest-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.rest-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rest-top h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.rest-rating { font-size: .8rem; font-weight: 600; color: var(--amber); }
.rest-rating i { margin-right: 2px; }

.rest-body > p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 16px; flex: 1; }

.rest-info {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.rest-info span {
  font-size: .775rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rest-info i { color: var(--amber); }

.btn-outline-rest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(212,150,58,.5);
  color: var(--amber);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  padding: 11px 20px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-rest:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* ── EVENTS ─────────────────────────────────────────────────── */
.event-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: var(--transition);
  height: 100%;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
  border-color: transparent;
}
.event-card--accent {
  border-color: var(--amber);
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF 100%);
}

.event-date-block {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-card--accent .event-date-block { background: var(--amber); }
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.event-card--accent .event-day { color: var(--navy); }
.event-month {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber);
}
.event-card--accent .event-month { color: var(--navy); }

.event-body { padding: 24px; flex: 1; }
.event-type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.event-card--accent .event-type { color: var(--terracotta); }

.event-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}
.event-body p { font-size: .875rem; color: var(--text-sub); line-height: 1.65; margin-bottom: 16px; }

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.event-meta span {
  font-size: .775rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-meta i { color: var(--amber); }

.event-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.event-link:hover { gap: 10px; }

/* ── STATISTICS ─────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #243548 100%);
  position: relative;
  overflow: hidden;
}
.stats-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,150,58,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.stat-item {
  text-align: center;
  padding: 60px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--amber-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}
.stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-mid);
  border-color: transparent;
}
.testi-card--featured {
  background: var(--navy);
  border-color: var(--amber);
}

.testi-stars { color: #F5A623; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card--featured .testi-stars { color: var(--amber); }

.testi-text {
  font-size: .95rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.testi-card--featured .testi-text { color: rgba(255,255,255,.75); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text-main);
}
.testi-card--featured .testi-author strong { color: var(--white); }
.testi-author span {
  font-size: .78rem;
  color: var(--gray-mid);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1A2C42 0%, #0D1B2A 60%, #162438 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-blob--1 {
  width: 400px; height: 400px;
  background: rgba(212,150,58,.18);
  top: -100px; right: -80px;
}
.cta-blob--2 {
  width: 300px; height: 300px;
  background: rgba(58,138,141,.12);
  bottom: -80px; left: 80px;
}

.cta-icon {
  font-size: 2.8rem;
  color: var(--amber);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.cta-contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.cta-contact-strip span {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cta-contact-strip i { color: var(--amber); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-section {
  background: #0D1520;
  padding: 80px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-about {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber); padding-left: 4px; }

.footer-newsletter-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-newsletter {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  margin-bottom: 20px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  color: var(--white);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-btn {
  background: var(--amber);
  border: none;
  padding: 12px 18px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.newsletter-btn:hover { background: var(--amber-dark); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 50px;
}
.trust-badge i { color: var(--amber); }

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--amber); }


