﻿/* ═══════════════════════════════════════════════════════════════════════════
   HIGH MOTION - Brutalist Editorial Design
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hide Google Translate default elements */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray: #888;
  --accent: #ff4d00;
  --font-display: "Oswald", "Arial", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(4rem, 12vw, 10rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-sm {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-lg {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
}

.text-gray {
  color: var(--gray);
}

.text-accent {
  color: var(--accent);
}

/* ─── Header ────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.preloader-logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }
  
  .header-actions .lang-switcher {
    order: 1;
  }
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.header-instagram svg {
  flex-shrink: 0;
}

.header-instagram:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.header-cta svg {
  flex-shrink: 0;
}

.header-cta:hover {
  background: #e85a00;
  border-color: #e85a00;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-btn svg {
  opacity: 0.8;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}

.lang-option.active {
  background: var(--accent);
  color: var(--black);
}

/* RTL Support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-grid {
  direction: rtl;
}

[dir="rtl"] .about-grid {
  direction: rtl;
}

[dir="rtl"] .footer-top {
  direction: rtl;
}

[dir="rtl"] .benefits-grid {
  direction: rtl;
}

[dir="rtl"] .reviews-grid {
  direction: rtl;
}

[dir="rtl"] .tour-card {
  text-align: right;
}

[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .marquee-track {
  animation-direction: normal;
  animation-name: marquee-rtl;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10000;
  padding: 10px;
  margin: -10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.menu-toggle.active {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10001;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu CTA - Hidden by default */
.mobile-menu-cta {
  display: none;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */

/* Prevent long translated titles from overflowing */
.hero-title,
.hero-title-page {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hero-title span,
.hero-title-page span {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* Reduce flicker during language switching */
.lang-switching * {
  transition: none !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 0 0 80px;
}

.hero.hero-compact {
  min-height: 50vh;
  padding: 0;
  align-items: stretch;
}

.hero.hero-with-content {
  align-items: center;
  justify-content: center;
}

.hero-compact-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-compact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-compact-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ─── Page Title Bar (Compact) ──────────────────────────────────────────── */
.page-title-bar {
  padding: 100px 0 30px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-title-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-title-bar .filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title-bar .filter-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.page-title-bar .filter-btn:hover,
.page-title-bar .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

@media (max-width: 768px) {
  .page-title-bar {
    padding: 90px 0 20px;
  }
  
  .page-title-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Intro Section ─────────────────────────────────────────────────────── */
.intro-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--black);
}

.intro-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin: 0;
}

.intro-stats {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.intro-stat {
  text-align: center;
}

.intro-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.intro-stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-stats {
    justify-content: center;
  }
}

/* ─── Benefits Grid Alt ─────────────────────────────────────────────────── */
.benefits-grid-alt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card-alt {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.benefit-card-alt:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
}

.benefit-icon-alt {
  margin-bottom: 24px;
  color: var(--accent);
}

.benefit-card-alt h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--white);
}

.benefit-card-alt p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 1024px) {
  .benefits-grid-alt {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid-alt {
    grid-template-columns: 1fr;
  }
}

/* ─── Quick Info Section ────────────────────────────────────────────────── */
.quick-info-section {
  padding: 30px 0;
  background: var(--accent);
}

.quick-info-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-info-icon {
  font-size: 1.5rem;
}

.quick-info-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 768px) {
  .quick-info-grid {
    justify-content: center;
  }
  
  .quick-info-item {
    flex: 0 0 calc(50% - 10px);
    justify-content: center;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: contrast(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero-title {
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-weight: 400;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: var(--accent);
}

.hero-subtitle {
  display: none;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  text-align: right;
  padding-bottom: 10px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
}

.hero-stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 0 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-meta {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
  }
  
  .hero-stat {
    align-items: flex-start;
  }
  
  .hero-scroll-hint {
    display: none;
  }
}

/* ─── Section ───────────────────────────────────────────────────────────── */
.section {
  padding: 120px 0;
}

.section.section-compact {
  padding: 60px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 0;
}

.section-number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: rgba(0,0,0,0.06);
  font-weight: 400;
}

.section-line {
  height: 1px;
  background: #ddd;
  align-self: center;
  margin-bottom: 12px;
}

/* ─── Tours Slider ──────────────────────────────────────────────────────── */
.tours-header {
  text-align: center;
  margin-bottom: 60px;
}

.tours-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.tours-header-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 20px;
  line-height: 1.6;
}

/* ─── Section Headers Modern ────────────────────────────────────────────── */
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-bold {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.tours-slider-container {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.tours-nav-btn {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tours-nav-btn:hover {
  background: var(--black);
  color: var(--white);
}

.tours-slider-wrap {
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.tours-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: show 3 cards */
.tours-slider .tour-card {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}

.tour-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border: 1px solid #e5e5e5;
}

.tour-card:hover {
  border-color: #ccc;
}

.tour-image {
  overflow: hidden;
  position: relative;
}

.tour-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.02);
}

.tour-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
}

.tour-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 500;
}

.tour-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tour-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tour-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.tour-link {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.tour-card:hover .tour-link {
  color: var(--accent);
  border-color: var(--accent);
}

/* Clickable tour cards */
a.tour-card-clickable,
a.tour-card-clickable:hover {
  text-decoration: none;
  color: inherit;
}

.tour-card-clickable {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.tour-card-clickable:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.1);
}

a.tour-card-horizontal.tour-card-clickable {
  display: grid;
}

