/* ===================================
   VastGuide - Nature Organic Design
   CSS Stylesheet
   =================================== */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2C3E2E;
  background-color: #F8F6F1;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2C5F2D;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 38px; margin-bottom: 20px; }
h3 { font-size: 28px; margin-bottom: 16px; }
h4 { font-size: 22px; margin-bottom: 12px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #3D4F3E;
  font-size: 16px;
}

a {
  color: #2C5F2D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #3D4F3E;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.1);
  border-bottom: 2px solid #D4AF37;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F2D;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: #D4AF37;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #2C5F2D;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #D4AF37;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  z-index: 1999;
  padding: 80px 24px 24px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #D4AF37;
  border-color: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background-color: rgba(212, 175, 55, 0.2);
  border-left-color: #D4AF37;
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(30, 74, 31, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F2D" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '✓';
  color: #D4AF37;
  font-size: 18px;
  font-weight: bold;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: #D4AF37;
  color: #2C5F2D;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: #C49E2D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  color: #2C5F2D;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #2C5F2D;
  transform: translateY(-2px);
}

.btn-link {
  color: #2C5F2D;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #D4AF37;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.featured-destinations,
.testimonials,
.how-it-works,
.destination-regions,
.destination-types,
.insider-tips,
.services-detailed,
.custom-experiences,
.company-story,
.mission-values,
.sustainability,
.statistics,
.content-categories,
.article-grid,
.contact-methods,
.office-information,
.faq-contact {
  padding: 80px 0;
}

.value-proposition {
  background-color: white;
  text-align: center;
}

.section-subheadline {
  color: #5A6B5B;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Grid Layouts - Using ONLY Flexbox */
.benefits-grid,
.services-grid,
.destinations-grid,
.testimonials-grid,
.steps-grid,
.regions-grid,
.types-grid,
.tips-grid,
.values-grid,
.initiatives-grid,
.stats-grid,
.categories-grid,
.articles-grid,
.methods-grid,
.detail-card {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Card Layouts */
.benefit-card,
.service-card,
.destination-card,
.testimonial-card,
.step,
.region-card,
.type-card,
.tip-card,
.value-card,
.initiative,
.stat,
.category-card,
.article-card,
.method-card,
.detail-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 2px solid transparent;
}

.benefit-card:hover,
.service-card:hover,
.destination-card:hover,
.region-card:hover,
.type-card:hover,
.category-card:hover,
.article-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.2);
  border-color: #D4AF37;
}

.benefit-card img,
.service-card img,
.type-card img,
.region-card img,
.category-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(44, 95, 45, 0.2));
}

.service-card-expanded {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #D4AF37;
}

.service-card-expanded img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.highlights li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #3D4F3E;
}

.highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: bold;
  font-size: 18px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

/* Testimonials */
.testimonials {
  background-color: #E8F4F8;
  text-align: center;
}

.testimonial-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E2E;
  font-size: 16px;
  line-height: 1.6;
}

.rating {
  color: #D4AF37;
  font-size: 20px;
  margin: 8px 0;
}

.customer-name {
  font-weight: 600;
  color: #2C5F2D;
  font-size: 14px;
  font-style: normal;
}

