/* =================================================================
   BRIGHT GLAZE - NATURE ORGANIC DESIGN SYSTEM
   Professional CSS with Earth Tones & Natural Aesthetics
   ================================================================= */

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

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

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

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --earth-brown: #6B5744;
  --forest-green: #4A7C59;
  --sage-green: #8BA888;
  --sand-beige: #D4C4B0;
  --cream: #F9F7F4;
  --terracotta: #C67B5C;
  --deep-earth: #3D3D3D;
  --moss-green: #7A9B76;
  --warm-white: #FFF9F0;
}

/* TYPOGRAPHY - Natural & Readable */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--deep-earth);
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--sage-green);
}

ul {
  list-style: none;
}

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

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

/* HEADER - Organic & Natural */
header {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(107, 87, 68, 0.08);
  border-bottom: 2px solid var(--sage-green);
}

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION - Desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: var(--earth-brown);
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--forest-green);
}

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

/* CTA BUTTON - Natural Style */
.cta-button,
.btn-primary {
  display: inline-block;
  background: var(--forest-green);
  color: var(--warm-white);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--forest-green);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.cta-button:hover,
.btn-primary:hover {
  background: var(--sage-green);
  border-color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
  color: var(--warm-white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--forest-green);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: var(--forest-green);
  color: var(--warm-white);
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(107, 87, 68, 0.15);
  border-left: 3px solid var(--sage-green);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--terracotta);
  color: var(--warm-white);
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(198, 123, 92, 0.3);
}

.mobile-menu-close:hover {
  background: var(--earth-brown);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--earth-brown);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(138, 168, 136, 0.1);
}

.mobile-nav a:hover {
  background: var(--sage-green);
  color: var(--warm-white);
  transform: translateX(8px);
}

/* HERO SECTION - Natural & Inspiring */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-beige) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  color: var(--earth-brown);
  margin-bottom: 24px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: var(--deep-earth);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-bar {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 2px solid var(--sage-green);
}

.trust-bar span {
  font-weight: 600;
  color: var(--forest-green);
  font-size: 16px;
}

/* SECTIONS - Consistent Spacing */
.section,
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.page-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--warm-white);
  margin-bottom: 60px;
}

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

.page-hero p {
  color: var(--warm-white);
  font-size: 20px;
  opacity: 0.95;
}

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

/* VALUE PROPOSITION */
.value-proposition {
  background: var(--warm-white);
}

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

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

.value-card {
  flex: 1 1 300px;
  background: var(--cream);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 87, 68, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--sand-beige);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(107, 87, 68, 0.15);
  border-color: var(--sage-green);
}

.value-card h3 {
  color: var(--forest-green);
  margin-bottom: 16px;
  font-size: 22px;
}

/* SERVICES GRID */
.services-overview {
  background: var(--cream);
}

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

.services-grid,
.program-cards,
.materials-grid,
.workshop-cards,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.program-card,
.material-card,
.workshop-card,
.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--warm-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 87, 68, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--sand-beige);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.program-card:hover,
.material-card:hover,
.workshop-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(107, 87, 68, 0.15);
  border-color: var(--sage-green);
}

.service-card h3,
.program-card h3,
.material-card h3,
.workshop-card h3 {
  color: var(--forest-green);
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.program-card p,
.material-card p {
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--terracotta);
  margin: 16px 0;
}

.features {
  margin: 20px 0;
  padding-left: 0;
}

.features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--deep-earth);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
  font-size: 18px;
}

/* TESTIMONIALS - High Contrast for Readability */
.testimonials {
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 500px;
  background: var(--warm-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(107, 87, 68, 0.1);
  border-left: 4px solid var(--forest-green);
  position: relative;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--deep-earth);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--earth-brown);
  font-style: normal;
  font-size: 16px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 20px;
}

.cta-section h2 {
  color: var(--warm-white);
  margin-bottom: 16px;
  font-size: 40px;
}

.cta-section p {
  color: var(--warm-white);
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section .btn-primary {
  background: var(--warm-white);
  color: var(--forest-green);
  border-color: var(--warm-white);
}

.cta-section .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--forest-green);
}

/* MISSION VISION */
.mission-vision {
  background: var(--warm-white);
}

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

.content-wrapper h2 {
  margin-bottom: 24px;
  color: var(--earth-brown);
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--forest-green);
}

.content-wrapper ul {
  padding-left: 24px;
}

.content-wrapper li {
  padding: 8px 0;
  color: var(--deep-earth);
  position: relative;
  padding-left: 24px;
}

.content-wrapper li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-size: 20px;
}

/* STORY MILESTONES */
.story {
  background: var(--cream);
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: var(--warm-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(107, 87, 68, 0.08);
  border: 2px solid var(--sand-beige);
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 12px;
}

.milestone p {
  color: var(--deep-earth);
  font-size: 16px;
}

/* FAQ */
.faq {
  background: var(--warm-white);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--cream);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(107, 87, 68, 0.08);
  border-left: 4px solid var(--sage-green);
}

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

.faq-item p {
  color: var(--deep-earth);
}

/* CONTACT METHODS */
.contact-methods,
.contact-info-detailed {
  background: var(--warm-white);
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: var(--cream);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(107, 87, 68, 0.08);
  border: 2px solid var(--sand-beige);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(107, 87, 68, 0.12);
  border-color: var(--sage-green);
}

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

.response-time {
  font-style: italic;
  color: var(--sage-green);
  margin-top: 12px;
}

/* BLOG */
.featured-article {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-beige) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-post {
  max-width: 700px;
  margin: 0 auto;
}

.featured-post h2 {
  font-size: 36px;
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.meta {
  color: var(--sage-green);
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500;
}

.excerpt {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--deep-earth);
}

.read-more {
  color: var(--forest-green);
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--sage-green);
  transform: translateX(4px);
}

/* NEWSLETTER */
.newsletter {
  background: var(--forest-green);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
}

.newsletter h2 {
  color: var(--warm-white);
  margin-bottom: 16px;
}

.newsletter p {
  color: var(--warm-white);
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.newsletter-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.newsletter-benefits li {
  color: var(--warm-white);
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}

.newsletter-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sand-beige);
  font-weight: bold;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand-beige) 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--forest-green);
  color: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(74, 124, 89, 0.3);
}

.thank-you-content h1 {
  color: var(--earth-brown);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps,
.while-waiting {
  background: var(--warm-white);
}

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

.step-card,
.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: var(--cream);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(107, 87, 68, 0.08);
  border: 2px solid var(--sand-beige);
  transition: all 0.3s ease;
}

.step-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(107, 87, 68, 0.12);
  border-color: var(--sage-green);
}

.step-card h3,
.link-card h3 {
  color: var(--forest-green);
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--warm-white);
  padding: 40px 20px;
}

.summary-box {
  background: var(--cream);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--forest-green);
  margin-bottom: 40px;
}

.summary-box h2 {
  color: var(--forest-green);
  margin-bottom: 20px;
}

.summary-box ul {
  padding-left: 24px;
}

.summary-box li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.summary-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.right-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(107, 87, 68, 0.08);
  border: 2px solid var(--sand-beige);
}

.right-card h3 {
  color: var(--forest-green);
  margin-bottom: 12px;
  font-size: 18px;
}

/* BENEFITS LIST */
.benefits {
  margin: 24px 0;
  padding-left: 0;
}

.benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--deep-earth);
  font-size: 16px;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
  font-size: 20px;
}

.features-list {
  margin: 24px 0;
  padding-left: 0;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--deep-earth);
}

.features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: bold;
  font-size: 18px;
}

/* WORKSHOP SPECIFIC */
.date,
.location,
.spots {
  display: block;
  margin: 8px 0;
  color: var(--deep-earth);
  font-size: 15px;
}

.spots {
  color: var(--terracotta);
  font-weight: 600;
}

/* FOOTER - Natural & Grounded */
footer {
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--deep-earth) 100%);
  color: var(--warm-white);
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.tagline {
  color: var(--sand-beige);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 8px;
}

.footer-col h4 {
  color: var(--sand-beige);
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-col a {
  color: var(--warm-white);
  font-size: 15px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-col a:hover {
  color: var(--sand-beige);
  opacity: 1;
  transform: translateX(4px);
}

.footer-col p {
  color: var(--warm-white);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

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

.footer-bottom p {
  color: var(--sand-beige);
  font-size: 14px;
  opacity: 0.8;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--earth-brown);
  color: var(--warm-white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--sage-green);
}

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

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

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

.cookie-text p {
  color: var(--warm-white);
  margin-bottom: 0;
  font-size: 15px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.accept-all {
  background: var(--forest-green);
  color: var(--warm-white);
}

.accept-all:hover {
  background: var(--sage-green);
  transform: translateY(-2px);
}

.reject-all {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid var(--warm-white);
}

.reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: var(--sand-beige);
  color: var(--earth-brown);
}

.cookie-settings:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 61, 61, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

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

.modal-content {
  background: var(--warm-white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--sage-green);
}

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

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

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

.category-header h3 {
  color: var(--forest-green);
  margin-bottom: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--sand-beige);
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--forest-green);
}

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

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

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

.modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 120px;
}

.save-preferences {
  background: var(--forest-green);
  color: var(--warm-white);
}

.save-preferences:hover {
  background: var(--sage-green);
  transform: translateY(-2px);
}

.close-modal {
  background: var(--sand-beige);
  color: var(--earth-brown);
}

.close-modal:hover {
  background: var(--cream);
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header CTA */
  header .cta-button {
    display: none;
  }
  
  /* Adjust spacing */
  .section,
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 60px 20px;
  }
  
  /* Flexbox layouts */
  .value-grid,
  .services-grid,
  .program-cards,
  .materials-grid,
  .workshop-cards,
  .articles-grid,
  .testimonial-grid,
  .contact-grid,
  .steps-grid,
  .quick-links,
  .milestones {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .program-card,
  .material-card,
  .workshop-card,
  .article-card,
  .testimonial-card,
  .contact-card,
  .step-card,
  .link-card,
  .milestone,
  .right-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA groups */
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  /* Trust bar */
  .trust-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .program-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .milestone {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.value-card,
.service-card,
.program-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid var(--forest-green);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--forest-green);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}