/* ============================================
   RhetorikMeister - Nature Organic Design
   Professional Rhetoric Training Website
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e2c;
  background: #faf8f3;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --forest-green: #3d5a3d;
  --sage-green: #7a9a7a;
  --cream: #faf8f3;
  --earth-brown: #8b7355;
  --moss: #5c7a5c;
  --stone: #d4cec2;
  --clay: #b89b7c;
  --text-dark: #2c3e2c;
  --text-light: #4a5d4a;
}

/* TYPOGRAPHY - Nature Inspired */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest-green);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--forest-green);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(61, 90, 61, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss) 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--cream);
  color: var(--forest-green);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--cream);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 248, 243, 0.2);
  transition: all 0.3s ease;
}

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

/* HEADER - Organic Natural Design */
header {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(250, 248, 243, 0.95) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(61, 90, 61, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--sage-green);
}

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

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

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

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

.main-nav a {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

/* HERO SECTION - Natural Organic */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(250, 248, 243, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(250, 248, 243, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: var(--cream);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(44, 62, 44, 0.3);
}

.hero-subtitle {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.95;
}

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

.trust-badge {
  color: var(--cream);
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

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

.btn-primary {
  background: var(--earth-brown);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
  background: var(--clay);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 115, 85, 0.4);
  color: var(--cream);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--forest-green);
  transform: translateY(-2px);
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* BENEFITS SECTION - Natural Cards */
.benefits {
  background: var(--cream);
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--sage-green);
  border-radius: 16px 0 0 16px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
  border-color: var(--sage-green);
}

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

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

/* SERVICES OVERVIEW - Organic Grid */
.services-overview {
  background: linear-gradient(135deg, rgba(250, 248, 243, 1) 0%, rgba(212, 206, 194, 0.3) 100%);
}

.services-overview h2 {
  text-align: center;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--sage-green);
  border-radius: 3px 3px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(61, 90, 61, 0.2);
  border-color: var(--moss);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: var(--earth-brown);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

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

/* PROCESS SECTION - Natural Steps */
.process {
  background: var(--cream);
}

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

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--sage-green);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
}

.step h3 {
  color: var(--forest-green);
  margin-bottom: 12px;
}

/* TESTIMONIALS - Organic Cards */
.testimonials {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss) 100%);
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: var(--cream);
  padding: 32px 28px;
  border-radius: 16px;
  border-left: 5px solid var(--earth-brown);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--sage-green);
  opacity: 0.3;
  font-family: Georgia, serif;
}

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

.testimonial-card .author {
  color: var(--forest-green);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* STATISTICS - Nature Inspired */
.statistics {
  background: var(--cream);
  padding: 60px 20px;
}

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

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

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
  border-color: var(--sage-green);
}