/* ─── Categories ────────────────────────────────────────────────────────── */
.categories-section {
  padding: 100px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  background: #000;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: all 0.4s ease;
}

.category-card:hover {
  background: #fafafa;
}

.category-image {
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.02);
}

.category-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #eee;
}

.category-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 8px;
  line-height: 1.1;
}

.category-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 500;
}

.category-meta {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.category-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.category-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.category-link {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.category-card:hover .category-link {
  color: var(--accent);
  border-color: var(--accent);
}

.category-arrow {
  display: none;
}

@media (max-width: 768px) {
  .categories-section {
    padding: 60px 0;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-content {
    padding: 24px;
  }
}

/* ─── About ─────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: 32px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #ddd;
}

.stat {
  text-align: left;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ─── Marquee ───────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(90deg, #9b59b6, #e91e63);
  border-top: none;
  border-bottom: none;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  white-space: nowrap;
  color: #2ecc71;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}

.marquee-item .marquee-separator {
  color: #fff;
  margin: 0 32px;
  font-size: 0.4em;
  line-height: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 18s;
  }
}

/* ─── Reviews ───────────────────────────────────────────────────────────── */
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.review-panel {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.4);
  padding: 24px;
}

.review-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}

.review-panel-header img {
  max-height: 36px;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.review-panel-score {
  text-align: right;
  color: var(--white);
}

.review-score {
  font-size: 1.2rem;
  font-weight: 700;
}

.review-stars {
  color: #f4c150;
  letter-spacing: 2px;
  display: block;
}

.review-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.review-panel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-panel-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-panel-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.review-panel-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reviews-panels {
    grid-template-columns: 1fr;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-card {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--white);
}

.review-author {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.reviews-footer {
  text-align: center;
  margin-top: 60px;
}

/* ─── CTA ───────────────────────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 120px 24px;
  background: var(--black);
  color: var(--white);
}

.cta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta h2,
.cta .section-title-bold {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 0.9rem;
}

.cta .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.cta .btn-primary:hover {
  background: #e85a00;
  border-color: #e85a00;
}

.cta .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cta .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 20px;
}

.footer-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.4);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-wrapper {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 -24px;
  padding: 0 24px;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet: 2 cards */
@media (max-width: 1200px) {
  .tours-slider .tour-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

/* Mobile: 1 card */
@media (max-width: 900px) {
  .tours-slider {
    gap: 0 !important;
  }
  
  .tours-slider .tour-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
  }
  
  .tours-slider-wrap {
    overflow: hidden !important;
  }
}

@media (max-width: 768px) {
  .nav, .header-cta, .header-instagram {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Hide language switcher on mobile - it's in the menu */
  .lang-switcher {
    display: none !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-meta {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 40px;
  }
  
  .categories-grid,
  .tours-grid,
  .about-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .tours-slider-container {
    gap: 12px;
    padding: 0 16px;
  }
  
  .tours-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ─── Simple Animations ─────────────────────────────────────────────────── */
/* ─── Page Hero ─────────────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.page-hero-image {
  background-size: cover;
  background-position: center;
  padding: 200px 0 120px;
}

.page-hero-image .container {
  position: relative;
  z-index: 2;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

/* ─── Hero Page (like main hero) ────────────────────────────────────────── */

/* Policy Pages */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--black);
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.policy-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--gray);
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--gray);
  line-height: 1.7;
}
.hero-page {
  min-height: 100vh;
  align-items: center;
  padding: 0;
}

.hero-page .container {
  position: relative;
  z-index: 2;
}

.hero-content-page {
  max-width: 800px;
  padding: 0;
}

.hero-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title-page {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 9.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-desc-page {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-actions .btn-primary:hover {
  background: #e85a00;
  border-color: #e85a00;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 16px 32px;
}

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

@media (max-width: 768px) {
  .hero-page {
    min-height: 90vh;
  }
  
  .hero-title-page {
    font-size: clamp(3rem, 15vw, 6rem);
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

.page-hero h1,
.page-hero .section-title-bold {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--gray);
  max-width: 600px;
}

/* ─── Category Filter ───────────────────────────────────────────────────── */
.category-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--black);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ─── Filter Section ────────────────────────────────────────────────────── */
.filter-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

/* ─── Tours List Header with Filter ─────────────────────────────────────── */
.tours-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.tours-list-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--black);
  margin: 0;
  text-transform: uppercase;
}

.tours-list-header .filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tours-list-header .filter-btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .tours-list-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-bar .filter-btn {
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── Page Hero Description ─────────────────────────────────────────────── */
.page-hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  line-height: 1.6;
}

/* ─── Tours Category ────────────────────────────────────────────────────── */
.tours-category {
  margin-bottom: 100px;
}

.tours-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ─── Tours List (Horizontal Cards) ─────────────────────────────────────── */
.tours-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tour-card-horizontal {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  padding: 0;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.tour-card-horizontal:hover {
  transform: none;
  border-color: #ccc;
}

.tour-card-horizontal .tour-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
}

.tour-card-horizontal .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.tour-card-horizontal:hover .tour-image img {
  transform: scale(1.02);
}

.tour-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tour-card .tour-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
}

.tour-card-horizontal .tour-content {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}

.tour-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tour-card .tour-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 500;
  padding: 0;
  background: transparent;
  border: none;
}

