/* ============================================
   PRIMALWALK - PROFESSIONAL CORPORATE DESIGN
   CSS Reset, Base Styles & Variables
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* CSS Variables - Professional Corporate Palette */
:root {
  --primary-color: #234012;
  --primary-dark: #1a3010;
  --primary-light: #2d5016;
  --secondary-color: #5a6c7d;
  --accent-color: #D4A574;
  --accent-light: #e8c99e;
  --text-dark: #2c3e50;
  --text-medium: #546e7a;
  --text-light: #78909c;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
  --transition-speed: 0.3s;
  --border-radius: 4px;
  --container-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

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

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

a:hover {
  color: var(--primary-dark);
}

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

li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-speed);
}

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

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

.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--primary-color);
  color: var(--background-white);
  border: none;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-speed);
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--background-white);
  box-shadow: -4px 0 16px rgba(0,0,0,0.2);
  z-index: 1999;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary-color);
  padding-left: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a3010 0%, var(--primary-color) 100%);
  color: var(--background-white);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

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

.hero-subheadline {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-family: 'Merriweather', serif;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--background-white);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--background-white);
  margin-bottom: 8px;
}

.subheadline {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

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

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color var(--transition-speed);
}

.breadcrumb a:hover {
  color: var(--background-white);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--background-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--background-white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Regular button (not in hero) */
section:not(.hero) .btn,
section:not(.page-hero) .btn {
  background-color: var(--primary-color);
  color: var(--background-white);
  border-color: var(--primary-color);
}

section:not(.hero) .btn:hover,
section:not(.page-hero) .btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--background-white);
}

/* ============================================
   SECTIONS & LAYOUTS
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* Intro Section */
.intro {
  background-color: var(--background-white);
  text-align: center;
}

.intro p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.8;
}

/* Two Column Layout */
.two-column {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.column {
  flex: 1;
  min-width: 280px;
}

.column h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.column p {
  line-height: 1.8;
}

/* Content Grid */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

/* Benefits Grid */
.benefits-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background-color: var(--background-white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
}

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

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

.benefit-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

.service-card em {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background-color: var(--background-white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

.feature-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

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

.feature-card p {
  color: var(--text-medium);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Routes Grid */
.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.route-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background-color: var(--background-white);
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
}

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

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

.route-card p {
  margin-bottom: 8px;
}

.route-card strong {
  color: var(--text-dark);
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  background-color: var(--background-white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
}

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

.step-icon {
  margin-bottom: 20px;
}

.step-icon img {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}

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

.step p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background-color: var(--background-light);
}

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

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* ============================================
   SPECIFIC SECTIONS
   ============================================ */

/* Philosophy Section */
.philosophy {
  background-color: var(--background-white);
}

.integration-text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 32px;
  font-family: 'Merriweather', serif;
}

/* Process Section */
.process {
  background-color: var(--background-light);
}

/* View All Link */
.view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

.view-all a:hover {
  color: var(--primary-dark);
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--background-white);
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2,
.cta-section h2 {
  color: var(--background-white);
  margin-bottom: 16px;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Location Info */
.location-info {
  background-color: var(--background-white);
  text-align: center;
}

.location-details {
  max-width: 600px;
  margin: 0 auto;
}

.location-details p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* Booking Info */
.booking-info {
  background-color: var(--background-light);
}

.booking-highlight {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--background-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-color);
}

.price-display {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 32px;
  font-family: 'Merriweather', serif;
}

.booking-highlight h3 {
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 16px;
}

.booking-highlight ul {
  list-style: none;
  padding-left: 0;
}

.booking-highlight li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

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

.booking-highlight .btn {
  width: 100%;
  margin-top: 32px;
}

/* Schedule */
.schedule-day {
  background-color: var(--background-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 4px solid var(--primary-color);
}

.schedule-day h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.schedule-day ul {
  list-style: none;
  padding-left: 0;
}

.schedule-day li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.schedule-day li:last-child {
  border-bottom: none;
}

/* Methods Grid */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background-color: var(--background-white);
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
}

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

.method-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

/* Accommodation */
.accommodation {
  background-color: var(--background-white);
}

.accommodation ul {
  max-width: 600px;
  margin: 24px auto 0;
  list-style: none;
  padding-left: 0;
}

.accommodation li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

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

/* Upcoming Dates */
.dates-list {
  max-width: 600px;
  margin: 32px auto;
}

.date-item {
  background-color: var(--background-white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.date-item strong {
  color: var(--primary-color);
  font-size: 18px;
}

.booking-note {
  text-align: center;
  font-style: italic;
  color: var(--text-medium);
  margin-top: 24px;
}

/* Booking CTA */
.booking-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--background-white);
  text-align: center;
  padding: 60px 20px;
}

.booking-cta h2 {
  color: var(--background-white);
  margin-bottom: 16px;
}

.booking-cta .highlight {
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 24px;
  font-weight: 600;
}

.booking-cta .price-display {
  color: var(--background-white);
  margin-bottom: 32px;
}

/* Story Section */
.story {
  background-color: var(--background-white);
}

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

/* Mission */
.mission {
  background-color: var(--background-light);
}

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

.mission-item {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.mission-item h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.mission-item ul {
  list-style: none;
  padding-left: 0;
}

.mission-item li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

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

/* Approach Grid */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.approach-card {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background-color: var(--background-white);
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
  border-top: 3px solid var(--accent-color);
}

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

.approach-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  border-top: 4px solid var(--primary-color);
}

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

.team-member .role {
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 16px;
}

/* Forest Connection */
.forest-connection {
  background-color: var(--background-light);
}

.forest-connection ul {
  max-width: 700px;
  margin: 24px auto 0;
  list-style: none;
  padding-left: 0;
}

.forest-connection li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
}

.forest-connection li::before {
  content: '🌲';
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* Contact Sections */
.contact-intro {
  background-color: var(--background-white);
  text-align: center;
}

.contact-intro p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 18px;
}

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

.contact-method {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: 20px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-method strong {
  color: var(--text-dark);
}

/* Location Details */
.location {
  background-color: var(--background-light);
}

.location-details h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.location-details p {
  font-size: 16px;
  line-height: 1.8;
}

/* Office Hours */
.office-hours {
  background-color: var(--background-white);
}

.office-hours ul {
  max-width: 500px;
  margin: 24px auto 0;
  list-style: none;
  padding-left: 0;
}

.office-hours li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.office-hours li:last-child {
  border-bottom: none;
}

/* Booking Options */
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.option-card {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  margin-bottom: 20px;
}

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

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

.option-card strong {
  color: var(--text-dark);
}

/* Team Contact */
.contacts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-person {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background-color: var(--background-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.contact-person h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-person .role {
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 12px;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--background-white);
  text-align: center;
  padding: 60px 20px;
}

.contact-cta h2 {
  color: var(--background-white);
  margin-bottom: 16px;
}

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

/* Legal Content */
.legal-content {
  background-color: var(--background-white);
  padding: 40px 20px;
}

.legal-content h2 {
  text-align: left;
  color: var(--primary-color);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--background-white);
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.confirmation {
  background-color: var(--background-white);
  text-align: center;
  padding: 40px 20px;
}

.confirmation p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
}

.confirmation h2 {
  color: var(--primary-color);
  margin: 32px 0 16px;
}

.confirmation ol {
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}

.confirmation li {
  padding: 8px 0;
  font-size: 16px;
}

/* Next Steps */
.next-steps {
  background-color: var(--background-light);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background-color: var(--background-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-color);
  color: var(--background-white);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background-color: var(--background-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
}

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

.faq-item p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Custom Solutions */
.custom-solutions {
  background-color: var(--background-light);
}

.custom-solutions ul {
  max-width: 600px;
  margin: 24px auto 32px;
  list-style: none;
  padding-left: 0;
}

.custom-solutions li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.custom-solutions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.custom-solutions .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto;
}

/* Retreat Details */
.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.detail-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background-color: var(--background-white);
  padding: 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: 20px;
}

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

.detail-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1;
  min-width: 240px;
}

