/* ============================================
   IRON CASCADE - CREATIVE ARTISTIC CSS
   Design Style: Creative & Artistic Wilderness
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2d3436;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

/* CREATIVE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a3d30;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(26, 61, 48, 0.1);
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1a3d30 0%, #2C5F4F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #2C5F4F;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E8C49A 0%, #D4A574 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2C5F4F;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

a:hover {
  color: #1a3d30;
  transform: translateY(-2px);
}

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d30 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(26, 61, 48, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 61, 48, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a3d30 0%, #2C5F4F 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #E8C49A;
  transform: translateY(0);
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, rgba(26, 61, 48, 0.95) 0%, rgba(44, 95, 79, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(26, 61, 48, 0.2);
  backdrop-filter: blur(10px);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 12px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

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

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #E8C49A;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: #E8C49A;
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 80%;
}

/* HERO SECTION - CREATIVE DESIGN */
.hero {
  background: linear-gradient(135deg, #1a3d30 0%, #2C5F4F 50%, #8B7355 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 154, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
  background: none;
  -webkit-text-fill-color: white;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #E8C49A;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeIn 1.2s ease-out 0.6s backwards;
}

.trust-badge {
  color: white;
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

/* BUTTONS - CREATIVE STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E8C49A 0%, #D4A574 100%);
  color: #1a3d30;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 196, 154, 0.4);
}

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

.btn-secondary:hover {
  background: white;
  color: #2C5F4F;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d30 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="rgba(232,196,154,0.1)" fill="none" stroke-width="2"/></svg>');
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
  font-size: 48px;
  background: none;
  -webkit-text-fill-color: white;
}

.page-hero p {
  color: #E8C49A;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.breadcrumb a {
  color: #E8C49A;
}

/* SECTIONS WITH SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.featured-services,
.services-section,
.value-proposition,
.testimonials,
.parks-overview,
.tour-overview,
.mission-statement,
.company-story,
.contact-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

/* SERVICES GRID - FLEXBOX ONLY */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E8C49A 0%, #D4A574 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(26, 61, 48, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  color: #1a3d30;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #636e72;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #2C5F4F;
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

.service-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-details li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #636e72;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-details li::before {
  content: '✓';
  color: #E8C49A;
  font-weight: bold;
}

/* FEATURES GRID - FLEXBOX */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.feature {
  background: linear-gradient(135deg, rgba(232, 196, 154, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
  border-radius: 15px;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  border: 2px solid rgba(232, 196, 154, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature:hover {
  transform: translateX(10px);
  border-color: #E8C49A;
  box-shadow: 0 8px 25px rgba(232, 196, 154, 0.2);
}

.feature h3 {
  color: #1a3d30;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: #636e72;
  margin-bottom: 0;
}

/* TESTIMONIALS - FLEXBOX */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.1);
  position: relative;
  margin-bottom: 20px;
  border-left: 5px solid #E8C49A;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 196, 154, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2d3436;
  font-style: italic;
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.7;
}

.customer-name {
  font-weight: 700;
  color: #1a3d30;
  font-style: normal;
  margin-bottom: 4px;
}

.tour-type {
  color: #636e72;
  font-size: 14px;
  font-style: normal;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1a3d30 0%, #2C5F4F 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 196, 154, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-banner h2::after,
.cta-section h2::after {
  background: linear-gradient(90deg, #E8C49A 0%, #D4A574 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p,
.cta-section p {
  color: #E8C49A;
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* PARK CARDS */
.park-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.12);
  border-top: 5px solid #E8C49A;
  transition: all 0.3s ease;
}

.park-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26, 61, 48, 0.2);
}

.park-card h2 {
  color: #1a3d30;
  margin-bottom: 20px;
}

.park-card h3 {
  color: #2C5F4F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.park-card ul {
  background: rgba(232, 196, 154, 0.1);
  padding: 20px 20px 20px 40px;
  border-radius: 10px;
  margin: 16px 0;
}

/* IMPACT STATS - FLEXBOX */
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
  padding: 24px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(26, 61, 48, 0.1);
  margin-bottom: 20px;
}

.stat h3 {
  font-size: 48px;
  color: #E8C49A;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

.stat p {
  color: #636e72;
  font-size: 16px;
  margin-bottom: 0;
}

/* INITIATIVES GRID */
.initiatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.initiative {
  background: white;
  border-radius: 15px;
  padding: 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  box-shadow: 0 6px 25px rgba(26, 61, 48, 0.1);
  border-left: 4px solid #2C5F4F;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.initiative:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.15);
  border-left-color: #E8C49A;
}

/* CONTACT FORM */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 calc(50% - 48px);
  min-width: 300px;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.12);
}

.form-note {
  background: rgba(232, 196, 154, 0.1);
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid #E8C49A;
  margin-bottom: 24px;
  color: #636e72;
  font-size: 14px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2C5F4F;
}

.field-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.field-input:focus {
  outline: none;
  border-color: #E8C49A;
  box-shadow: 0 0 0 4px rgba(232, 196, 154, 0.1);
}

textarea.field-input {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-field label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.response-time {
  font-size: 14px;
  color: #636e72;
  font-style: italic;
  margin-top: 16px;
}

/* CONTACT INFO */
.contact-details {
  background: linear-gradient(135deg, rgba(232, 196, 154, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 32px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: #1a3d30;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-item p {
  color: #636e72;
  margin-bottom: 0;
}

.booking-methods {
  background: white;
  padding: 28px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(26, 61, 48, 0.08);
}

.booking-methods h3 {
  color: #1a3d30;
  margin-bottom: 16px;
}

.booking-methods ul {
  padding-left: 24px;
}

/* FAQ GRID */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.faq-item {
  background: white;
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(26, 61, 48, 0.1);
  border-top: 3px solid #E8C49A;
  margin-bottom: 20px;
}

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

/* TRUST SIGNALS */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.trust-item {
  text-align: center;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 28px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(26, 61, 48, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(26, 61, 48, 0.15);
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d30 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
  background: none;
  -webkit-text-fill-color: white;
}

.confirmation-message {
  color: #E8C49A;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

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

.step {
  text-align: center;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 6px;
  background: linear-gradient(90deg, #E8C49A 0%, #D4A574 100%);
  border-radius: 3px;
}

.step h3 {
  color: #1a3d30;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources-grid,
.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.resource,
.tour-card {
  background: white;
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 300px;
  min-width: 280px;
  box-shadow: 0 6px 25px rgba(26, 61, 48, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource:hover,
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(26, 61, 48, 0.15);
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d30 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: white;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.last-updated {
  color: #E8C49A;
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(26, 61, 48, 0.1);
}

.legal-text h2 {
  color: #1a3d30;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

/* VIEW ALL LINK */
.view-all {
  display: inline-block;
  margin-top: 32px;
  color: #2C5F4F;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 24px;
  border: 2px solid #E8C49A;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-all:hover {
  background: #E8C49A;
  color: #1a3d30;
  transform: translateX(5px);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a3d30 0%, #0f2920 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

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

.footer-section h3 {
  color: #E8C49A;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #E8C49A;
  padding-left: 5px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3d30 0%, #2C5F4F 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text p {
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #E8C49A;
  color: #1a3d30;
}

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

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

.cookie-btn-reject:hover {
  background: white;
  color: #2C5F4F;
}

.cookie-btn-settings {
  background: transparent;
  color: #E8C49A;
  border: 2px solid #E8C49A;
}

.cookie-btn-settings:hover {
  background: #E8C49A;
  color: #1a3d30;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #636e72;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1a3d30;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(232, 196, 154, 0.1);
  border-radius: 10px;
  border-left: 4px solid #E8C49A;
}

.cookie-category h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #636e72;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  cursor: pointer;
  appearance: none;
  background: #dfe6e9;
  border-radius: 13px;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2C5F4F;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: white;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

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

.cookie-save-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #E8C49A 0%, #D4A574 100%);
  color: #1a3d30;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cookie-save-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 196, 154, 0.3);
}

/* LISTS */
.practices-list,
.guidelines-list,
.values-list,
.cert-list {
  list-style: none;
  padding: 0;
}

.practices-list li,
.guidelines-list li,
.values-list li,
.cert-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(26, 61, 48, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.practices-list li::before,
.guidelines-list li::before,
.values-list li::before,
.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E8C49A 0%, #D4A574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3d30;
  font-weight: bold;
  font-size: 14px;
}

.practices-list li:hover,
.guidelines-list li:hover,
.values-list li:hover,
.cert-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(26, 61, 48, 0.12);
}

/* EQUIPMENT LIST */
.equipment-list {
  background: rgba(232, 196, 154, 0.1);
  padding: 28px;
  border-radius: 15px;
  border-left: 4px solid #E8C49A;
}

.equipment-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 196, 154, 0.3);
}

.equipment-list li:last-child {
  border-bottom: none;
}

/* INTRO TEXT */
.intro-text {
  font-size: 18px;
  color: #636e72;
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.8;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F4F;
  font-family: 'Merriweather', serif;
  margin: 24px 0;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    padding: 12px 24px;
  }
  
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .contact-grid,
  .faq-grid,
  .initiatives-grid,
  .trust-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .contact-form-section,
  .contact-info-section,
  .faq-item,
  .initiative,
  .trust-item,
  .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .legal-text {
    padding: 32px 24px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .impact-stats {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .cta-banner h2,
  .cta-section h2 {
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .legal-text {
    padding: 24px 16px;
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #E8C49A;
  outline-offset: 2px;
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero,
  .page-hero {
    background: #2C5F4F;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* ANIMATION UTILITIES */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: slideUp 0.6s ease-out;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  body {
    background: white;
  }
  
  .hero,
  .page-hero,
  header {
    background: #1a3d30;
  }
  
  .btn-primary {
    background: #D4A574;
  }
}

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

/* SELECTION STYLES */
::selection {
  background: #E8C49A;
  color: #1a3d30;
}

::-moz-selection {
  background: #E8C49A;
  color: #1a3d30;
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2C5F4F 0%, #1a3d30 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a3d30;
}