.tour-card-horizontal .tour-tag {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.tour-card-horizontal:hover .tour-tag {
  border-color: var(--accent);
  color: var(--accent);
}

.tour-card .tour-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tour-card-horizontal .tour-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--black);
  transition: color 0.3s ease;
}

.tour-card-horizontal .tour-desc,
.tour-card-horizontal .tour-tags,
.tour-card-horizontal .tour-tag,
.tour-card-horizontal .tour-features li,
.tour-card-horizontal .tour-meta,
.tour-card-horizontal .tour-meta span {
  color: var(--black);
}

.tour-card-horizontal:hover .tour-title {
  color: var(--accent);
}

.tour-desc {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1rem;
}

.tour-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 24px;
  list-style: none;
}

.tour-features li {
  font-size: 0.9rem;
  color: var(--black);
  padding-left: 24px;
  position: relative;
}

.tour-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tour-card-horizontal .tour-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.tour-card-horizontal .tour-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tour Time Slider (on card) */
.tour-time-slider {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tour-time-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.tour-time-labels span:first-child,
.tour-time-labels span:last-child {
  color: var(--accent);
  font-weight: 600;
}

.tour-time-labels span:nth-child(2) {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.tour-time-track {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.tour-time-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6b35);
  border-radius: 4px;
}

.tour-card .tour-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-card-horizontal .tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0;
  border-top: none;
}

.tour-card .tour-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.tour-card-horizontal .tour-price {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
}

.price-per {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Section Gray ──────────────────────────────────────────────────────── */
.section-gray {
  background: var(--black);
  color: var(--white);
}

.section-gray .benefit-card {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
}

.section-gray .benefit-card:hover {
  border-color: var(--accent);
}

.section-gray .benefit-card p {
  color: rgba(255,255,255,0.6);
}

/* ─── Responsive Tours List ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tour-card-horizontal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .tour-card-horizontal .tour-image {
    aspect-ratio: 16/9;
  }
  
  .tour-features {
    grid-template-columns: 1fr;
  }
  
  .tour-content {
    padding: 0;
  }
}

/* ─── Tours List (Horizontal Cards) ─────────────────────────────────────── */
.tours-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tour-card-horizontal {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.tour-card-horizontal:hover {
  box-shadow: none;
  transform: none;
  border-color: #ccc;
}

.tour-card-horizontal .tour-image {
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
}

.tour-card-horizontal .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.tour-card-horizontal:hover .tour-image img {
  transform: scale(1.02);
}

.tour-card-horizontal .tour-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.tour-card-horizontal .tour-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tour-card-horizontal .tour-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.tour-card-horizontal .tour-meta {
  margin-bottom: 24px;
}

.tour-card-horizontal .tour-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 0;
  border-top: none;
}

.tour-card-horizontal .tour-price {
  font-size: 1.8rem;
}

/* ─── Nav Active State ──────────────────────────────────────────────────── */
.nav a.active {
  color: var(--white);
}

.nav a.active::after {
  width: 100%;
}

@media (max-width: 900px) {
  .tour-card-horizontal {
    grid-template-columns: 1fr;
  }
  
  .tour-card-horizontal .tour-image {
    aspect-ratio: 16/9;
  }
}

/* ─── Stats Grid ────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  padding: 40px 20px;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  display: block;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ─── Features Grid ─────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Contact Page ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-method a,
.contact-method p {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.contact-method a {
  color: var(--accent);
}

.contact-cta-card {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-cta-card p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .stats-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ─── Benefits Grid ─────────────────────────────────────────────────────── */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 48px 32px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.benefit-icon svg {
  color: var(--accent);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.benefit-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.benefit-card-link {
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}

.benefit-card-link p {
  color: rgba(255,255,255,0.7);
}

.benefit-card-link:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Light benefit cards */
.benefits-grid-light {
  gap: 32px;
}

.benefit-card-light {
  background: var(--white);
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease;
}

.benefit-card-light:hover {
  border-color: var(--accent);
}

.benefit-card-light h3 {
  color: var(--black);
}

.benefit-card-light p {
  color: var(--gray);
}

.benefit-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 90, 31, 0.1);
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--accent);
}

.text-small {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* About grid reverse */
.about-grid-reverse {
  direction: rtl;
}

.about-grid-reverse > * {
  direction: ltr;
}

.about-image-map {
  border-radius: 8px;
  overflow: hidden;
}

.about-image-map iframe {
  display: block;
  width: 100%;
}

/* Location Content */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.location-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.location-map-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.location-map-wrapper iframe {
  display: block;
}

/* New Location Grid */
.location-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.location-info-new .section-title-bold {
  text-align: left;
  margin-bottom: 24px;
}

.location-city-new {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px 0;
}

.location-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 32px 0;
  max-width: 450px;
}

.location-features-new {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.location-features-new li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.location-features-new li:last-child {
  margin-bottom: 0;
}

.location-features-new li svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.location-map-new {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.location-map-new iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-desc {
    max-width: 100%;
  }
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease;
}

.social-card:hover {
  border-color: var(--accent);
}

.social-card svg {
  color: var(--accent);
  margin-bottom: 20px;
}

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.social-card span {
  color: var(--gray);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid-reverse {
    direction: ltr;
  }
}

/* ─── Instagram Section ─────────────────────────────────────────────────── */
.instagram-section {
  padding: 120px 0;
}

.instagram-content {
  text-align: center;
}

.instagram-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.instagram-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--accent);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.instagram-link:hover {
  color: var(--white);
}