.footer-section h4 {
  color: var(--background-white);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(10);
}

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

.footer-nav a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-speed), padding-left var(--transition-speed);
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--background-white);
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

#cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  min-width: 240px;
}

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

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

.cookie-buttons button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed);
}

#accept-cookies {
  background-color: var(--primary-color);
  color: var(--background-white);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#reject-cookies {
  background-color: transparent;
  color: var(--background-white);
  border: 1px solid rgba(255,255,255,0.3);
}

#reject-cookies:hover {
  background-color: rgba(255,255,255,0.1);
}

#cookie-settings {
  background-color: var(--secondary-color);
  color: var(--background-white);
}

#cookie-settings:hover {
  background-color: #4a5c6d;
}

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

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

.cookie-modal-content {
  background-color: var(--background-white);
  max-width: 600px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: var(--text-dark);
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-medium);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-speed);
}

.cookie-modal-close:hover {
  color: var(--text-dark);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

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

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

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

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-modal-footer button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-speed);
}

#save-cookie-preferences {
  background-color: var(--primary-color);
  color: var(--background-white);
}

#save-cookie-preferences:hover {
  background-color: var(--primary-dark);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 12px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Section spacing */
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  /* Two column to single column */
  .two-column {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .routes-grid,
  .steps-grid,
  .testimonials-grid,
  .methods-grid,
  .approach-grid,
  .team-grid,
  .mission-content,
  .contact-methods,
  .contacts-list,
  .options-grid,
  .details-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .benefit-card,
  .service-card,
  .feature-card,
  .route-card,
  .step,
  .testimonial-card,
  .method-card,
  .approach-card,
  .team-member,
  .mission-item,
  .contact-method,
  .contact-person,
  .option-card,
  .detail-card {
    max-width: 100%;
  }
  
  /* CTA sections */
  .cta-banner,
  .cta-section,
  .booking-cta,
  .contact-cta {
    padding: 40px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Price displays */
  .price-display {
    font-size: 36px;
  }
  
  /* Booking highlight */
  .booking-highlight {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  /* Adjust grids for tablet */
  .services-grid,
  .features-grid,
  .steps-grid {
    justify-content: space-around;
  }
  
  .service-card,
  .feature-card,
  .step {
    flex-basis: calc(50% - 16px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-subheadline {
    font-size: 28px;
  }
  
  /* Hover effects enhancement */
  .service-card:hover,
  .feature-card:hover,
  .benefit-card:hover {
    transform: translateY(-8px);
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-banner,
  .cta-section,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}

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

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

/* 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 styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styles */
::selection {
  background-color: var(--primary-color);
  color: var(--background-white);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--background-white);
}