/* ============================================
   QAZAQ STEPPE TOUR — DESIGN SYSTEM
   Travel & Tourism | Central Asia
   Colors from logo: Green #009640, Navy #1E2A3A, Gold #C9A227
   ============================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Primary — Green (steppe & mountains) */
  --primary: #009640;
  --primary-hover: #007a33;
  --primary-light: #e8f5e9;
  --primary-glow: rgba(0, 150, 64, 0.15);

  /* Secondary — Navy (eagle & trust) */
  --secondary: #1E2A3A;
  --secondary-hover: #15202e;
  --secondary-light: #e8ecf0;

  /* Accent — Gold (golden steppe warmth) */
  --accent: #C9A227;
  --accent-hover: #b8911e;
  --accent-light: #fdf6e3;

  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #009640 0%, #1E2A3A 100%);
  --accent-gradient: linear-gradient(135deg, #C9A227 0%, #E67E22 100%);
  --hero-gradient: linear-gradient(135deg, rgba(0,150,64,0.92) 0%, rgba(30,42,58,0.88) 100%);
  --footer-gradient: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --gradient-text: linear-gradient(135deg, #009640 0%, #1E2A3A 100%);
  --gradient-text-accent: linear-gradient(135deg, #C9A227 0%, #E67E22 100%);

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-card: #ffffff;

  /* Text */
  --text-primary: #1E2A3A;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;

  /* Borders */
  --border-light: rgba(30, 42, 58, 0.08);
  --border-medium: rgba(30, 42, 58, 0.15);
  --border-glass: rgba(0, 150, 64, 0.15);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow-green: 0 0 30px rgba(0,150,64,0.15);
  --shadow-glow-gold: 0 0 30px rgba(201,162,39,0.15);

  /* Spacing */
  --section-padding: 6rem 0;
  --section-padding-mobile: 4rem 0;

  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50rem;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

ul, ol { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
}

@media (max-width: 768px) {
  section { padding: var(--section-padding-mobile); }
}

/* ── UTILITY CLASSES ── */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: var(--gradient-text-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.section-header .label::before,
.section-header .label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ── GLASS CARD ── */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,150,64,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,150,64,0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(201,162,39,0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Button shine effect */
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}

.btn-shine:hover::after {
  left: 100%;
}

/* ── HEADER / NAVBAR ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s var(--ease-smooth);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo .logo-name {
  font-size: 1.125rem;
  color: var(--secondary);
}

.header-logo .logo-tagline {
  font-size: 0.6875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
  font-family: 'Inter', sans-serif;
}

.nav a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav a.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Mobile menu button */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: background 0.3s;
}

.mobile-toggle:hover {
  background: var(--bg-tertiary);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,150,64,0.85) 0%, rgba(30,42,58,0.80) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(201,162,39,0.2);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-cta .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.hero-cta .btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Hero social proof */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

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

.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 5s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card .icon {
  font-size: 1.5rem;
}

.hero-float-card .info .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.hero-float-card .info .desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── FEATURES SECTION ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.9375rem;
}

/* ── DESTINATIONS GRID ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo);
}

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

.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}

.destination-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,150,64,0.85) 0%, rgba(30,42,58,0.3) 60%);
}

.destination-card .country {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.destination-card h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.destination-card .link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(10px);
  font-family: 'Inter', sans-serif;
}

.destination-card:hover .link {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOURS SECTION ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
}

.tour-card .tour-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo);
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-card .tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gradient);
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.tour-card .tour-country {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.tour-card .tour-body {
  padding: 2rem;
}

.tour-card .tour-duration {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.tour-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.tour-card .tour-desc {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.tour-card .tour-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.tour-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.tour-card .meta-item i {
  color: var(--primary);
}

.tour-card .tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.tour-card .price span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  text-align: left;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card .author-info .name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
}

.testimonial-card .author-info .location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── FAQ ACCORDION ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.3s var(--ease-smooth);
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
  color: var(--primary);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--bg-secondary);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.video-play-btn:hover {
  background: rgba(0,0,0,0.4);
}

.video-play-btn .play-circle {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease-bounce);
}

.video-play-btn:hover .play-circle {
  transform: scale(1.1);
}

.video-play-btn .play-circle svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-left: 4px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--primary-gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-section .btn-accent {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* ── FOOTER ── */
.footer {
  padding: 5rem 0 2rem;
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.link-group h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}

.link-group a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  padding: 0.4rem 0;
  transition: all 0.3s;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.link-group a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-smooth);
}