.instagram-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:first-child {
  border-top: 1px solid #eee;
}

.faq-item summary {
  padding: 28px 0;
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s ease;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item p {
  padding: 0 0 28px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 1rem;
}

/* ─── Footer Updated ────────────────────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}


.footer-address {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer-credit {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-credit:hover {
  color: var(--accent);
}

/* ─── Button White ──────────────────────────────────────────────────────── */
.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--black);
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .instagram-link {
    font-size: 2rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}

/* ─── Mobile Menu Active ────────────────────────────────────────────────── */
.nav.active {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  background: var(--black) !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999 !important;
  padding: 100px 24px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav.active > a {
  font-size: 1.8rem;
  padding: 8px 0;
  color: var(--white);
}

.nav.active > a::after {
  display: none;
}

.nav.active .mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
  max-width: 280px;
}

.nav.active .mobile-menu-cta a {
  font-size: 0.9rem;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav.active .mobile-menu-cta a.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.nav.active .mobile-menu-cta a:not(.btn-primary):hover {
  background: rgba(255,255,255,0.1);
}

/* Mobile Language Select in Menu */
.mobile-lang-select {
  display: none;
}

.nav.active .mobile-lang-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 280px;
}

.mobile-lang-btn {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}


/* ─── About Page Styles ─────────────────────────────────────────────────── */

/* Section Subtitle Center */
.section-subtitle-center {
  text-align: center;
  max-width: 700px;
  margin: -40px auto 60px;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* Instagram Section Marquee Style */
.instagram-section {
  background: linear-gradient(90deg, #9b59b6, #e91e63);
}

.instagram-section .instagram-link {
  color: #2ecc71;
}

.instagram-section .instagram-link:hover {
  color: #ffffff;
}

.instagram-section .instagram-label {
  color: rgba(255,255,255,0.85);
}

.instagram-section .instagram-desc {
  color: rgba(255,255,255,0.9);
}

/* ─── Contact Page Styles ─────────────────────────────────────────────────── */

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--black);
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--accent);
  color: var(--white);
}

.contact-card-whatsapp .contact-card-icon {
  background: #25d366;
  color: var(--white);
}

.contact-card-whatsapp:hover .contact-card-icon {
  background: #128c7e;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card-value {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.location-info {
  padding: 20px 0;
}

.location-info h2 {
  margin-bottom: 20px;
}

.location-address {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

.location-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* Responsive About Page */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-image {
    width: 150px;
    height: 150px;
  }
  
  .section-subtitle-center {
    margin: -20px auto 40px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 32px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM ANIMATIONS & TRANSITIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Page Preloader ────────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.preloader-logo-wrap {
  position: relative;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-align: center;
  animation: preloaderFloat 2s ease-in-out infinite;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: preloaderRotate 1s linear infinite;
}

.preloader-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: preloaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes preloaderRotate {
  100% { transform: rotate(360deg); }
}

@keyframes preloaderDash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes preloaderTextPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── Hero Animations ───────────────────────────────────────────────────── */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 77, 0, 0.6), 0 0 80px rgba(255, 77, 0, 0.3);
  }
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroLineExpand {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

/* Hero Animation Classes */
.hero-bg video,
.hero-bg img {
  animation: heroBgZoom 2s ease-out forwards;
  animation-delay: 1.2s;
  transform: scale(1.1);
}

.hero-title span {
  display: block;
  opacity: 0;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-title span:nth-child(1) {
  animation-delay: 1.4s;
}

.hero-title span:nth-child(2) {
  animation-delay: 1.7s;
  color: var(--accent);
  animation-name: heroSlideUp;
}

.hero-title span:nth-child(2)::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--accent);
  margin-top: 20px;
  animation: heroLineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2.1s;
  width: 0;
}

.hero-meta {
  opacity: 0;
  animation: heroSlideLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2s;
}

