/* ============================================
   ENTORNO TRAVEL - Design System
   Generated with UI/UX Pro Max Skill
   Style: Motion-Driven | Pattern: Storytelling + Hero
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  --color-primary: #0EA5E9;
  --color-on-primary: #FFFFFF;
  --color-secondary: #38BDF8;
  --color-accent: #EA580C;
  --color-background: #F0F9FF;
  --color-foreground: #0C4A6E;
  --color-muted: #E8F2F8;
  --color-border: #BAE6FD;
  --color-destructive: #DC2626;
  --color-ring: #0EA5E9;
  --color-whatsapp: #25D366;
  --color-dark: #0F172A;
  --color-gold: #F59E0B;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-fast: 150ms ease-out;
  --transition-base: 300ms ease-out;
  --transition-slow: 500ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-dark);
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* Focus states for keyboard nav */
*:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: 300px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast);
}

.navbar-logo:hover .navbar-logo-img {
  opacity: 0.85;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.navbar-links a:hover {
  color: var(--color-gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  transition: color var(--transition-fast);
  cursor: pointer;
  padding: 0.5rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.4) 50%,
    rgba(15, 23, 42, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-logo {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 em {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  min-height: 48px;
  cursor: pointer;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
  background-color: #dc5209;
}

.hero-cta:active {
  transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Common --- */
.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: var(--color-dark);
  color: white;
}

.section-muted {
  background: var(--color-muted);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--color-gold);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 1.063rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Features / Concepto --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  animation: icon-float 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
  transform-style: preserve-3d;
  perspective: 600px;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, var(--color-accent), #F59E0B);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
  animation-delay: -1s;
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #10B981, #34D399);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  animation-delay: -2s;
}

.feature-card:hover .feature-icon {
  transform: rotateY(15deg) rotateX(-10deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.45);
}

.feature-card:nth-child(2):hover .feature-icon {
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.45);
}

.feature-card:nth-child(3):hover .feature-icon {
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.45);
}

/* 3D shine effect */
.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
}

/* Subtle reflection */
.feature-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 70%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-6px) rotateY(5deg); }
  50% { transform: translateY(-10px) rotateY(0deg); }
  75% { transform: translateY(-6px) rotateY(-5deg); }
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature-card p {
  font-size: 0.938rem;
  color: #64748B;
  line-height: 1.6;
}

/* --- Vibe Filter Pills --- */
.vibe-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.vibe-pill {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
  background: white;
  transition: all var(--transition-fast);
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.vibe-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.vibe-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* --- Destination Cards Grid --- */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.destination-card.hidden {
  display: none;
}

.destination-card:hover {
  transform: translateY(-4px);
}

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

.destination-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.destination-vibes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.vibe-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  font-size: 0.688rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: white;
  margin-bottom: 0.25rem;
}

.destination-price {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.destination-price strong {
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.destination-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-whatsapp);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
  width: fit-content;
  cursor: pointer;
}

.destination-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.destination-cta svg {
  width: 18px;
  height: 18px;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: white;
}

.step-card p {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

/* --- Testimonials --- */
.testimonials-section {
  overflow: hidden;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-muted);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.938rem;
  color: var(--color-dark);
}

.testimonial-dest {
  font-size: 0.813rem;
  color: #94A3B8;
}

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

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-foreground);
  text-align: left;
  cursor: pointer;
  min-height: 48px;
  transition: color var(--transition-fast);
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.938rem;
  color: #64748B;
  line-height: 1.7;
}

/* --- CTA Final --- */
.cta-final {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1E3A5F 50%, var(--color-primary) 100%);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-final h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 3rem;
  background: var(--color-whatsapp);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 52px;
  cursor: pointer;
}

.cta-whatsapp-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp-big svg {
  width: 24px;
  height: 24px;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 45px;
  max-height: 45px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--color-gold);
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* --- Swiper Overrides --- */
.swiper {
  padding-bottom: 3rem !important;
}

.swiper-pagination-bullet {
  background: var(--color-primary) !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  width: 28px !important;
  border-radius: var(--radius-full) !important;
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

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

  .menu-toggle {
    display: none !important;
  }

  .navbar-links {
    display: flex !important;
  }
}

@media (max-width: 1023px) {
  .navbar-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .hero-bg {
    transform: scale(1) !important;
    transition: none !important;
  }
}