/* Destination Cards */
.destination-card {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  color: white;
  padding: 40px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-card h3 {
  color: white;
  margin-bottom: 12px;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Steps */
.step {
  text-align: center;
  background-color: white;
  flex: 1 1 280px;
  max-width: 340px;
}

.step img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-top: 24px;
}

.trust-signals {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 16px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  padding: 100px 0 60px;
  text-align: center;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: #D4AF37;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

/* Timeline */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
}

.milestone {
  text-align: center;
  flex: 1 1 200px;
  max-width: 220px;
}

.milestone h3 {
  color: #D4AF37;
  font-size: 36px;
  margin-bottom: 8px;
}

.milestone p {
  color: #3D4F3E;
  font-size: 16px;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 0 auto 48px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #3D4F3E;
}

/* Stats */
.stat {
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid rgba(44, 95, 45, 0.1);
}

.stat h3 {
  font-size: 48px;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat p {
  color: #2C5F2D;
  font-weight: 600;
  font-size: 16px;
}

/* Promise/Initiative Lists */
.promise-list,
.customization-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.promise,
.custom-option {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.08);
}

/* Articles & Blog */
.featured-article {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  padding: 60px 0;
}

.featured-badge {
  display: inline-block;
  background-color: #D4AF37;
  color: #2C5F2D;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.article-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 320px;
  max-width: 380px;
  border-left: 4px solid #2C5F2D;
}

.category-tag {
  display: inline-block;
  background-color: rgba(44, 95, 45, 0.1);
  color: #2C5F2D;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page */
.contact-form-section {
  background-color: white;
  padding: 80px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-placeholder {
  background-color: #F8F6F1;
  padding: 40px;
  border-radius: 16px;
  border: 2px dashed rgba(44, 95, 45, 0.2);
  margin-top: 32px;
}

.form-info {
  margin-bottom: 32px;
}

.form-info ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.form-info li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #3D4F3E;
}

.form-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 24px;
  line-height: 1;
}

.note {
  font-size: 14px;
  color: #5A6B5B;
  font-style: italic;
  margin-top: 16px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.appointment-note {
  text-align: center;
  color: #5A6B5B;
  font-style: italic;
  margin-top: 32px;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  flex: 1 1 100%;
  background-color: white;
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.08);
}

.faq-item h3 {
  color: #2C5F2D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #3D4F3E;
  margin-bottom: 0;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
  background-color: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid rgba(44, 95, 45, 0.1);
}

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

.content-wrapper h3 {
  margin-top: 32px;
  font-size: 22px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0 20px 24px;
}

.content-wrapper li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.quick-links {
  background-color: #F8F6F1;
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
}

.quick-links h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.quick-links a {
  display: block;
  padding: 12px 0;
  color: #2C5F2D;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(44, 95, 45, 0.1);
}

.quick-links a:last-child {
  border-bottom: none;
}

.quick-links a:hover {
  color: #D4AF37;
  transform: translateX(8px);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4AF37;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.next-steps {
  padding: 80px 0;
  background-color: white;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #D4AF37;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.what-now {
  background-color: #F8F6F1;
  padding: 80px 0;
}

.suggestions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.suggestion-card,
.link-card {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.15);
}

.contact-alternatives {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  max-width: 280px;
}

.contact-option img {
  width: 48px;
  height: 48px;
}

.contact-option p {
  color: #3D4F3E;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.testimonial-single {
  background-color: #E8F4F8;
  padding: 80px 0;
  text-align: center;
}

.testimonial-highlight {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.1);
}

.testimonial-highlight p:first-child {
  font-size: 20px;
  font-style: italic;
  color: #2C3E2E;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Newsletter */
.newsletter-signup {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E4A1F 100%);
  padding: 80px 0;
  text-align: center;
}

.newsletter-signup h2 {
  color: white;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background-color: #1E4A1F;
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 74, 31, 0.98);
  color: white;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D4AF37;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #D4AF37;
  color: #2C5F2D;
  border: none;
}

.cookie-accept:hover {
  background-color: #C49E2D;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-reject:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  text-decoration: underline;
  padding: 12px 16px;
}

.cookie-settings:hover {
  color: #D4AF37;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 32px 32px 24px;
  border-bottom: 2px solid rgba(44, 95, 45, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #2C5F2D;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #5A6B5B;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(44, 95, 45, 0.1);
  color: #2C5F2D;
}

.modal-body {
  padding: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F6F1;
  border-radius: 12px;
  border-left: 4px solid #2C5F2D;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.category-header h4 {
  margin: 0;
  color: #2C5F2D;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 54px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 28px;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #2C5F2D;
}

input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  color: #3D4F3E;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.modal-footer {
  padding: 24px 32px;
  border-top: 2px solid rgba(44, 95, 45, 0.1);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.save-preferences {
  background-color: #D4AF37;
  color: #2C5F2D;
  border: none;
}

.save-preferences:hover {
  background-color: #C49E2D;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .benefits-grid,
  .services-grid,
  .destinations-grid,
  .testimonials-grid,
  .steps-grid,
  .regions-grid,
  .types-grid,
  .tips-grid,
  .values-grid,
  .stats-grid,
  .categories-grid,
  .articles-grid,
  .methods-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card,
  .service-card,
  .destination-card,
  .testimonial-card,
  .step,
  .region-card,
  .type-card,
  .tip-card,
  .value-card,
  .stat,
  .category-card,
  .article-card,
  .method-card {
    max-width: 100%;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    max-width: 100%;
  }

  .section,
  .value-proposition,
  .services-overview,
  .featured-destinations,
  .testimonials,
  .how-it-works {
    padding: 48px 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .milestone {
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .modal-content {
    max-height: 90vh;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  
  .hero h1 {
    font-size: 34px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .article-card {
    padding: 24px;
  }

  .service-card-expanded {
    padding: 28px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .cta-banner,
  .btn {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  .header {
    position: relative;
    box-shadow: none;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

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

.benefit-card,
.service-card,
.destination-card,
.article-card {
  animation: fadeIn 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #2C5F2D;
  }

  .btn-secondary {
    border: 2px solid white;
  }
}

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