.hero-stat {
  opacity: 0;
  animation: heroScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stat:nth-child(1) {
  animation-delay: 2.3s;
}

.hero-stat:nth-child(2) {
  animation-delay: 2.5s;
}

.hero-stat-value {
  animation: heroGlow 3s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ─── Page Transition Overlay ───────────────────────────────────────────── */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 9998;
  transform: translateY(100%);
  pointer-events: none;
}

.page-transition.active {
  animation: pageSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageSlideIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}

/* ─── Reveal Animations ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade.active {
  opacity: 1;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── Text Split Animation ──────────────────────────────────────────────── */
.split-text .word {
  display: inline-block;
  overflow: hidden;
}

.split-text .word-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-text.active .word-inner {
  transform: translateY(0);
}

/* ─── Hero Animations ───────────────────────────────────────────────────── */
.hero-title {
  overflow: hidden;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: heroTitleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; }

@keyframes heroTitleReveal {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── Card Hover Effects ────────────────────────────────────────────────── */
.tour-card {
  /* No hover effects */
}

.tour-card:hover {
  /* No hover effects */
}

.tour-card .tour-image img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image img {
  transform: scale(1.08);
}

.tour-card-horizontal {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card-horizontal:hover {
  /* no movement */
}

/* ─── Button Animations ─────────────────────────────────────────────────── */
.btn-primary,
.header-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before,
.header-cta:hover::before {
  left: 100%;
}

/* ─── Link Hover Effects ────────────────────────────────────────────────── */
.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* ─── Footer Link Animations ────────────────────────────────────────────── */
.footer-links a {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ─── Image Reveal Effect ───────────────────────────────────────────────── */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-reveal.active::after {
  transform: scaleX(0);
}

/* ─── Section Title Animation ───────────────────────────────────────────── */
/* Disabled - no underline */

/* ─── Counter Animation ─────────────────────────────────────────────────── */
.stat-number {
  display: inline-block;
}

/* ─── Marquee Enhancement ───────────────────────────────────────────────── */
.marquee-item {
  transition: color 0.3s ease;
}

.marquee:hover .marquee-item {
  color: var(--accent);
}

/* ─── Benefit Card Animations ───────────────────────────────────────────── */
.benefit-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
}

.benefit-card:hover {
  /* no movement */
}

.benefit-card svg,
.benefit-card .benefit-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover svg,
.benefit-card:hover .benefit-icon {
  /* no movement */
}

/* ─── Team Card Animations ──────────────────────────────────────────────── */
.team-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  /* no movement */
}

.team-image {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image {
  /* no movement */
}

/* ─── Review Card Animations ────────────────────────────────────────────── */
.review-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  /* no movement */
}

/* ─── Contact Card Animations ───────────────────────────────────────────── */
.contact-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-card svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.4s ease;
}

.contact-card:hover svg {
  color: var(--accent);
}

/* ─── Form Input Animations ─────────────────────────────────────────────── */
.contact-form input,
.contact-form textarea,
.contact-form select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

/* ─── Social Link Animations ────────────────────────────────────────────── */
.footer-social-link {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.3s ease,
              background 0.3s ease;
}

.footer-social-link:hover {
  color: var(--accent);
}

.header-instagram {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-instagram:hover {
  /* no movement */
}

/* ─── Scroll Progress Bar ───────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff8c00);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Smooth Scroll Indicator ───────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ─── Cursor Effects (Desktop) ──────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease, 
                width 0.2s ease, height 0.2s ease,
                background 0.2s ease;
    transform: translate(-50%, -50%);
  }

  .custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(255, 77, 0, 0.1);
    border-color: var(--accent);
  }

  .custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* ─── Parallax Elements ─────────────────────────────────────────────────── */
.parallax-slow {
  will-change: transform;
}

.parallax-fast {
  will-change: transform;
}

/* ─── Floating Animation ────────────────────────────────────────────────── */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ─── Glow Effect ───────────────────────────────────────────────────────── */
.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(255, 77, 0, 0.2); }
  to { box-shadow: 0 0 30px rgba(255, 77, 0, 0.4); }
}

/* ─── Loading Skeleton ──────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── AI Chat Widget ────────────────────────────────────────────────────── */
.ai-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.ai-chat-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.ai-chat-btn svg {
  width: 24px;
  height: 24px;
}

.ai-chat-widget {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 48px);
  height: 550px;
  max-height: calc(100vh - 140px);
  background: var(--black);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.ai-chat-widget.active {
  display: flex;
  animation: chatSlideIn 0.3s ease;
}

