/* ========================================
   PHANTASMA CORE - NATURE ORGANIC DESIGN
   Advanced Oratory Training
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2C3E2C;
  background-color: #F8F6F1;
  overflow-x: hidden;
}

/* NATURE ORGANIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  color: #1A2F1A;
  line-height: 1.3;
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #3D4F3D;
}

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

a:hover {
  color: #3D6B3D;
}

/* CONTAINER */
.container {
  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: #5A8F5A;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(90, 143, 90, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #3D6B3D;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #F8F6F1 0%, #EDE9DC 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #5A8F5A;
  color: #5A8F5A;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #5A8F5A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px;
  color: #2C3E2C;
  font-size: 18px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
}

.mobile-nav a:hover {
  background: rgba(90, 143, 90, 0.1);
  border-left-color: #5A8F5A;
  padding-left: 24px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: rgba(248, 246, 241, 0.95);
  padding: 24px 0;
  border-bottom: 1px solid rgba(90, 143, 90, 0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

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

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

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

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

.main-nav a {
  color: #2C3E2C;
  font-weight: 500;
  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: #5A8F5A;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #5A8F5A;
}

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, rgba(90, 143, 90, 0.08) 0%, rgba(237, 233, 220, 0.5) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 143, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1A2F1A;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #3D4F3D;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-indicator {
  font-size: 14px;
  color: #5A8F5A;
  font-style: italic;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  min-width: 180px;
}

.btn-primary {
  background: #5A8F5A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(90, 143, 90, 0.3);
}

.btn-primary:hover {
  background: #3D6B3D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 143, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #5A8F5A;
  border: 2px solid #5A8F5A;
}

.btn-secondary:hover {
  background: #5A8F5A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.section-subheadline {
  font-size: 18px;
  color: #5A8F5A;
  margin-bottom: 32px;
  font-style: italic;
}

.value-proposition,
.services-preview,
.social-proof,
.methodology,
.programs-list,
.story,
.philosophy,
.team,
.values,
.testimonials,
.industries,
.featured-resources,
.articles,
.guides,
.newsletter,
.contact-options,
.contact-form-section,
.contact-info,
.faq,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   THREE COLUMN GRID (FLEXBOX)
   ======================================== */
.three-column-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.three-column-grid .column {
  flex: 1 1 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 0;
}

.three-column-grid .column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 143, 90, 0.15);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-cards,
.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card,
.program-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.program-card:hover {
  border-color: #5A8F5A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 143, 90, 0.15);
}

.service-card h3,
.program-card h3 {
  color: #1A2F1A;
  margin-bottom: 16px;
}

.service-card p,
.program-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price,
.program-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #5A8F5A;
  margin-top: auto;
  margin-bottom: 16px;
}

/* ========================================
   TESTIMONIAL CARDS
   ======================================== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #5A8F5A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E2C;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .client-name,
.testimonial-card .client-info {
  font-size: 14px;
  color: #5A8F5A;
  font-weight: 600;
  margin-bottom: 0;
}

/* ========================================
   METHODOLOGY STEPS
   ======================================== */
