/* ============================================
   STELLAR HAMMER - COMPREHENSIVE CSS STYLES
   Design Style: Warm & Friendly
   ============================================ */

/* ===== 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E35;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F2D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

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

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

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

a:hover {
  color: #FFB84D;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #1A472A;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, #2C5F2D 0%, #1A472A 100%);
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

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

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

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(255, 184, 77, 0.2);
  color: #FFB84D;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #2C5F2D;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F2D 0%, #1A472A 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 24px 24px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: #FFB84D;
  border-color: #FFB84D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: rgba(255, 184, 77, 0.2);
  color: #FFB84D;
  transform: translateX(8px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 25px;
  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: linear-gradient(135deg, #FFB84D 0%, #FF9F1C 100%);
  color: #1A472A;
  box-shadow: 0 4px 12px rgba(255, 184, 77, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 77, 0.4);
  background: linear-gradient(135deg, #FF9F1C 0%, #FFB84D 100%);
}

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

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

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 80px;
}

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

.hero h1 {
  color: #2C5F2D;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5C4E;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.badge {
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  color: #2C5F2D;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
  font-size: 14px;
}

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

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric .value {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F2D;
}

.metric .label {
  font-size: 14px;
  color: #4A5C4E;
}

/* ===== SECTIONS ===== */
.value-proposition,
.services-overview,
.process,
.social-proof,
.mission-vision,
.company-story,
.team,
.certifications,
.services-detail,
.process-detail,
.project-stats,
.project-showcase,
.client-testimonials,
.sdg-alignment,
.environmental-impact,
.our-sustainability,
.circular-economy,
.future-commitments,
.contact-options,
.contact-form-section,
.location-info,
.faq-contact,
.legal-content,
.thank-you-hero,
.next-steps,
.while-you-wait {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.intro,
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5C4E;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===== GRID LAYOUTS (FLEXBOX ONLY) ===== */
.benefits-grid,
.services-grid,
.values-grid,
.cert-grid,
.contact-grid,
.resources-grid,
.practices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.value-card,
.cert-item,
.contact-card,
.resource-card,
.practice-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.contact-card:hover,
.resource-card:hover,
.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.2);
}

.service-card h3,
.benefit-card h3,
.value-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.benefit-card p,
.value-card p {
  color: #4A5C4E;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #FFB84D;
  margin-top: 16px;
}

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  margin-bottom: 32px;
  border-left: 6px solid #FFB84D;
}

.service-detail-card h3 {
  color: #2C5F2D;
  font-size: 28px;
  margin-bottom: 20px;
}

.benefits-list,
.benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefits-list li,
.benefits-checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A5C4E;
  font-size: 16px;
}

.benefits-list li:before,
.benefits-checklist li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
  font-size: 18px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB84D 0%, #FF9F1C 100%);
  color: #1A472A;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #4A5C4E;
}

/* ===== STATISTICS ===== */
.statistics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin: 48px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  text-align: center;
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F2D;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #4A5C4E;
  display: block;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFF9F0;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  border-left: 4px solid #FFB84D;
  margin-bottom: 20px;
}

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

.author {
  font-weight: 600;
  color: #2C5F2D;
  font-size: 15px;
  margin-bottom: 8px;
}

.rating {
  color: #FFB84D;
  font-size: 18px;
}

.testimonial-highlight {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  border-top: 4px solid #FFB84D;
}

.testimonial-highlight .quote {
  font-size: 20px;
  color: #2C3E35;
  margin-bottom: 16px;
}

/* ===== PROJECT CARDS ===== */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.project-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.2);
}

.project-card h3 {
  color: #2C5F2D;
  font-size: 22px;
  margin-bottom: 12px;
}

.category {
  display: inline-block;
  background: #FFE8CC;
  color: #2C5F2D;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-card .testimonial {
  font-style: italic;
  color: #4A5C4E;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
}

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.1);
  position: relative;
}

.milestone .year {
  font-size: 32px;
  font-weight: 700;
  color: #FFB84D;
  min-width: 100px;
}

.milestone h3 {
  color: #2C5F2D;
  font-size: 20px;
  margin-bottom: 8px;
}

.milestone p {
  color: #4A5C4E;
  font-size: 15px;
}

/* ===== TEAM STATS ===== */
.team-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin: 40px 0;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cert-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.1);
  text-align: center;
  font-weight: 600;
  color: #2C5F2D;
  border: 2px solid #FFE8CC;
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: #FFB84D;
  transform: translateY(-4px);
}

/* ===== SDG & IMPACT SECTIONS ===== */
.sdg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sdg-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1A472A 100%);
  color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.2);
  margin-bottom: 20px;
}

.sdg-card h3 {
  color: #FFB84D;
  margin-bottom: 16px;
}

.sdg-card p {
  color: #E5F5E6;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.impact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  text-align: center;
  border-top: 4px solid #FFB84D;
  margin-bottom: 20px;
}

.impact-item h3 {
  color: #2C5F2D;
  font-size: 28px;
  margin-bottom: 12px;
}

.impact-item p {
  color: #4A5C4E;
  font-size: 15px;
}

/* ===== LIFECYCLE STAGES ===== */
.lifecycle-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.stage {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.1);
  text-align: center;
  margin-bottom: 20px;
}

.stage h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.recycling-info {
  background: #FFF9F0;
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
  border-left: 4px solid #2C5F2D;
}

.recycling-info h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.recycling-info ul {
  list-style: none;
  padding: 0;
}

.recycling-info li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5C4E;
}

.recycling-info li:before {
  content: '♻';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-size: 16px;
}

/* ===== GOALS TIMELINE ===== */
.goals-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.goal {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.goal .year {
  display: inline-block;
  background: linear-gradient(135deg, #FFB84D 0%, #FF9F1C 100%);
  color: #1A472A;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.goal li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5C4E;
}

.goal li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
}

/* ===== CONTACT SECTIONS ===== */
.contact-card {
  text-align: center;
}

.contact-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F2D;
  margin-bottom: 8px;
}

.contact-details,
.contact-hours {
  font-size: 14px;
  color: #4A5C4E;
}

.form-info {
  background: #FFE8CC;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
  border-left: 4px solid #FFB84D;
}

.form-info p {
  color: #2C3E35;
  margin-bottom: 12px;
}

.form-info a {
  color: #2C5F2D;
  font-weight: 600;
  text-decoration: underline;
}

.contact-alternative {
  text-align: center;
  margin-top: 32px;
}

.location-details {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
}

.location-details h3 {
  color: #2C5F2D;
  margin-bottom: 20px;
}

.location-details ul {
  list-style: none;
  padding: 0;
}

.location-details li {
  padding: 8px 0;
  color: #4A5C4E;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44, 95, 45, 0.1);
  border-left: 4px solid #FFB84D;
}

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

.faq-item p {
  color: #4A5C4E;
  font-size: 15px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 45, 0.1);
  text-align: center;
  margin-bottom: 20px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: #2C5F2D;
  margin-bottom: 32px;
  font-size: 36px;
}

.legal-content h2 {
  color: #2C5F2D;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: #2C5F2D;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

.legal-content ul {
  color: #4A5C4E;
  margin-bottom: 16px;
}

.legal-content a {
  color: #2C5F2D;
  text-decoration: underline;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE8CC 100%);
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1A472A 100%);
  color: #FFB84D;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

.email-notice {
  background: #FFE8CC;
  padding: 20px;
  border-radius: 12px;
  margin-top: 32px;
  text-align: center;
}

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

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #2C5F2D 0%, #1A472A 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 32px;
}

.cta-banner p {
  color: #E5F5E6;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-banner .cta-buttons {
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1A472A 0%, #0F2A1A 100%);
  color: #E5F5E6;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #FFB84D;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #E5F5E6;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.footer-section a {
  color: #E5F5E6;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FFB84D;
}

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

.footer-bottom p {
  color: #E5F5E6;
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F2D 0%, #1A472A 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin-bottom: 8px;
}

.cookie-text a {
  color: #FFB84D;
  text-decoration: underline;
}

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

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

.cookie-accept {
  background: #FFB84D;
  color: #1A472A;
  border: none;
}

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

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

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

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

.cookie-settings:hover {
  background: rgba(255, 184, 77, 0.1);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2C5F2D;
  margin-bottom: 24px;
}

.cookie-category {
  background: #FFF9F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #FFB84D;
}

.cookie-category h3 {
  color: #2C5F2D;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #2C5F2D;
}

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

.cookie-toggle.active:before {
  transform: translateX(24px);
}

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

.cookie-category p {
  color: #4A5C4E;
  font-size: 14px;
  margin-bottom: 0;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .cta-buttons {
    display: none;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
    margin-bottom: 40px;
  }
  
  /* Grid layouts */
  .benefit-card,
  .service-card,
  .value-card,
  .cert-item,
  .contact-card,
  .resource-card,
  .practice-card,
  .project-card,
  .sdg-card,
  .impact-item,
  .stage,
  .goal,
  .contact-method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Statistics */
  .statistics {
    gap: 24px;
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-value {
    font-size: 36px;
  }
  
  /* Hero */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Timeline */
  .milestone {
    flex-direction: column;
  }
  
  .milestone .year {
    font-size: 28px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .service-detail-card,
  .testimonial-card,
  .project-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

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

/* ===== ACCESSIBILITY ===== */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #FFB84D;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}