/* ============================================
   VRBO Canada - Main Stylesheet
   Modern, Clean, Travel-Inspired Design
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors - Deep Navy & Warm Gold */
  --primary-navy: #0f2b46;
  --primary-navy-light: #1a3d5c;
  --primary-gold: #d4a853;
  --primary-gold-light: #e8c77b;
  
  /* Accent Colors */
  --accent-teal: #2d9da8;
  --accent-teal-light: #4ab8c3;
  --accent-coral: #e07a5f;
  --accent-blue: #0066cc;
  --accent-blue-light: #0077ee;
  --accent-blue-dark: #0052a3;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #ced4da;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Functional Colors */
  --success: #2d9da8;
  --warning: #d4a853;
  --error: #e07a5f;
  
  /* Typography */
  --font-primary: 'Playfair Display', Georgia, serif;
  --font-secondary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 43, 70, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 43, 70, 0.1);
  --shadow-lg: 0 8px 24px rgba(15, 43, 70, 0.15);
  --shadow-xl: 0 16px 48px rgba(15, 43, 70, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-800);
  background-color: var(--neutral-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-navy);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-teal-light);
}

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

ul, ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--container-md);
}

.container-wide {
  max-width: var(--container-2xl);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-300);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.logo-text span {
  color: var(--primary-gold);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--neutral-700);
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--neutral-200);
  border-radius: var(--radius-full);
}

.lang-switcher a {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-600);
  transition: all var(--transition-fast);
}

.lang-switcher a:hover {
  color: var(--primary-navy);
}

.lang-switcher a.active {
  background: var(--neutral-100);
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  transition: all var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
  color: var(--neutral-100);
  border-color: var(--accent-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--accent-blue) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--neutral-100);
}

.btn-secondary {
  background: var(--primary-navy);
  color: var(--neutral-100);
  border-color: var(--primary-navy);
}

.btn-secondary:hover {
  background: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--neutral-100);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--neutral-100);
}

.btn-ghost {
  background: transparent;
  color: var(--neutral-700);
  border-color: transparent;
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  background: var(--neutral-200);
  color: var(--primary-navy);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(70px + var(--space-lg)) 0 var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(15, 43, 70, 0.92) 0%, rgba(26, 61, 92, 0.85) 50%, rgba(45, 157, 168, 0.7) 100%),
    url('vrbo canada nature.jpeg') center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: var(--radius-full);
  color: var(--primary-gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--neutral-100);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.2;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  justify-content: center;
}

/* Booking Widget Container */
.booking-widget-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin: var(--space-md) auto;
}

.booking-widget-container h3 {
  color: var(--neutral-100);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  text-align: center;
}

/* Make hero description more compact */
.hero-description {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
}

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

.stat-value {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  font-size: 1.125rem;
  color: var(--neutral-600);
}

/* Alt Sections */
.section-alt {
  background: var(--neutral-200);
}

.section-dark {
  background: var(--primary-navy);
  color: var(--neutral-100);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--neutral-100);
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-gold);
  color: var(--primary-navy);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.card-content {
  padding: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-title a {
  color: var(--primary-navy);
}

.card-title a:hover {
  color: var(--accent-teal);
}

.card-text {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Destination Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-xl);
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-light) 100%);
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.feature-text {
  color: var(--neutral-600);
  font-size: 0.9375rem;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.content-section.reverse {
  direction: rtl;
}

.content-section.reverse > * {
  direction: ltr;
}

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

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

.content-body h2 {
  margin-bottom: var(--space-lg);
}

.content-body p {
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.content-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.content-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-teal);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   ARTICLE/GUIDE CONTENT
   ============================================ */
.article-header {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  text-align: center;
}

.article-header .container {
  max-width: var(--container-md);
}

.article-header h1 {
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.article-content {
  padding: var(--space-3xl) 0;
}

.article-content .container {
  max-width: var(--container-md);
}

.article-content h2 {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-300);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  margin-top: var(--space-xl);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-lg);
}

.article-content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--neutral-200);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--neutral-700);
}

.article-image {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.article-image img {
  width: 100%;
  height: auto;
}

.article-image figcaption {
  padding: var(--space-md);
  background: var(--neutral-200);
  font-size: 0.875rem;
  color: var(--neutral-600);
  text-align: center;
}

/* Table of Contents */
.toc {
  background: var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.toc h4 {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--primary-navy);
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin-bottom: var(--space-sm);
}

.toc a {
  color: var(--neutral-700);
  font-size: 0.9375rem;
}

.toc a:hover {
  color: var(--accent-teal);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--neutral-200);
  padding: var(--space-3xl) 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h3 {
  margin-bottom: var(--space-sm);
}

.newsletter-content p {
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-teal);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  color: var(--neutral-100);
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--neutral-100);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--primary-navy);
}

.footer-column h4 {
  color: var(--neutral-100);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

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

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--neutral-800);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--neutral-100);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(45, 157, 168, 0.15);
}

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-navy); }
.text-accent { color: var(--accent-teal); }
.text-gold { color: var(--primary-gold); }
.text-muted { color: var(--neutral-600); }

.bg-primary { background-color: var(--primary-navy); }
.bg-light { background-color: var(--neutral-200); }
.bg-white { background-color: var(--neutral-100); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }
.mt-4 { margin-top: var(--space-2xl); }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-section {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .content-section.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .header-inner {
    flex-wrap: wrap;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    padding: var(--space-lg) 0;
    gap: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--neutral-300);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .destinations-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .header-actions {
    gap: var(--space-sm);
  }
  
  .btn {
    padding: var(--space-md);
  }
  
  .lang-switcher {
    padding: 2px;
  }
  
  .lang-switcher a {
    padding: var(--space-xs) 6px;
    font-size: 0.75rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .booking-widget-container,
  .cta-section,
  .newsletter-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-in {
  animation: slideIn 0.6s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

