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

:root {
  --primary: #5C2D0C;
  --secondary: #D4AF37;
  --accent: #B8860B;
  --text-dark: #2C1810;
  --text-light: #F5F5F0;
  --bg-cream: #FAF8F3;
  --bg-light: #FFFFFF;
  --border-gold: #D4AF37;
  --shadow: rgba(92, 45, 12, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Lato', sans-serif;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  color: var(--bg-light);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-light);
  z-index: 1002;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px var(--shadow);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 2px solid var(--bg-cream);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--secondary);
  padding-left: 8px;
  border-bottom-color: var(--secondary);
}

/* Header */
header {
  background: var(--bg-light);
  border-bottom: 3px solid var(--secondary);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px var(--shadow);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px var(--shadow));
}

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

.main-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3D1D08 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--secondary);
  font-size: 56px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
  font-size: 24px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--bg-cream);
  line-height: 1.8;
}

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

.trust-badge {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Page Hero (Internal Pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3D1D08 100%);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid var(--secondary);
}

.page-hero h1 {
  color: var(--secondary);
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--bg-cream);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Styles */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Value Proposition */
.value-proposition {
  background: var(--bg-light);
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: var(--bg-cream);
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 12px var(--shadow);
  transition: var(--transition);
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s ease;
}

.value-card:hover::before {
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.value-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* Services Preview */
.services-preview {
  background: var(--bg-cream);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--bg-light);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(92, 45, 12, 0.2);
  border-color: var(--secondary);
}

.service-card h3 {
  color: var(--primary);
  font-size: 24px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  margin: 8px 0;
}

.service-card .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials */
.testimonials {
  background: var(--bg-light);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--bg-cream);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: var(--secondary);
  opacity: 0.2;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-size: 14px;
  color: var(--primary);
  font-style: normal;
  margin-top: 16px;
}

.testimonial-card .author strong {
  color: var(--secondary);
  font-weight: 700;
}

/* CTA Sections */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #3D1D08 100%);
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2,
.cta-section h2 {
  color: var(--secondary);
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-final p,
.cta-section p {
  color: var(--bg-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.urgency {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Excursions List */
.excursions-list {
  padding: 60px 20px;
}

.excursion-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 16px var(--shadow);
  margin-bottom: 32px;
  transition: var(--transition);
  position: relative;
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.excursion-card h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.excursion-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
  margin: 16px 0;
  display: inline-block;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.highlights li {
  background: var(--bg-cream);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--border-gold);
}

/* Booking Benefits */
.booking-benefits {
  background: var(--bg-cream);
  padding: 60px 20px;
}

.booking-benefits h2 {
  text-align: center;
  margin-bottom: 32px;
}

.booking-benefits ul {
  max-width: 600px;
  margin: 0 auto;
}

.booking-benefits li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 18px;
  color: var(--text-dark);
}

.booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 24px;
  font-weight: 700;
}

/* About Story */
.about-story {
  padding: 60px 20px;
  background: var(--bg-light);
}

.about-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.9;
}

/* Mission Values */
.mission-values {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.mission-statement {
  font-size: 24px;
  font-style: italic;
  text-align: center;
  color: var(--primary);
  max-width: 800px;
  margin: 0 auto 48px;
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
}

/* Team Sections */
.team-founders,
.guides-team {
  padding: 60px 20px;
  background: var(--bg-light);
}

.team-grid,
.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.team-member,
.guide-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--bg-cream);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  margin-bottom: 20px;
}

.team-member:hover,
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.team-member h3,
.guide-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.role,
.specialty {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  display: block;
}

.languages,
.experience {
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 12px;
  font-style: italic;
}

/* Guides Philosophy */
.guides-philosophy {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.guides-philosophy h2 {
  text-align: center;
  margin-bottom: 24px;
}

.guides-philosophy p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
}

/* Booking Section */
.booking-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.booking-content h2 {
  text-align: center;
  margin-bottom: 40px;
}

.excursion-selector {
  max-width: 700px;
  margin: 0 auto 40px;
}

.excursion-option {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: 4px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.excursion-option:hover {
  border-color: var(--secondary);
}

.excursion-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
}

.excursion-option label {
  cursor: pointer;
  font-size: 16px;
  flex: 1;
}

.booking-details {
  max-width: 700px;
  margin: 40px auto;
  padding: 32px;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 2px solid var(--border-gold);
}

.contact-info {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 4px solid var(--secondary);
}

/* Guarantees */
.guarantees {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.guarantees h2 {
  text-align: center;
  margin-bottom: 40px;
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guarantee-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  margin-bottom: 20px;
}

.guarantee-item h3 {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 8px;
}

/* Pricing Info */
.pricing-info {
  padding: 60px 20px;
  background: var(--bg-light);
}

.pricing-details {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-details h3 {
  color: var(--secondary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.pricing-details ul {
  margin-left: 24px;
}

.pricing-details li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.pricing-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700;
}

/* Blog Articles */
.blog-articles {
  padding: 60px 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--bg-light);
  padding: 32px;
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  border-color: var(--secondary);
}

.article-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.meta {
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  margin-top: 16px;
}

/* Contact Sections */
.contact-info {
  padding: 60px 20px;
  background: var(--bg-light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 20px;
}

.contact-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.form-info {
  max-width: 600px;
  margin: 32px auto;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.form-info ul {
  margin-left: 24px;
  margin-top: 16px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 24px;
  background: var(--bg-cream);
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  background: var(--bg-light);
}

.legal-content {
  max-width: 800px;
  margin: 32px auto 0;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Thank You Pages */
.thank-you-hero,
.thank-you-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #3D1D08 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.thank-you-hero h1,
.thank-you-page h1 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.thank-you-hero p,
.thank-you-page p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 32px;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
  background: var(--bg-light);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 2px solid var(--border-gold);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}

/* Preparation */
.preparation {
  padding: 60px 20px;
  background: var(--bg-cream);
}

.preparation ul {
  max-width: 600px;
  margin: 0 auto;
}

.preparation li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.preparation li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 700;
}

/* Contact Support */
.contact-support {
  padding: 60px 20px;
  background: var(--bg-light);
  text-align: center;
}

.contact-support h2 {
  margin-bottom: 24px;
}

.contact-support p {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--secondary);
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-column h4 {
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column li {
  color: var(--bg-cream);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: var(--bg-cream);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-legal a {
  color: var(--bg-cream);
  font-size: 13px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary);
}

.copyright {
  font-size: 13px;
  color: var(--bg-cream);
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-light);
  border-top: 3px solid var(--secondary);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accept-all {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.accept-all:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.reject-all {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.reject-all:hover {
  background: var(--primary);
  color: var(--text-light);
}

.cookie-settings {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-settings:hover {
  background: var(--accent);
  color: var(--bg-light);
}

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 3px solid var(--secondary);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.modal-content h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: 4px;
  border-left: 4px solid var(--secondary);
}

.cookie-category h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-buttons button {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.save-preferences {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.save-preferences:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu elements */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  /* Adjust sections */
  section {
    padding: 40px 20px;
  }
  
  /* Grid adjustments */
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .guarantees-grid,
  .team-grid,
  .guides-grid,
  .articles-grid,
  .contact-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .guarantee-item,
  .team-member,
  .guide-card,
  .article-card,
  .contact-card,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA buttons */
  .hero-cta,
  .cta-buttons,
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .service-card,
  .excursion-card,
  .value-card {
    padding: 24px;
  }
  
  .service-card .price {
    font-size: 28px;
  }
}

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a, button {
  transition: all 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}