/* ========================================
   OCEAN HORSE RIDING — Complete Redesign 2026
   Desert Warmth · Premium Horse Experience
   ======================================== */

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

/* -- RESET -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* -- LAYOUT -- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* -- TYPOGRAPHY -- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--desert);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  padding: 7px 16px;
  border-radius: var(--radius-full);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 480px;
}

/* -- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(194, 123, 44, 0.3);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-desert {
  background: var(--desert);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45, 74, 62, 0.25);
}
.btn-desert:hover {
  background: var(--desert-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,0.92);
  color: var(--desert);
  border: 1.5px solid rgba(45, 74, 62, 0.2);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--desert);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--desert);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
/* -- HEADER CTA (replaces WhatsApp green) -- */

/* -- HEADER -- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: all 0.35s var(--ease-out);
  background: linear-gradient(180deg, rgba(13,26,21,0.65) 0%, rgba(13,26,21,0.2) 70%, transparent 100%);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(13, 26, 21, 0.08);
  border-bottom: 1px solid rgba(30, 58, 47, 0.06);
  padding: 0.6rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color 0.3s;
  text-decoration: none;
}
.logo-crest {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(194, 123, 44, 0.35);
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.logo:hover .logo-crest {
  transform: scale(1.05) rotate(-2deg);
}
.logo-crest svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.header.scrolled .logo { color: var(--desert); }
.header.scrolled .logo-sub { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.header.scrolled .nav-links a { color: var(--ink-soft); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--desert); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: #25D366;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.header-cta:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.lang-switcher { position: relative; }
.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.22);
}
.header.scrolled .lang-btn {
  color: var(--desert);
  background: var(--desert-pale);
  border-color: rgba(30,58,47,0.1);
}
.lang-btn .chevron { font-size: 0.65rem; transition: transform 0.2s; }
.lang-switcher:hover .lang-btn .chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease-out);
  min-width: 90px;
  z-index: 50;
  border: 1px solid rgba(0,0,0,0.06);
}
.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: var(--bg-sand);
  color: var(--desert);
  font-weight: 700;
}

/* -- HERO -- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 36%;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(13, 26, 21, 0.85) 0%,
    rgba(13, 26, 21, 0.62) 42%,
    rgba(13, 26, 21, 0.2) 80%,
    rgba(13, 26, 21, 0.3) 100%
  );
}
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.hero-content {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 10px var(--amber-light);
}
.hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title-accent {
  font-style: italic;
  background: linear-gradient(135deg, #FAD79A 0%, #E29E43 50%, #C27B2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}
.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  max-width: 530px;
  margin-bottom: 2rem;
  line-height: 1.75;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-buttons .btn-primary {
  padding: 15px 32px;
  font-size: 0.85rem;
}
.hero-buttons .btn-ghost {
  padding: 15px 30px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 15px;
  transition: opacity 0.4s;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0% { transform: translateY(-7px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(7px); opacity: 0; }
}

/* -- TRUST BAR -- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-icon { font-size: 1.1rem; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
}

/* -- EXPERIENCES -- */
.experiences {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
}
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-top: 0.25rem; }
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.scroll-arrows { display: flex; gap: 8px; }
.scroll-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  color: var(--desert);
  font-size: 1.1rem;
}
.scroll-arrow:hover {
  background: var(--desert);
  color: var(--white);
  border-color: var(--desert);
  transform: scale(1.05);
}
.experiences-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.experiences-scroller::-webkit-scrollbar { display: none; }

.experience-card {
  flex: 0 0 310px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  position: relative;
}
.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.experience-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
}
.experience-card-image.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.experience-card-image.no-img::after {
  content: '🐴';
  font-size: 3rem;
}
.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  background: var(--bg-warm);
}
.experience-card:hover .experience-card-image img { transform: scale(1.09); }
.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 1;
}
.experience-card:hover .card-image-overlay { opacity: 1; }
.card-hover-cta {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--amber);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  opacity: 0;
  transition: all 0.35s var(--ease-out);
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.experience-card:hover .card-hover-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.experience-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  z-index: 3;
}
.experience-card-badge.badge-gold {
  background: #F59E0B;
  color: var(--white);
}
.experience-card-badge.badge-sage {
  background: var(--desert-pale);
  color: var(--desert);
}
.experience-card-badge.badge-dark {
  background: var(--desert);
  color: var(--white);
}
.experience-card-content { padding: 1.25rem 1.5rem; }
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.experience-card-price {
  display: inline-block;
  background: var(--desert-pale);
  color: var(--desert);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.card-duration-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-sand);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.experience-card h3 {
  margin-bottom: 0.2rem;
  color: var(--desert);
  font-size: 1.35rem;
}
.experience-card-duration {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.card-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-sand);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.scroller-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* -- VIDEO SECTION -- */
.video-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-sand);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.video-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0d1612;
  aspect-ratio: 9/16;
  max-height: 540px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: pointer;
}
.video-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,22,18,0.4) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 60%, rgba(13,22,18,0.88) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.video-item.is-playing .video-overlay-gradient {
  opacity: 0;
}
.video-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  transition: opacity 0.3s;
}
.video-item.is-playing .video-badge-top {
  opacity: 0;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(194, 123, 44, 0.45);
  transition: all 0.3s var(--ease-out);
  border: none;
}
.video-play-btn svg {
  margin-left: 3px;
  transition: transform 0.2s ease;
}
.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 162, 76, 0.6);
}
.video-item.is-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
}
.video-info-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 3;
  color: var(--white);
  transition: opacity 0.3s;
  pointer-events: none;
}
.video-info-bottom h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.video-info-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.video-item.is-playing .video-info-bottom {
  opacity: 0;
}