.link-group a:hover {
  color: #fff;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 0.2rem;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* ── PAGE HEADER BANNER ── */
.page-banner {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background: var(--secondary);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0.9;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
}

.page-banner .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.page-banner .breadcrumb a:hover {
  color: #fff;
}

.page-banner .breadcrumb span {
  color: var(--accent);
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-story h2 {
  margin-bottom: 1.5rem;
}

.about-story p {
  margin-bottom: 1.5rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 2.5rem 2rem;
  text-align: center;
}

.mv-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  margin-bottom: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.why-card p {
  font-size: 0.875rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  background: var(--primary-gradient);
  padding: 4rem 0;
  border-radius: var(--radius-xl);
  margin: 0 2rem;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  object-fit: cover;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: 'Inter', sans-serif;
}

.team-card h4 {
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
}

/* ── DESTINATIONS PAGE ── */
.country-section {
  margin-bottom: 4rem;
}

.country-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.country-header .flag {
  font-size: 2rem;
}

.country-header h2 {
  font-size: 1.75rem;
}

.dest-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dest-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

.dest-card .dest-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dest-card .dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card h4 {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.dest-card .tag {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.dest-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── TOURS PAGE ── */
.tour-detail-card {
  margin-bottom: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tour-detail-header {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.tour-detail-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-detail-header .tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.tour-detail-header .country-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
  background: rgba(255,255,255,0.9);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.tour-detail-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tour-detail-header .meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

.tour-detail-header .meta i {
  color: var(--accent);
  margin-right: 0.25rem;
}

.tour-detail-body {
  padding: 2.5rem;
}

/* Itinerary */
.itinerary {
  margin-top: 2rem;
}

.itinerary-day {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  background: var(--bg-secondary);
}

.day-header:hover {
  background: var(--primary-light);
}

.day-header .day-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.day-header .day-num {
  width: 36px;
  height: 36px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.day-header .day-title {
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.day-header .day-places {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.day-header .day-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}

.itinerary-day.open .day-icon {
  transform: rotate(180deg);
}

.day-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.day-content-inner {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.day-content-inner .schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.schedule-item .time {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  min-width: 60px;
  font-family: 'Inter', monospace;
}

.schedule-item .desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.day-includes {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.day-includes span {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* Tour included / not included */
.tour-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.includes-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.includes-box h4 {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.includes-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.includes-box li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.includes-box li i {
  color: var(--primary);
  width: 16px;
}

.includes-box.not-included li i {
  color: var(--text-muted);
}

/* ── GALLERY ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,150,64,0.6);
}

.gallery-item .gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.gallery-item .gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
}

/* Video testimonials */
.video-testimonials {
  margin-top: 4rem;
}

.video-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-testimonial-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.video-testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-testimonial-card .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,58,0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.video-testimonial-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease-bounce);
}

.video-testimonial-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial-card .play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-left: 3px;
}

.video-testimonial-card .traveler-name {
  color: #fff;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.video-testimonial-card .traveler-location {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
}

/* Instagram grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,150,64,0);
  transition: background 0.3s;
}

.instagram-item:hover::after {
  background: rgba(0,150,64,0.3);
}

/* ── BLOG PAGE ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.blog-featured-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-featured-content .blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.blog-featured-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.blog-featured-content h2 a:hover {
  color: var(--primary);
}

.blog-featured-content .excerpt {
  margin-bottom: 1.5rem;
}

.blog-featured-content .blog-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card .blog-image {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card .blog-content {
  padding: 1.5rem 0;
}

.blog-card .blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card .excerpt {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog-card .blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s;
}

.blog-card .read-more:hover {
  gap: 0.5rem;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.contact-form-wrapper > p {
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Map */
.contact-map {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  color: #fff;
  font-size: 1.75rem;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ── SCROLL ANIMATIONS ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-detailed-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .video-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); margin: 0; border-radius: var(--radius-xl); }
  .stat-item { padding: 2rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .header-cta .btn { display: none; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tour-includes { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .video-testimonial-grid { grid-template-columns: 1fr; }

  .dest-card { flex-direction: column; }
  .dest-card .dest-image { width: 100%; height: 200px; }

  .footer-content { grid-template-columns: 1fr 1fr; }

  .hero-float-card { display: none; }

  .tour-detail-header { height: 280px; }
  .tour-detail-header .meta { flex-wrap: wrap; gap: 1rem; }

  .page-banner { padding: 8rem 0 4rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stat .number { font-size: 1.5rem; }
  .footer-content { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