.methodology-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.step {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: linear-gradient(135deg, #5A8F5A 0%, #3D6B3D 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(90, 143, 90, 0.1) 0%, rgba(237, 233, 220, 0.5) 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-radius: 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1A2F1A;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #3D4F3D;
}

/* ========================================
   STATS BANNER
   ======================================== */
.stats-banner {
  background: linear-gradient(135deg, #5A8F5A 0%, #3D6B3D 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

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

.stat {
  flex: 1 1 200px;
  text-align: center;
  min-width: 0;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

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

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

.milestone {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(90, 143, 90, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #5A8F5A;
  margin-bottom: 8px;
}

.milestone p {
  color: #3D4F3D;
  margin-bottom: 0;
}

/* ========================================
   PILLARS & VALUES
   ======================================== */
.pillars,
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pillar,
.value {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #5A8F5A;
  margin-bottom: 20px;
  position: relative;
}

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

/* ========================================
   TEAM MEMBERS
   ======================================== */
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

.team-member h3 {
  color: #1A2F1A;
  margin-bottom: 8px;
}

.team-member .title {
  color: #5A8F5A;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* ========================================
   INDUSTRIES
   ======================================== */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.industry-list span {
  display: inline-block;
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #5A8F5A;
  border-radius: 24px;
  color: #5A8F5A;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-list span:hover {
  background: #5A8F5A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ========================================
   RESOURCE CARDS
   ======================================== */
.resource-cards,
.article-grid,
.guide-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.resource-card,
.article-card,
.guide-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.resource-card:hover,
.article-card:hover,
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 143, 90, 0.15);
}

.resource-type,
.category,
.format {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(90, 143, 90, 0.1);
  color: #5A8F5A;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.length,
.meta {
  font-size: 14px;
  color: #5A8F5A;
  margin-top: 12px;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  background: linear-gradient(135deg, rgba(90, 143, 90, 0.1) 0%, rgba(237, 233, 220, 0.5) 100%);
  padding: 60px 20px;
  border-radius: 24px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  border: 2px solid #5A8F5A;
  border-radius: 12px;
  font-size: 16px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #3D6B3D;
  box-shadow: 0 0 0 3px rgba(90, 143, 90, 0.1);
}

.privacy-note {
  font-size: 12px;
  color: #5A8F5A;
  margin-bottom: 0;
}

/* ========================================
   CONTACT OPTIONS
   ======================================== */
.options-grid,
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.option-card,
.info-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

/* ========================================
   CONTACT FORM
   ======================================== */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.input-field {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(90, 143, 90, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.input-field:focus {
  outline: none;
  border-color: #5A8F5A;
  box-shadow: 0 0 0 3px rgba(90, 143, 90, 0.1);
}

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

select.input-field {
  cursor: pointer;
}

/* ========================================
   FAQ
   ======================================== */
.faq-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-left: 4px solid #5A8F5A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 143, 90, 0.15);
}

.faq-item h3 {
  color: #1A2F1A;
  margin-bottom: 12px;
}

.faq-item p {
  color: #3D4F3D;
  margin-bottom: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
  background: linear-gradient(135deg, rgba(90, 143, 90, 0.1) 0%, rgba(237, 233, 220, 0.5) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 24px 24px;
  margin-bottom: 60px;
}

.legal-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #5A8F5A;
  font-style: italic;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.legal-section h2 {
  color: #1A2F1A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(90, 143, 90, 0.2);
}

.legal-section p {
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.confirmation-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #5A8F5A;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 48px;
  text-align: center;
  margin: 0 auto 24px;
}

.next-steps .steps,
.while-you-wait .resource-cards {
  margin-top: 40px;
}

.confirmation-details {
  text-align: center;
  padding: 40px 20px;
  background: rgba(90, 143, 90, 0.05);
  border-radius: 16px;
  margin-bottom: 60px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, #2C3E2C 0%, #1A2F1A 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
  min-width: 0;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

footer h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

footer a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

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

.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: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F1 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #5A8F5A;
}

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

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: #2C3E2C;
  font-size: 14px;
}

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

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

.accept-all {
  background: #5A8F5A;
  color: #FFFFFF;
}

.accept-all:hover {
  background: #3D6B3D;
  transform: translateY(-2px);
}

.reject-all,
.cookie-settings {
  background: transparent;
  color: #5A8F5A;
  border: 2px solid #5A8F5A;
}

.reject-all:hover,
.cookie-settings:hover {
  background: rgba(90, 143, 90, 0.1);
}

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

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

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

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

.cookie-category {
  padding: 20px;
  background: rgba(90, 143, 90, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category h3 {
  margin: 0;
  font-size: 16px;
  color: #1A2F1A;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  background: #CCCCCC;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #5A8F5A;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}

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

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

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

/* TABLET */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .three-column-grid .column,
  .service-card,
  .program-card,
  .testimonial-card,
  .resource-card,
  .article-card,
  .guide-card,
  .team-member,
  .option-card,
  .info-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 20px);
  }
  
  .pillar,
  .value {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    flex: 1 1 100%;
  }
  
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .milestone .year {
    font-size: 24px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .legal-hero h1 {
    font-size: 32px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.map-note {
  text-align: center;
  color: #5A8F5A;
  font-style: italic;
  margin-top: 32px;
}

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

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

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

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #5A8F5A;
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #5A8F5A;
  outline-offset: 2px;
}

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