.stat h3 {
  color: var(--earth-brown);
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* CTA SECTION - Natural Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--forest-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 40%, rgba(250, 248, 243, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

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

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

.trust-note,
.note {
  color: var(--cream);
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
  margin-top: 16px;
}

/* TEXT SECTIONS - Natural Content Areas */
.text-section,
.story,
.approach,
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.text-section p,
.story p,
.approach p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.mission {
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  margin: 32px 0;
}

/* VALUES SECTION - Organic Value Cards */
.values {
  background: var(--cream);
}

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

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

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

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

/* TEAM SECTION */
.team {
  background: var(--cream);
}

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

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

.team-member,
.coach-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.team-member:hover,
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
}

/* SERVICE DETAIL PAGES */
.service-detail,
.workshop-detail,
.program-detail {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: 16px;
  border-left: 5px solid var(--sage-green);
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(61, 90, 61, 0.1);
}

.service-detail h3,
.workshop-detail h3,
.program-detail h3 {
  margin-bottom: 16px;
}

.service-detail .price,
.workshop-detail .price,
.program-detail .price {
  color: var(--earth-brown);
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.service-detail em {
  color: var(--text-light);
  font-size: 14px;
  display: block;
  margin-top: 12px;
}

/* PACKAGES */
.packages {
  background: var(--cream);
}

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

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

.package-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(61, 90, 61, 0.2);
  border-color: var(--sage-green);
}

.package-card .price {
  color: var(--earth-brown);
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}

/* FAQ SECTION */
.faq {
  background: var(--cream);
}

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

.faq-item {
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

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

/* LISTS - Natural Style */
ul.benefits-list,
ul.credentials-list,
ul.hours-list,
ul.trust-list,
ul.focus-list,
ul.downloads-list {
  list-style: none;
  padding: 0;
}

ul.benefits-list li,
ul.credentials-list li,
ul.hours-list li,
ul.trust-list li,
ul.focus-list li,
ul.downloads-list li {
  padding: 16px 20px 16px 48px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  border-radius: 8px;
  border-left: 3px solid var(--sage-green);
  position: relative;
}

ul.benefits-list li::before,
ul.credentials-list li::before,
ul.hours-list li::before,
ul.trust-list li::before,
ul.focus-list li::before,
ul.downloads-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-green);
  font-weight: 700;
  font-size: 20px;
}

/* ARTICLES & RESOURCES */
.categories-grid,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card,
.article-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
  border-color: var(--sage-green);
}

.article-card .meta {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
}

/* EXERCISE ITEMS */
.exercise-item {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--earth-brown);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(61, 90, 61, 0.1);
}

/* CONTACT PAGE */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--stone);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 90, 61, 0.15);
}

.form-note {
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  margin: 32px 0;
}

.form-note ul {
  margin-left: 20px;
  margin-top: 12px;
}

/* APPROACH GRID */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.approach-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  margin-bottom: 20px;
}

/* CONFIRMATION PAGE */
.confirmation .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.confirmation .step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.suggestion {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid var(--stone);
  margin-bottom: 20px;
}

/* FOOTER - Natural Organic Design */
footer {
  background: linear-gradient(180deg, var(--forest-green) 0%, var(--moss) 100%);
  color: var(--cream);
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: var(--cream);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(250, 248, 243, 0.9);
  margin-bottom: 12px;
  font-size: 14px;
}

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

.footer-nav a {
  color: rgba(250, 248, 243, 0.9);
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--clay);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(250, 248, 243, 0.2);
}

.footer-bottom p {
  color: rgba(250, 248, 243, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss) 100%);
  color: var(--cream);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin-bottom: 0;
  color: var(--cream);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid var(--cream);
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn:hover {
  background: var(--cream);
  color: var(--forest-green);
}

.cookie-btn-accept {
  background: var(--earth-brown);
  border-color: var(--earth-brown);
}

.cookie-btn-accept:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

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

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

.cookie-modal-content {
  background: var(--cream);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--forest-green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(122, 154, 122, 0.1) 0%, rgba(92, 122, 92, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

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

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--cream);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: var(--sage-green);
}

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

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Section padding */
  .section,
  section {
    padding: 32px 16px;
  }

  /* Hero adjustments */
  .hero {
    padding: 60px 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

  /* Grid layouts - stack on mobile */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .coach-grid,
  .packages-grid,
  .categories-grid,
  .articles-grid,
  .contact-grid,
  .approach-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat,
  .value-card,
  .team-member,
  .coach-card,
  .package-card,
  .category-card,
  .article-card,
  .contact-card,
  .approach-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
  }

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }

  /* Service details */
  .service-detail,
  .workshop-detail,
  .program-detail {
    padding: 24px 20px;
  }

  /* Suggestions */
  .suggestions {
    flex-direction: column;
  }

  .suggestion {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

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

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

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

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

  body {
    background: white;
    color: black;
  }

  .hero {
    background: none;
    color: black;
  }

  .hero h1,
  .hero-subtitle {
    color: black;
  }
}