/* ═══════════════════════════════════════════════════════════════════════
   KASBAH QUEST — Custom Styles Override
   Complements Tailwind + DaisyUI with premium bespoke styling
   ═══════════════════════════════════════════════════════════════════════ */

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

/* ─── Root Tokens ─────────────────────────────────────────────────── */
:root {
  --kq-gold: #C8A45C;
  --kq-gold-light: #E8D5A3;
  --kq-dark: #0A0A0B;
  --kq-dark-card: #141416;
  --kq-dark-surface: #1A1A1F;
  --kq-accent: #D4A853;
  --kq-sand: #F5E6C8;
  --kq-terracotta: #C75B39;
  --kq-blue-deep: #1B3A5C;
  --kq-text-primary: #F0ECE3;
  --kq-text-secondary: #9A9590;
  --kq-border: rgba(200, 164, 92, 0.15);
  --kq-glow: rgba(200, 164, 92, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--kq-gold) var(--kq-dark);
}

body {
  font-family: var(--font-body);
  background-color: var(--kq-dark);
  color: var(--kq-text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--kq-gold);
  color: var(--kq-dark);
}

/* ─── Scrollbar ───────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--kq-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--kq-gold);
  border-radius: 3px;
}

/* ─── Navigation ──────────────────────────────────────────────────── */
.nav-glass {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(10, 10, 11, 0.75);
  border-bottom: 1px solid var(--kq-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-glass.scrolled {
  background: rgba(10, 10, 11, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--kq-gold), var(--kq-gold-light), var(--kq-terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kq-text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--kq-gold);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--kq-gold);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1539020140153-e479b8c22e70?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 11, 0.4) 0%,
      rgba(10, 10, 11, 0.2) 30%,
      rgba(10, 10, 11, 0.5) 70%,
      rgba(10, 10, 11, 0.95) 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--kq-border);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kq-gold);
  backdrop-filter: blur(10px);
  background: rgba(200, 164, 92, 0.08);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--kq-gold), var(--kq-gold-light), #fff, var(--kq-gold));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--kq-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 36px !important;
  background-color: #d4af37 !important;
  background-image: none !important;
  color: #000000 !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border: 2px solid #d4af37 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3) !important;
  opacity: 1 !important;
}

.btn-gold:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5) !important;
  background-color: #e5be49 !important;
  border-color: #e5be49 !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--kq-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--kq-gold);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(200, 164, 92, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.15);
}

/* ─── Section Styling ─────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kq-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kq-text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--kq-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Masonry Card Grid ───────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

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

  .destinations-grid .dest-card:nth-child(1) {
    grid-row: span 2;
  }

  .destinations-grid .dest-card:nth-child(4) {
    grid-row: span 2;
  }

  .destinations-grid .dest-card:nth-child(7) {
    grid-row: span 2;
  }

  .destinations-grid .dest-card:nth-child(10) {
    grid-row: span 2;
  }
}

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
  background: var(--kq-dark-card);
  border: 1px solid var(--kq-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: var(--kq-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--kq-glow);
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 11, 0) 0%,
      rgba(10, 10, 11, 0.3) 50%,
      rgba(10, 10, 11, 0.88) 100%);
  transition: background 0.5s ease;
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(180deg,
      rgba(10, 10, 11, 0.1) 0%,
      rgba(10, 10, 11, 0.4) 40%,
      rgba(10, 10, 11, 0.92) 100%);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-card-content {
  transform: translateY(0);
}

.dest-card-region {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kq-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #fff;
}

.dest-card-tagline {
  font-size: 0.9rem;
  color: var(--kq-text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

.dest-card-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease 0.1s, max-height 0.5s ease;
}

.dest-card:hover .dest-card-details {
  opacity: 1;
  max-height: 300px;
}

.dest-card-details p {
  font-size: 0.85rem;
  color: var(--kq-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}

.dest-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kq-gold);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.dest-card-btn:hover {
  gap: 12px;
}

/* ─── Detail Modal ────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.modal-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background: var(--kq-dark-surface);
  border: 1px solid var(--kq-border);
  border-radius: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--kq-dark-surface) 100%);
}

.modal-close {
  position: sticky;
  top: 15px;
  right: 15px;
  z-index: 9999;
  float: right;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: -3.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 50;
}

.modal-close:hover {
  background: var(--kq-gold);
  color: var(--kq-dark);
  border-color: var(--kq-gold);
}

.modal-body {
  padding: 2rem 2.5rem 2.5rem;
}

.modal-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.modal-body .modal-tagline {
  color: var(--kq-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.modal-body .modal-desc {
  color: var(--kq-text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.modal-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--kq-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.modal-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--kq-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--kq-gold);
  font-size: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.modal-reserve-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--kq-gold), var(--kq-accent));
  color: var(--kq-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}

.modal-reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 164, 92, 0.5);
}

#modalReserveOptions .btn-gold,
#modalReserveOptions .btn-outline {
  background-color: #d4af37 !important;
  color: #000000 !important;
  display: block !important;
  width: 100% !important;
  opacity: 1.0 !important;
  border: none !important;
  margin-bottom: 10px;
}

/* ─── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  background: var(--kq-dark-card);
  border-top: 1px solid var(--kq-border);
  border-bottom: 1px solid var(--kq-border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kq-gold);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kq-text-secondary);
  margin-top: 0.5rem;
}

/* ─── WhatsApp Float ──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.kq-footer {
  background: var(--kq-dark-card);
  border-top: 1px solid var(--kq-border);
  padding: 4rem 2rem 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--kq-gold), var(--kq-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-text {
  color: var(--kq-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 350px;
  font-weight: 300;
}

.footer-link {
  color: var(--kq-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.footer-link:hover {
  color: var(--kq-gold);
}

.footer-bottom {
  border-top: 1px solid var(--kq-border);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--kq-text-secondary);
  font-size: 0.8rem;
}

/* ─── Experiences Gallery ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 1rem;
  padding: 0 1rem;
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--kq-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  border-color: var(--kq-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--kq-glow);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Modal Reservation Button Fix ────────────────────────────────────────── */
#modalReserveBtn {
  background-color: #d4af37 !important;
  background-image: none !important;
  color: #000000 !important;
  border: 2px solid #d4af37 !important;
  padding: 16px 36px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 8px !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  opacity: 1 !important;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif !important;
}

#modalReserveBtn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5) !important;
  background-color: #e5be49 !important;
  border-color: #e5be49 !important;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-item-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--kq-gold-light);
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-row: span 1;
  }

  .gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .gallery-item {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 220px;
  }
}

/* ─── Review Cards ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
}

.review-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 26, 31, 0.85), rgba(20, 20, 22, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--kq-border);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kq-gold), var(--kq-gold-light), var(--kq-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 92, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(200, 164, 92, 0.08);
}

.review-quote-icon {
  font-size: 3rem;
  color: var(--kq-gold);
  opacity: 0.15;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.review-star {
  color: #F5C518;
  font-size: 1rem;
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.3));
}

.review-text {
  font-size: 1rem;
  color: var(--kq-text-secondary);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--kq-border);
  padding-top: 1.25rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kq-gold), var(--kq-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--kq-dark);
  flex-shrink: 0;
}

.review-author-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--kq-text-primary);
  display: block;
}

.review-author-origin {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kq-gold);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ─── Animations ──────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .modal-panel {
    width: 95%;
    max-height: 90vh;
  }

  .modal-body {
    padding: 1.5rem;
  }
}

/* ─── Loader ──────────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--kq-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ornament {
  width: 50px;
  height: 50px;
  border: 2px solid var(--kq-border);
  border-top-color: var(--kq-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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