/* ============================================
   INVARSENERGIE - NATURE ORGANIC DESIGN SYSTEM
   Sustainable Energy Solutions
   ============================================ */

/* CSS RESET & BASE */
* {
  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: #2D3A1F;
  background-color: #FAF8F3;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - NATURE ORGANIC
   ============================================ */

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

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
}

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

a:hover {
  color: #FFA726;
}

ul {
  list-style: none;
}

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

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

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

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

/* ============================================
   HEADER - ORGANIC DESIGN
   ============================================ */

header {
  background: linear-gradient(135deg, #FAF8F3 0%, #F0EDE4 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  border-bottom: 3px solid #2E7D32;
}

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

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

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #1B4D8C;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
  transform: translateY(-2px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.phone-link {
  color: #2E7D32;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border: 2px solid #2E7D32;
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background-color: #2E7D32;
  color: #FFFFFF;
  transform: scale(1.05);
}

.cta-button {
  background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #2E7D32;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #1B5E20;
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FAF8F3 0%, #E8E4D9 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(46, 125, 50, 0.2);
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mobile-menu-close:hover {
  background-color: rgba(46, 125, 50, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #1B4D8C;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(46, 125, 50, 0.1);
  border-left-color: #2E7D32;
  transform: translateX(5px);
}

/* ============================================
   HERO SECTION - ORGANIC NATURE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 20px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 167, 38, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #1B4D8C;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subheadline {
  font-size: 18px;
  color: #4A5942;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #0D3F10 100%);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

.trust-number {
  font-size: 32px;
  font-weight: 700;
  color: #2E7D32;
}

.trust-icon {
  font-size: 32px;
  color: #FFA726;
}

.trust-label {
  font-size: 14px;
  color: #4A5942;
  text-align: center;
}

/* ============================================
   VALUE PROPOSITION - ORGANIC CARDS
   ============================================ */

.value-proposition {
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  color: #1B4D8C;
  margin-bottom: 48px;
  font-size: 32px;
}

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

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #E8F5E9;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #2E7D32, #FFA726);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.value-card h3 {
  color: #1B4D8C;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #4A5942;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FAF8F3 0%, #F0EDE4 100%);
}

.services-overview h2 {
  text-align: center;
  color: #1B4D8C;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #4A5942;
  font-size: 18px;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #2E7D32;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
  border-left-width: 8px;
}

.service-card h3 {
  color: #1B4D8C;
  margin-bottom: 12px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #FFA726;
  margin-bottom: 16px;
}

.service-card p {
  color: #4A5942;
  line-height: 1.7;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   SOCIAL PROOF - TESTIMONIALS
   ============================================ */

.social-proof {
  padding: 60px 20px;
}

.social-proof h2 {
  text-align: center;
  color: #1B4D8C;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  position: relative;
  margin-bottom: 20px;
  border: 2px solid #E8F5E9;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(46, 125, 50, 0.1);
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #2D3A1F;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: #1B4D8C;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-rating {
  color: #FFA726;
  font-size: 20px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 30px;
  margin: 40px 20px;
}

.stats h2 {
  text-align: center;
  color: #1B4D8C;
  margin-bottom: 48px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2E7D32;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.stat-label {
  font-size: 16px;
  color: #4A5942;
  text-align: center;
  font-weight: 600;
}

/* ============================================
   CTA BANNER - ORGANIC STYLE
   ============================================ */

.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  border-radius: 30px;
  margin: 60px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #E8F5E9;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #2E7D32;
}

.cta-banner .btn-primary:hover {
  background: #FFA726;
  color: #FFFFFF;
}

.cta-banner .btn-secondary {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: #2E7D32;
}

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.breadcrumb {
  font-size: 14px;
  color: #4A5942;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #2E7D32;
}

.page-hero h1 {
  color: #1B4D8C;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #4A5942;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #FFA726;
  margin: 24px 0;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

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

.service-detail.alt {
  background: linear-gradient(180deg, #FAF8F3 0%, #F0EDE4 100%);
}

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

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-header img {
  width: 60px;
  height: 60px;
}

.service-header h2 {
  flex: 1;
  margin-bottom: 0;
}

.service-description {
  font-size: 18px;
  color: #4A5942;
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-features, .service-benefits {
  margin-bottom: 32px;
}

.service-features h3, .service-benefits h3 {
  color: #1B4D8C;
  margin-bottom: 16px;
}

.service-features ul, .service-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li, .service-benefits li {
  padding-left: 32px;
  position: relative;
  color: #4A5942;
  line-height: 1.6;
}

.service-features li::before, .service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   REFERENCE PROJECTS
   ============================================ */

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

.reference-project.alt {
  background: linear-gradient(180deg, #FAF8F3 0%, #F0EDE4 100%);
}

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

.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-category, .project-year {
  display: inline-block;
  padding: 8px 16px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.project-scope {
  font-size: 18px;
  color: #1B4D8C;
  margin-bottom: 32px;
  padding: 16px;
  background: #E8F5E9;
  border-radius: 15px;
  border-left: 4px solid #2E7D32;
}

.project-details h3 {
  color: #1B4D8C;
  margin-top: 24px;
  margin-bottom: 12px;
}

.project-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.project-details li {
  padding-left: 32px;
  position: relative;
  color: #4A5942;
  line-height: 1.6;
}

.project-details li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-size: 20px;
}

blockquote {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 24px;
  border-radius: 15px;
  border-left: 4px solid #2E7D32;
  font-style: italic;
  color: #2D3A1F;
  margin: 24px 0;
  line-height: 1.8;
}

/* ============================================
   CONSULTING PROCESS
   ============================================ */

.consulting-benefits, .consulting-process, .cost-benefit {
  padding: 60px 20px;
}

.benefits-grid, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
}

.benefit-card h3 {
  color: #1B4D8C;
  margin-bottom: 12px;
}

.process-step {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.step-duration {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

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

.example-box {
  flex: 1 1 400px;
  max-width: 500px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  margin-bottom: 20px;
}

.example-box h3 {
  color: #1B4D8C;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  padding: 60px 20px;
}

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

.contact-method {
  flex: 1 1 280px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.2);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.contact-method h3 {
  color: #1B4D8C;
  margin-bottom: 12px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-detail a {
  color: #2E7D32;
}

.contact-hours {
  font-size: 14px;
  color: #4A5942;
  margin-bottom: 16px;
}

.form-notice {
  background: #E8F5E9;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #2E7D32;
  max-width: 700px;
  margin: 0 auto;
}

.form-notice ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.form-notice li {
  padding-left: 24px;
  position: relative;
}

.form-notice li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2E7D32;
}

.office-location {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FAF8F3 0%, #F0EDE4 100%);
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
}

.address {
  font-size: 20px;
  color: #1B4D8C;
  margin-bottom: 24px;
}

.business-hours {
  padding: 60px 20px;
}

.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #E8F5E9;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:nth-child(even) {
  background: #F5F5F5;
}

.day {
  font-weight: 600;
  color: #1B4D8C;
}

.time {
  color: #4A5942;
}

.hours-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #4A5942;
  font-style: italic;
}

.urgency-text {
  margin-top: 16px;
  font-size: 14px;
  color: #E8F5E9;
}

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

.page-hero.legal {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.last-updated {
  font-size: 14px;
  color: #4A5942;
  font-style: italic;
}

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
}

.content-wrapper h2 {
  color: #1B4D8C;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8F5E9;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.confirmation-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(46, 125, 50, 0.3);
}

.confirmation-details {
  padding: 60px 20px;
}

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

.step-item {
  flex: 1 1 240px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  margin-bottom: 20px;
}

.step-item .step-number {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.urgent-note {
  text-align: center;
  padding: 20px;
  background: #E8F5E9;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FAF8F3 0%, #F0EDE4 100%);
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 350px;
  max-width: 450px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  margin-bottom: 20px;
}

.btn-link {
  display: inline-block;
  margin-top: 16px;
  color: #2E7D32;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid #2E7D32;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background: #2E7D32;
  color: #FFFFFF;
}

.contact-reminder {
  padding: 40px 20px;
  text-align: center;
}

/* ============================================
   COMPANY PAGES
   ============================================ */

.company-story, .mission-vision, .values, .team, .certifications {
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.mission-box, .vision-box {
  flex: 1 1 400px;
  max-width: 550px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.1);
  margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
  color: #1B4D8C;
  margin-bottom: 16px;
}

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

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cert-badge {
  padding: 16px 24px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: #1B4D8C;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

/* ============================================
   FOOTER - ORGANIC DESIGN
   ============================================ */

footer {
  background: linear-gradient(135deg, #1B4D8C 0%, #0D3F10 100%);
  color: #E8F5E9;
  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;
  max-width: 350px;
}

.footer-section h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E8F5E9;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #E8F5E9;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #FFA726;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 245, 233, 0.2);
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4D8C 0%, #0D3F10 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #E8F5E9;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #1B5E20 0%, #0D3F10 100%);
  transform: scale(1.05);
}

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

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

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

.cookie-btn-settings:hover {
  background: #FFA726;
  color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-settings-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-settings-modal.show {
  display: flex;
}

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

.cookie-settings-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #4A5942;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background: rgba(46, 125, 50, 0.1);
  transform: rotate(90deg);
}

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

.cookie-category {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 15px;
  margin-bottom: 16px;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  appearance: none;
  background: #CCC;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2E7D32;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .header-contact {
    display: none;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-indicators {
    gap: 20px;
  }

  .values-grid, .services-grid, .testimonials-grid, .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card, .service-card, .testimonial-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    max-width: 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-settings-content {
    padding: 24px;
  }

  .text-image-section {
    flex-direction: column;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-header img {
    margin: 0 auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .values-grid, .services-grid {
    justify-content: space-around;
  }

  .value-card, .service-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .hero h1 {
    font-size: 56px;
  }

  .section {
    padding: 60px 20px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

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

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal {
    display: none !important;
  }

  header {
    position: static;
    box-shadow: none;
  }

  a {
    text-decoration: underline;
  }

  .cta-banner {
    display: none;
  }
}