@keyframes chatSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ai-chat-header {
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.1) 0%, transparent 100%);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-chat-logo {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chat-logo svg {
  color: var(--white);
}

.ai-chat-header-title span {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.ai-chat-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ai-chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.ai-chat-messages::-webkit-scrollbar {
  width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.ai-chat-message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ai-chat-message.bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-chat-message.user {
  background: var(--accent);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-chat-message.typing {
  display: flex;
  gap: 5px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-chat-message.typing span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: typingDot 1.4s infinite;
}

.ai-chat-message.typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat-message.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-8px); opacity: 1; }
}

.ai-chat-input-wrap {
  padding: 20px 24px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
}

.ai-chat-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ai-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ai-chat-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.ai-chat-send {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.ai-chat-send:hover {
  opacity: 0.9;
}

.ai-chat-send:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .ai-chat-widget {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 70px);
    max-height: none;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
  }
  
  .ai-chat-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ─── Reduce Motion for Accessibility ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .preloader {
    display: none;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE DESIGN - Complete Adaptation
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Tablet (1024px and below) ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  .nav {
    gap: 24px;
  }
  
  .header-instagram span {
    display: none;
  }
  
  .header-instagram {
    padding: 12px;
  }
  
  .header-cta span {
    display: none;
  }
  
  .header-cta {
    padding: 12px;
  }
  
  .tours-slider .tour-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  
  .tour-card-horizontal {
    grid-template-columns: 300px 1fr;
    gap: 24px;
    padding: 24px;
  }
  
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ─── Mobile Large (768px and below) ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Base */
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  /* Header */
  .header {
    padding: 16px 0;
  }
  
  .header-inner {
    gap: 12px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .nav, 
  .header-cta,
  .header-instagram {
    display: none;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .lang-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  
  .lang-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }
  
  .menu-toggle span {
    width: 22px;
    transition: all 0.3s ease;
  }
  
  /* Mobile Menu */
  .nav.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 100;
    padding: 80px 24px;
  }
  
  .nav.active a {
    font-size: 1.8rem;
    padding: 12px 0;
  }
  
  /* Mobile Menu CTA */
  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
    max-width: 280px;
  }
  
  .nav.active .mobile-menu-cta a {
    font-size: 0.9rem;
    padding: 16px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  .nav.active .mobile-menu-cta a.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
  }
  
  /* Page Title Bar */
  .page-title-bar {
    padding: 80px 0 24px;
  }
  
  .page-main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  /* Sections */
  .section {
    padding: 60px 0;
  }
  
  .section.section-compact {
    padding: 40px 0;
  }
  
  .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .section-number {
    font-size: 3rem;
  }
  
  .section-line {
    display: none;
  }
  
  /* Tours Slider */
  .tours-header {
    margin-bottom: 32px;
  }
  
  .tours-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .tours-slider-container {
    padding: 0 16px;
    gap: 12px;
  }
  
  .tours-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .tours-slider .tour-card {
    flex: 0 0 100%;
  }
  
  .tours-slider {
    gap: 16px;
  }
  
  /* Tour Cards */
  .tour-card {
    border-radius: 0;
  }
  
  .tour-content {
    padding: 20px;
  }
  
  .tour-title {
    font-size: 1.2rem;
  }
  
  .tour-meta {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  
  .tour-price {
    font-size: 1.2rem;
  }
  
  .tour-link {
    font-size: 0.6rem;
  }
  
  /* Horizontal Tour Cards */
  .tour-card-horizontal {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  
  .tour-card-horizontal .tour-image {
    aspect-ratio: 16/10;
  }
  
  .tour-card-horizontal .tour-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .tour-card-horizontal .tour-desc {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .tour-card-horizontal .tour-meta {
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 0;
    margin-bottom: 16px;
  }
  
  .tour-features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .tour-features li {
    font-size: 0.85rem;
    padding-left: 20px;
  }
  
  .tour-card-horizontal .tour-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .tour-card-horizontal .tour-price {
    text-align: center;
  }
  
  .price-amount {
    font-size: 1.6rem;
  }
  
  .tour-card-horizontal .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Tours List Header */
  .tours-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
  
  .tours-list-title {
    font-size: 1.5rem;
  }
  
  /* Filter */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  
  .filter-btn {
    padding: 10px 16px;
    font-size: 0.7rem;
    flex: 1;
    min-width: calc(33.333% - 6px);
    text-align: center;
  }
  
  /* Category Title */
  .category-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  
  /* Categories */
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-content {
    padding: 20px;
  }
  
  .category-content h3 {
    font-size: 1.4rem;
  }
  
  /* CTA Section */
  .cta {
    padding: 60px 0;
  }
  
  .cta-label {
    font-size: 0.7rem;
  }
  
  .cta .section-title-bold {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 12px;
  }
  
  .cta-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }
  
  .btn-lg {
    padding: 16px 28px;
  }
  
  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-card {
    padding: 24px;
  }
  
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
  }
  
  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .review-panel {
    padding: 24px;
  }
  
  .review-panel-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Footer */
  .footer {
    padding: 48px 0 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-title {
    margin-bottom: 16px;
  }
  
  .footer-links a {
    padding: 8px 0;
    display: block;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }
  
  /* FAQ */
  .faq-item summary {
    padding: 20px 0;
    font-size: 1rem;
    gap: 16px;
  }
  
  .faq-item summary::after {
    font-size: 1.5rem;
  }
  
  .faq-item p {
    padding: 0 0 20px;
    font-size: 0.9rem;
  }
  
  /* Contact */
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-card {
    padding: 32px 24px;
  }
  
  .contact-card-icon {
    width: 64px;
    height: 64px;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
  }
  
  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .team-image {
    width: 150px;
    height: 150px;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  /* Instagram Section */
  .instagram-section {
    padding: 60px 0;
  }
  
  .instagram-link {
    font-size: 1.6rem;
    word-break: break-all;
  }
  
  .instagram-desc {
    font-size: 0.95rem;
  }
  
  /* Hero */
  .hero {
    padding: 0 0 40px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .hero-meta {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .hero-stat {
    align-items: flex-start;
  }
  
  .hero-stat-value {
    font-size: 2rem;
  }
  
  .hero-stat-label {
    font-size: 0.55rem;
  }
  
  .hero-scroll-hint {
    display: none;
  }
  
  /* Hero Page */
  .hero-page {
    min-height: 80vh;
    padding: 100px 0 60px;
  }
  
  .hero-title-page {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .hero-desc-page {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-grid-reverse {
    direction: ltr;
  }
  
  /* Social */
  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Mobile Small (480px and below) ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Base */
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  /* Header */
  .header {
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .lang-btn {
    padding: 8px 10px;
  }
  
  .lang-btn span {
    display: none;
  }
  
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile Menu */
  .nav.active {
    padding: 60px 16px;
    gap: 20px;
  }
  
  .nav.active a {
    font-size: 1.5rem;
    padding: 10px 0;
  }
  
  /* Page Title */
  .page-title-bar {
    padding: 70px 0 20px;
  }
  
  .page-main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  /* Sections */
  .section {
    padding: 48px 0;
  }
  
  .section.section-compact {
    padding: 32px 0;
  }
  
  /* Tours Slider */
  .tours-slider-container {
    padding: 0 12px;
    gap: 8px;
  }
  
  .tours-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  /* Tour Cards */
  .tour-content {
    padding: 16px;
  }
  
  .tour-title {
    font-size: 1.1rem;
  }
  
  .tour-card-horizontal {
    padding: 12px;
  }
  
  .tour-card-horizontal .tour-title {
    font-size: 1.2rem;
  }
  
  .tour-card-horizontal .tour-desc {
    font-size: 0.85rem;
  }
  
  .tour-card-horizontal .tour-meta {
    gap: 12px;
    font-size: 0.75rem;
  }
  
  .tour-features li {
    font-size: 0.8rem;
  }
  
  .price-amount {
    font-size: 1.4rem;
  }
  
  /* Filter */
  .filter-btn {
    padding: 8px 12px;
    font-size: 0.65rem;
    min-width: calc(50% - 4px);
  }
  
  /* CTA */
  .cta {
    padding: 48px 0;
  }
  
  .cta .section-title-bold {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  
  .cta-desc {
    font-size: 0.9rem;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.75rem;
  }
  
  .btn-lg {
    padding: 14px 24px;
  }
  
  /* Benefits */
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-icon {
    font-size: 1.8rem;
  }
  
  .benefit-card h3 {
    font-size: 1rem;
  }
  
  /* Reviews */
  .review-panel {
    padding: 20px;
  }
  
  .review-panel-text {
    font-size: 0.95rem;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-top {
    gap: 28px;
    margin-bottom: 28px;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
    padding: 16px 0;
  }
  
  /* FAQ */
  .faq-item summary {
    padding: 16px 0;
    font-size: 0.95rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
  }
  
  /* Contact */
  .contact-card {
    padding: 24px 16px;
  }
  
  .contact-card-icon {
    width: 56px;
    height: 56px;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  /* Team */
  .team-image {
    width: 120px;
    height: 120px;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
  
  /* Instagram */
  .instagram-section {
    padding: 48px 0;
  }
  
  .instagram-link {
    font-size: 1.3rem;
  }
  
  .instagram-desc {
    font-size: 0.9rem;
  }
  
  /* Hero */
  .hero {
    padding: 0 0 32px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  
  .hero-stat-value {
    font-size: 1.8rem;
  }
  
  /* Hero Page */
  .hero-page {
    min-height: 70vh;
    padding: 80px 0 48px;
  }
  
  .hero-title-page {
    font-size: clamp(2rem, 13vw, 3rem);
  }
  
  .hero-desc-page {
    font-size: 0.95rem;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 100px 0 48px;
  }
  
  .page-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  
  /* Chat Widget */
  .ai-chat-widget {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 60px);
    max-height: none;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
  }
  
  .ai-chat-btn {
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
  
  .ai-chat-header {
    padding: 14px 16px;
  }
  
  .ai-chat-messages {
    padding: 16px;
    gap: 12px;
  }
  
  .ai-chat-message {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  
  .ai-chat-input-wrap {
    padding: 12px 16px;
    gap: 8px;
  }
  
  .ai-chat-input {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .ai-chat-send {
    width: 44px;
    height: 44px;
  }
}

/* ─── Extra Small Devices (360px and below) ─────────────────────────────── */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .page-main-title {
    font-size: 1.4rem;
  }
  
  .tours-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .filter-btn {
    min-width: 100%;
    padding: 10px 16px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-stat-value {
    font-size: 1.5rem;
  }
  
  .nav.active a {
    font-size: 1.3rem;
  }
}

/* ─── Touch Device Optimizations ────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects for touch devices */
  .tour-card:hover {
    border-color: #e5e5e5;
  }
  
  .tour-card:hover .tour-image img {
    transform: none;
  }
  
  .tour-card:hover .tour-link {
    color: var(--black);
    border-color: var(--black);
  }
  
  .tour-card-horizontal:hover {
    border-color: #e5e5e5;
  }
  
  .tour-card-horizontal:hover .tour-title {
    color: var(--black);
  }
  
  .tour-card-horizontal:hover .tour-image img {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
  
  /* Increase tap targets */
  .nav a,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .filter-btn {
    min-height: 44px;
  }
  
  /* Active states for touch feedback */
  .btn:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
  
  .tour-card:active {
    background: #f5f5f5;
  }
  
  .filter-btn:active {
    background: var(--black);
    color: var(--white);
  }
}

/* ─── Landscape Mode Optimizations ──────────────────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }
  
  .hero-page {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-title-page {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .nav.active {
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 16px 32px;
  }
  
  .nav.active a {
    font-size: 1.2rem;
  }
  
  .ai-chat-widget {
    height: calc(100vh - 20px);
  }
}

/* ─── Safe Area Support (Notch devices) ─────────────────────────────────── */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  
  .footer-bottom {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  
  .ai-chat-widget {
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .nav.active {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

/* ─── Print Styles ──────────────────────────────────────────────────────── */
@media print {
  .header,
  .footer,
  .ai-chat-widget,
  .ai-chat-btn,
  .menu-toggle,
  .scroll-progress,
  .preloader {
    display: none !important;
  }
  
  .section {
    padding: 20px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 20px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOOKING FORM MODAL
   ═══════════════════════════════════════════════════════════════════════════ */

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 77, 0, 0.1);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  animation: modalSlideIn 0.35s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Custom scrollbar for modal */
.booking-modal-content::-webkit-scrollbar {
  width: 4px;
}

.booking-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.booking-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: rgba(255, 255, 255, 0.4);
}

.booking-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(90deg);
}

.booking-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Fixed Tour Display (locked selection) */
.booking-fixed-tour {
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.1) 0%, rgba(255, 77, 0, 0.05) 100%);
  border: 1px solid rgba(255, 77, 0, 0.25);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.booking-fixed-tour::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.booking-fixed-tour-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 77, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.booking-fixed-tour-icon svg {
  width: 20px;
  height: 20px;
}

.booking-fixed-tour-inner {
  flex: 1;
}

.booking-fixed-tour-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  display: block;
}

.booking-fixed-tour-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.booking-fixed-tour-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-form-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form-group label:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  padding-top: 8px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--white);
  transition: all 0.25s ease;
  width: 100%;
}

.booking-form-group input:hover,
.booking-form-group select:hover,
.booking-form-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 77, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.booking-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff4d00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.booking-form-group select option {
  background: #1a1a1a;
  color: var(--white);
  padding: 10px;
}

.booking-form-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* Date input styling */
.booking-form-group input[type="date"] {
  color-scheme: dark;
}

.booking-form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

/* Form Actions */
.booking-form-actions {
  margin-top: 20px;
}

.booking-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent) 0%, #e64500 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
}

.booking-submit:hover {
  background: linear-gradient(135deg, #ff6b35 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.4);
}

.booking-submit:active {
  transform: translateY(0);
}

.booking-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading spinner for submit button */
.booking-submit.loading span,
.booking-submit.loading svg {
  opacity: 0;
}

.booking-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.booking-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 20px;
  line-height: 1.5;
}

/* Booking Success State */
.booking-success {
  text-align: center;
  padding: 48px 24px;
}

.booking-success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
}

.booking-success-icon svg {
  width: 44px;
  height: 44px;
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-success p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.booking-success-btn {
  display: inline-flex;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-success-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* Booking Modal Responsive */
@media (max-width: 768px) {
  .booking-modal {
    padding: 16px;
  }
  
  .booking-modal-content {
    max-width: 100%;
    max-height: 90vh;
    padding: 24px 20px;
  }
  
  .booking-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  
  .booking-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .booking-header {
    margin-bottom: 24px;
  }
  
  .booking-title {
    font-size: 1.5rem;
  }
  
  .booking-form {
    gap: 14px;
  }
  
  .booking-form-group input,
  .booking-form-group select,
  .booking-form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .booking-fixed-tour {
    padding: 14px 16px;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .booking-fixed-tour-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

/* Phone input with country code */
.booking-phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.booking-country-code {
  min-width: 140px;
  max-width: 160px;
  padding: 12px 32px 12px 14px !important;
  font-size: 0.9rem;
  background-position: right 10px center !important;
  cursor: pointer;
  color: var(--white) !important;
}

.booking-phone-wrapper input[type="tel"] {
  flex: 1;
  min-width: 0;
}

/* Checkbox styling */
.booking-checkbox-group {
  margin-top: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.booking-checkbox-group:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.booking-checkbox-label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.booking-checkbox-label input[type="checkbox"] {
  display: none;
}

.booking-checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.booking-checkbox-custom::after {
  content: '✓';
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.booking-checkbox-label input[type="checkbox"]:checked + .booking-checkbox-custom {
  border-color: var(--accent);
  background: var(--accent);
}

.booking-checkbox-label input[type="checkbox"]:checked + .booking-checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.booking-checkbox-label:hover .booking-checkbox-custom {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ─── Booking Time Slots ───────────────────────────────────────────────────── */
.booking-slots-timeline {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-slots-track {
  position: relative;
  height: 36px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.35));
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.booking-slots-available {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.booking-slot-booked {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.9), rgba(185, 28, 28, 0.9));
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.booking-slot-booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.6;
}

.booking-slots-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.booking-slots-legend {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-slots-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.booking-slots-legend-item .legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.booking-slots-legend-item .legend-color.available {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.8));
}

.booking-slots-legend-item .legend-color.booked {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.9), rgba(185, 28, 28, 0.9));
}

.booking-slots-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.booking-slots-hint,
.booking-slots-loading,
.booking-slots-error,
.booking-slots-none {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  padding: 20px 16px;
  text-align: center;
  grid-column: 1 / -1;
}

.booking-slots-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.booking-slots-loading::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: slotsSpin 0.8s linear infinite;
}

@keyframes slotsSpin {
  to { transform: rotate(360deg); }
}

.booking-slots-error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 6px;
}

.booking-slots-none {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 6px;
}

.booking-slot-btn {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.booking-slot-btn .slot-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 2px;
}

.booking-slot-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.booking-slot-btn.selected {
  background: linear-gradient(135deg, var(--accent) 0%, #e64500 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.35);
  transform: translateY(-2px);
}

.booking-slot-btn.selected .slot-separator {
  color: rgba(255, 255, 255, 0.7);
}

.booking-slot-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

/* ─── Form Validation Styles ───────────────────────────────────────────────── */
.booking-form-group input:invalid:not(:placeholder-shown),
.booking-form-group select:invalid:not([value=""]),
.booking-form-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.booking-form-group input:valid:not(:placeholder-shown),
.booking-form-group select:valid:not([value=""]) {
  border-color: rgba(34, 197, 94, 0.4);
}

.booking-form-group .field-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 6px;
  display: none;
}

.booking-form-group.has-error .field-error {
  display: block;
}

.booking-form-group.has-error input,
.booking-form-group.has-error select,
.booking-form-group.has-error textarea {
  border-color: #ef4444 !important;
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* RTL Support for Booking Form */
[dir="rtl"] .booking-modal-close {
  right: auto;
  left: 20px;
}

[dir="rtl"] .booking-form-group select {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 44px;
}

[dir="rtl"] .booking-fixed-tour::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .booking-phone-wrapper {
  flex-direction: row-reverse;
}

[dir="rtl"] .booking-country-code {
  background-position: left 10px center !important;
  padding: 12px 14px 12px 32px !important;
}

