/* ==========================================================================
   FUZZY SHIFTER - MODERN BOLD DESIGN SYSTEM
   Intelligent Energy Solutions
   ========================================================================== */

/* ==========================================================================
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ==========================================================================
   MODERN BOLD TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 700;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION - MODERN BOLD STYLE
   ========================================================================== */

header {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #2C5F2D;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 70px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #2C5F2D;
  border-bottom-color: #F7A800;
}

/* ==========================================================================
   MOBILE MENU - MODERN BOLD
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F2D 0%, #1a3d1b 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(247, 168, 0, 0.3);
  border-left-color: #F7A800;
  transform: translateX(8px);
}

/* ==========================================================================
   HERO SECTION - MODERN BOLD
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(247, 168, 0, 0.05) 10px,
    rgba(247, 168, 0, 0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

.trust-badge {
  display: inline-block;
  background: rgba(247, 168, 0, 0.2);
  color: #F7A800;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #F7A800;
  margin-top: 24px;
}

/* ==========================================================================
   BUTTONS - MODERN BOLD STYLE
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #F7A800 0%, #d89400 100%);
  color: #1a1a1a;
  border-color: #F7A800;
  box-shadow: 0 6px 20px rgba(247, 168, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d89400 0%, #c08400 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(247, 168, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2C5F2D;
  border-color: #2C5F2D;
  font-weight: 700;
}

.btn-secondary:hover {
  background: #2C5F2D;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.hero .btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.hero .btn-secondary:hover {
  background: #ffffff;
  color: #2C5F2D;
}

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

/* ==========================================================================
   SECTIONS - MODERN BOLD SPACING
   ========================================================================== */

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

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

/* ==========================================================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ========================================================================== */

.benefits-grid,
.services-grid,
.process-grid,
.stats-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.page-grid,
.posts-grid,
.categories-grid,
.contact-grid,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card,
.service-card,
.process-step,
.stat-card,
.testimonial-card,
.value-card,
.team-member,
.team-card,
.page-card,
.post-card,
.category-card,
.contact-card,
.suggestion-card,
.step-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #2C5F2D;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #F7A800 0%, #2C5F2D 100%);
  border-radius: 12px 0 0 12px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.page-card:hover,
.post-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(44, 95, 45, 0.2);
  border-color: #F7A800;
}

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