/* -- GALLERY STRIP -- */
.gallery-section {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  background: var(--bg-cream);
}
.gallery-section .section-header {
  margin-bottom: 2rem;
}
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 280px;
  height: 340px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

/* -- REVIEWS -- */
.reviews {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--desert-pale);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 700;
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.review-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
}

/* -- GOOGLE REVIEWS BADGE ROW -- */
.gmaps-badge-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.gmaps-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.gmaps-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.gmaps-badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gmaps-score {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1;
}
.gmaps-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}
.gmaps-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Reviews grid: 3 cols, then CTA at end */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* -- VERIFIED BADGE -- */
.review-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 600;
  color: #34A853;
  letter-spacing: 0.03em;
}
.review-verified svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* -- CTA CARD -- */
.review-cta-card {
  background: linear-gradient(135deg, #f8f4ef 0%, #fff9f2 100%);
  border: 2px dashed var(--desert-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
}
.gmaps-logo-big {
  width: 56px;
  height: 56px;
}
.gmaps-logo-big svg {
  width: 100%;
  height: 100%;
}
.review-cta-inner p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-style: normal;
}
.review-cta-sub {
  font-size: 0.75rem;
  color: #F59E0B;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ABOUT */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-sand);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-warm);
}
.about-image.no-img {
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.badge-icon { font-size: 1.8rem; }
.about-image-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--desert);
  font-weight: 700;
}
.about-image-badge small {
  font-size: 0.72rem;
  color: var(--muted);
}
.about-content h2 { margin-bottom: 1.2rem; margin-top: 0.5rem; }
.about-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.about-features span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--desert);
  background: var(--desert-pale);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
}

/* -- CONTACT CTA -- */
.contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--desert) 0%, #1a3530 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(194,123,44,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212,162,76,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.contact h2 { color: var(--white); margin-bottom: 0.75rem; margin-top: 0.75rem; }
.contact p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-reply-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1.25rem;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* -- FOOTER -- */
.footer {
  background: #141f1a;
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-locations {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.5rem;
}

/* -- MODAL -- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  position: relative;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar { display: none; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all 0.25s var(--ease-out);
  color: var(--ink);
}
.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--desert-pale);
}
.modal-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: #0d1612;
}
.modal-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-media-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1612;
}
.modal-media-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}
.carousel-btn:hover {
  background: rgba(0,0,0,0.85);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
}
.carousel-dot.dot-video {
  color: rgba(255,255,255,0.9);
}
.carousel-dot.dot-video.active {
  background: var(--amber);
  color: var(--white);
}

.modal-content { padding: 1.75rem; }
.modal-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.modal-price {
  display: inline-block;
  background: var(--desert);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.modal-duration-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-sand);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.modal h2 {
  margin-bottom: 0.25rem;
  font-size: 1.75rem;
  color: var(--desert);
}
.modal-duration {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.modal-description {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.modal-includes {
  background: var(--bg-sand);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.modal-includes h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--desert);
}
.modal-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.modal-includes li {
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding-left: 1.4rem;
  position: relative;
}
.modal-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

/* -- REVEAL ANIMATIONS -- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* -- CARD MEDIA BADGE -- */
.card-media-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(13, 22, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}
.card-media-badge svg {
  fill: var(--gold);
}

/* -- TRUST BAR SVG ICONS -- */
.trust-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

/* -- MOBILE MENU & DRAWER -- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 170;
  border: none;
  transition: all 0.3s;
}
.header.scrolled .menu-toggle {
  background: var(--desert-pale);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}
.header.scrolled .menu-toggle span {
  background: var(--desert);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--white) !important;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--white) !important;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #182e25 0%, #101d18 100%);
  z-index: 160;
  padding: 90px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -10px 0 35px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-nav.active {
  transform: translateX(0);
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  transform: translateX(4px);
}
.mobile-lang-box {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-lang-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  display: block;
}
.mobile-lang-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mobile-lang-list a {
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-full);
  padding: 6px 14px !important;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.8) !important;
}
.mobile-lang-list a.active {
  background: var(--amber);
  border-color: var(--amber) !important;
  color: var(--white) !important;
}
.mobile-nav-cta {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  padding: 12px 20px !important;
  background: #25D366;
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

/* -- GALLERY LIGHTBOX -- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 22, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-dialog {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-top: 14px;
  font-family: var(--serif);
  letter-spacing: 0.02em;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover {
  background: var(--amber);
  transform: scale(1.1);
}

/* -- FLOATING ACTION BUTTON (MOBILE QUICK BOOK) -- */
.floating-book-fab {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255,255,255,0.25);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
}
.floating-book-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-book-fab:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}
.floating-book-fab svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}
@media (min-width: 901px) {
  .floating-book-fab { display: none !important; }
}

/* -- RESPONSIVE MEDIA QUERIES -- */
@media (max-width: 1040px) {
  .hero-stats-bar {
    gap: 16px;
    padding: 12px 20px;
  }
  .hero-stat-num { font-size: 1.2rem; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-image { max-width: 380px; margin: 0 auto; }
  .about-features { justify-content: center; }
  .about-content { text-align: center; }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-cta-card {
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header { padding: 0.65rem 0; }
  .logo-brand { font-size: 1.25rem; }
  .logo-crest { width: 32px; height: 32px; }

  /* Hero Section */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: stretch;
    padding: 0;
  }
  .hero-image-wrapper img {
    object-position: 85% 40%;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 26, 21, 0.35) 0%,
      rgba(13, 26, 21, 0.45) 20%,
      rgba(13, 26, 21, 0.15) 50%,
      rgba(13, 26, 21, 0.10) 70%,
      rgba(13, 26, 21, 0.35) 100%
    );
  }
  .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 0 36px;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: 0.6rem;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
    margin-bottom: 0.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.82rem;
    min-height: 48px;
  }
  .hero-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius);
  }
  .hero-stat-divider { display: none; }
  .hero-stat-num { font-size: 1.25rem; }
  .scroll-indicator { display: none; }

  /* Trust Bar */
  .trust-bar { padding: 1rem 0; }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
  }
  .trust-divider { display: none; }
  .trust-item {
    padding: 4px 6px;
    font-size: 0.82rem;
    gap: 8px;
  }
  .trust-icon-svg { width: 18px; height: 18px; }

  /* Experiences Horizontal Scroller */
  .experiences { padding: 3.5rem 0; overflow: hidden; }
  .experiences-scroller {
    padding: 10px 0 24px;
    gap: 16px;
  }
  .experience-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: center;
  }

  /* Video Reels Carousel on Mobile */
  .video-section { padding: 3.5rem 0; overflow: hidden; }
  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 1.25rem 24px;
    margin: 0 -1.25rem;
    scrollbar-width: none;
  }
  .video-grid::-webkit-scrollbar { display: none; }
  .video-item {
    flex: 0 0 min(78vw, 280px);
    height: 440px;
    scroll-snap-align: center;
  }

  /* Gallery */
  .gallery-section { padding: 3.5rem 0 0; overflow: hidden; }
  .gallery-strip { padding: 0 clamp(1rem, 4vw, 2rem); }
  .gallery-item {
    flex: 0 0 min(70vw, 240px);
    height: 280px;
  }

  /* Reviews */
  .reviews { padding: 3.5rem 0; }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card { padding: 1.4rem; }
  .review-cta-card { min-height: 260px; }


  /* About */
  .about { padding: 3.5rem 0; }
  .about-content { text-align: left; }
  .about-image { max-width: 330px; margin: 0 auto 1.5rem; }
  .about-features { justify-content: flex-start; }
  .about-image-badge {
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  /* Contact CTA */
  .contact { padding: 3.5rem 1rem; }
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .contact-buttons .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* Lightbox */
  .lightbox-overlay { padding: 1rem; }
  .lightbox-close {
    top: -42px;
    right: 4px;
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.95rem; }
  .trust-item { font-size: 0.74rem; }
  .experience-card { flex: 0 0 min(88vw, 280px); }
  .video-item { flex: 0 0 min(84vw, 260px); height: 400px; }
  .gallery-item { flex: 0 0 min(65vw, 200px); height: 240px; }
  .footer-links { gap: 1rem; }
  .modal { max-width: 95vw; }
  .modal-content { padding: 1.25rem; }
}

/* -- RTL SUPPORT (Arabic) -- */
[dir='rtl'] .nav-links { flex-direction: row-reverse; }
[dir='rtl'] .experience-card-content { text-align: right; }
[dir='rtl'] .about-content { text-align: right; }
[dir='rtl'] .about-features { justify-content: flex-start; }
[dir='rtl'] .modal-includes li { padding-left: 0; padding-right: 1.5rem; }
[dir='rtl'] .modal-includes li::before { left: auto; right: 0; }
[dir='rtl'] .mobile-nav {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  text-align: right;
}
[dir='rtl'] .mobile-nav.active {
  transform: translateX(0);
}
[dir='rtl'] .video-badge-top {
  left: auto;
  right: 14px;
}
[dir='rtl'] .card-media-badge {
  right: auto;
  left: 12px;
}
[dir='rtl'] .card-hover-cta {
  right: auto;
  left: 12px;
}
[dir='rtl'] .floating-book-fab {
  right: auto;
  left: 20px;
}
[dir='rtl'] .hero-stat-item {
  text-align: right;
}
[dir='rtl'] .review-card::before {
  right: auto;
  left: 12px;
}