.service-card .price,
.price {
  display: inline-block;
  background: #F7A800;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ==========================================================================
   STATISTICS - MODERN BOLD
   ========================================================================== */

.statistics {
  background: linear-gradient(135deg, #E8F4E9 0%, #d4edd5 100%);
  padding: 60px 20px;
}

.stat-card {
  background: #ffffff;
  border: 4px solid #2C5F2D;
  text-align: center;
  padding: 40px 24px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #2C5F2D;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS - READABLE CONTRAST
   ========================================================================== */

.testimonials {
  background: #E8F4E9;
  padding: 60px 20px;
}

.testimonial-card {
  background: #ffffff;
  border: 4px solid #2C5F2D;
  border-left-width: 8px;
  border-left-color: #F7A800;
  padding: 32px;
  position: relative;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author,
.author {
  color: #2C5F2D;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
}

.testimonial-card .testimonial-author {
  color: #2C5F2D;
}

.rating {
  color: #F7A800;
  font-size: 20px;
  margin-top: 8px;
}

/* ==========================================================================
   PROCESS STEPS - MODERN BOLD
   ========================================================================== */

.process {
  background: #ffffff;
}

.process-step {
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
  border: 3px solid #2C5F2D;
  position: relative;
  padding-left: 80px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #F7A800;
  border: 4px solid #2C5F2D;
  border-radius: 50%;
}

.process-step h3 {
  color: #2C5F2D;
  font-size: 20px;
}

/* ==========================================================================
   CTA BANNER - MODERN BOLD
   ========================================================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after,
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 168, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.cta-banner .trust-badge {
  margin-top: 24px;
}

/* ==========================================================================
   VALUE PROPOSITION - MODERN BOLD
   ========================================================================== */

.value-proposition {
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  color: #2C5F2D;
  margin-bottom: 40px;
}

.supporting-text {
  text-align: center;
  font-size: 18px;
  color: #1a1a1a;
  margin-top: 40px;
  font-weight: 600;
}

/* ==========================================================================
   SERVICES OVERVIEW - FLEXBOX GRID
   ========================================================================== */

.services-overview {
  padding: 60px 20px;
  text-align: center;
}

.services-grid {
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */

.service-detail {
  background: #ffffff;
  border: 4px solid #2C5F2D;
  border-left-width: 8px;
  border-left-color: #F7A800;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail li {
  margin-bottom: 12px;
  color: #1a1a1a;
  position: relative;
  padding-left: 24px;
}

.service-detail li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F7A800;
  font-weight: 800;
  font-size: 18px;
}

/* ==========================================================================
   BLOG & POSTS - MODERN BOLD
   ========================================================================== */

.blog-categories {
  background: #E8F4E9;
  padding: 40px 20px;
}

.category-card {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border: none;
  min-width: 200px;
  flex: 1 1 calc(33.333% - 16px);
}

.category-card:hover {
  background: linear-gradient(135deg, #F7A800 0%, #d89400 100%);
  color: #1a1a1a;
}

.post-featured {
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
  border: 4px solid #2C5F2D;
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
}

.post-featured h3 {
  color: #2C5F2D;
  font-size: 28px;
  margin-bottom: 16px;
}

.post-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.post-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

.post-card h3 {
  color: #2C5F2D;
  font-size: 20px;
}

/* ==========================================================================
   CONTACT PAGE - MODERN BOLD
   ========================================================================== */

.contact-options {
  padding: 40px 20px;
}

.contact-card {
  text-align: center;
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
}

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

.contact-form-section {
  background: #E8F4E9;
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 32px auto 0;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #2C5F2D;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #2C5F2D;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid #2C5F2D;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #F7A800;
  box-shadow: 0 0 0 4px rgba(247, 168, 0, 0.2);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 3px solid #2C5F2D;
  border-radius: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: #1a1a1a;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

.office-hours,
.team-contact {
  text-align: center;
  padding: 40px 20px;
}

.office-hours h2,
.team-contact h2 {
  color: #2C5F2D;
  margin-bottom: 24px;
}

.team-contact .team-grid {
  justify-content: center;
  max-width: 800px;
  margin: 32px auto 0;
}

.team-card .position {
  color: #F7A800;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ==========================================================================
   REFERENCE & CASE STUDIES
   ========================================================================== */

.reference-stats {
  background: #E8F4E9;
  padding: 40px 20px;
}

.reference-stats .stats-grid {
  justify-content: center;
}

.reference-stats .stat-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #2C5F2D;
}

.case-study-featured {
  background: #ffffff;
  border: 4px solid #2C5F2D;
  border-left-width: 12px;
  border-left-color: #F7A800;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.case-study-featured h3 {
  color: #2C5F2D;
  font-size: 26px;
  margin-bottom: 24px;
}

.case-study-featured h4 {
  color: #2C5F2D;
  margin-top: 24px;
  margin-bottom: 16px;
}

.case-study-featured ul {
  padding-left: 24px;
  margin: 16px 0;
}

.case-study-featured li {
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */

.error-section {
  padding: 80px 20px;
  text-align: center;
}

.error-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #F7A800;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 #2C5F2D;
}

.error-content h1 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.suggestions-section {
  background: #E8F4E9;
  padding: 40px 20px;
}

.suggestion-list {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
  padding-left: 24px;
}

.suggestion-list li {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  padding-left: 32px;
}

.suggestion-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F7A800;
  font-weight: 800;
  font-size: 24px;
}

.popular-pages {
  padding: 60px 20px;
}

.page-grid {
  justify-content: center;
}

.page-card {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  border: none;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
}

.page-card:hover {
  background: linear-gradient(135deg, #F7A800 0%, #d89400 100%);
  color: #1a1a1a;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #2C5F2D;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  border: 6px solid #F7A800;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.3);
}

.thank-you-content h1 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #1a1a1a;
  max-width: 600px;
  margin: 0 auto 32px;
}

.next-steps {
  padding: 60px 20px;
}

.while-you-wait {
  background: #E8F4E9;
  padding: 60px 20px;
}

.back-navigation {
  padding: 40px 20px;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.nav-link {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #2C5F2D;
  border: 3px solid #2C5F2D;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #2C5F2D;
  color: #ffffff;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

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

.legal-page h1 {
  color: #2C5F2D;
  border-bottom: 4px solid #F7A800;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: #ffffff;
  border-left: 6px solid #2C5F2D;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.legal-section ul {
  padding-left: 24px;
  margin: 16px 0;
}

.legal-section li {
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* ==========================================================================
   SUSTAINABILITY PAGE
   ========================================================================== */

.sustainability-vision {
  background: linear-gradient(135deg, #E8F4E9 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.commitment {
  font-weight: 700;
  font-size: 18px;
  color: #2C5F2D;
  margin-top: 24px;
  padding: 20px;
  background: rgba(44, 95, 45, 0.1);
  border-left: 6px solid #F7A800;
  border-radius: 8px;
}

.impact-metrics {
  padding: 60px 20px;
}

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

.metric-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  text-align: center;
  padding: 40px 24px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.3);
}

.metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #F7A800;
  margin-bottom: 12px;
  line-height: 1;
}

.metric-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.metric-card p {
  font-size: 14px;
  color: #E8F4E9;
}

.climate-goals {
  background: #E8F4E9;
  padding: 60px 20px;
}

.goals-list {
  max-width: 800px;
  margin: 32px auto 0;
  padding-left: 24px;
}

.goals-list li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  padding-left: 32px;
  position: relative;
}

.goals-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 800;
  font-size: 20px;
  background: #F7A800;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.approach {
  padding: 60px 20px;
}

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.approach-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  border: 4px solid #2C5F2D;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  border-color: #F7A800;
  box-shadow: 0 16px 40px rgba(44, 95, 45, 0.2);
}

.approach-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

/* ==========================================================================
   ABOUT US PAGE
   ========================================================================== */

.company-story {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.milestone {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  border: 3px solid #F7A800;
}

.mission-vision {
  background: #E8F4E9;
  padding: 60px 20px;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #2C5F2D;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mission h2,
.vision h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.values {
  padding: 60px 20px;
}

.team {
  background: #E8F4E9;
  padding: 60px 20px;
  text-align: center;
}

.team-stats {
  margin-top: 32px;
  font-weight: 700;
  font-size: 18px;
  color: #2C5F2D;
}

.certifications {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}

.certifications ul {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
  padding-left: 24px;
}

.certifications li {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  padding-left: 32px;
}

.certifications li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  background: #2C5F2D;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
}

/* ==========================================================================
   FOOTER - MODERN BOLD
   ========================================================================== */

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 6px solid #F7A800;
}

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

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

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

.footer-column h3 {
  color: #F7A800;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a:hover {
  color: #F7A800;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid #333333;
  color: #999999;
  font-size: 14px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER - MODERN BOLD
   ========================================================================== */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C5F2D 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1998;
  border-top: 4px solid #F7A800;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text h3 {
  color: #F7A800;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-consent-text p {
  color: #E8F4E9;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: #F7A800;
  color: #1a1a1a;
  border-color: #F7A800;
}

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

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #F7A800;
  border-color: #F7A800;
}

.cookie-btn-settings:hover {
  background: rgba(247, 168, 0, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-settings-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #2C5F2D;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

.cookie-category {
  padding: 20px;
  background: #E8F4E9;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #2C5F2D;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2C5F2D;
}

.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #E8F4E9;
}

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Buttons stack vertically */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .process-step,
  .stat-card,
  .testimonial-card,
  .value-card,
  .team-member,
  .team-card,
  .page-card,
  .post-card,
  .category-card,
  .contact-card,
  .suggestion-card,
  .step-card,
  .approach-card,
  .metric-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Error code smaller */
  .error-code {
    font-size: 80px;
  }
  
  /* Footer columns stack */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner adjustments */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 24px;
  }
  
  /* Stats grid */
  .reference-stats .stat-card {
    flex: 1 1 100%;
  }
  
  /* Mission/Vision stack */
  .mission,
  .vision {
    flex: 1 1 100%;
  }
  
  /* Milestones stack */
  .milestone {
    flex: 1 1 100%;
  }
  
  /* Suggestions grid */
  .suggestions-grid,
  .nav-links {
    flex-direction: column;
  }
  
  /* Legal sections */
  .legal-section {
    padding: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .value-card,
  .approach-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-card,
  .metric-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 30px;
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 64px;
  }
  
  .cta-banner h2 {
    font-size: 48px;
  }
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

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

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

/* Apply animations */
.hero-content,
.benefit-card,
.service-card,
.value-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ==========================================================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Focus styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #F7A800;
  outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2C5F2D;
  color: #ffffff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
}

.skip-to-content:focus {
  top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */