/* ========================================
   JEO ENERGIE SOLINGEN - GEOMETRIC STRUCTURED DESIGN
   Modern, Angular, Precise CSS Framework
   ======================================== */

/* 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: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

a:hover {
  color: #0A5F38;
}

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

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

li {
  margin-bottom: 8px;
}

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

/* GEOMETRIC BUTTON SYSTEM */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  position: relative;
}

.btn-primary {
  background: #0A5F38;
  color: #ffffff;
  border-color: #0A5F38;
}

.btn-primary:hover {
  background: #084a2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 95, 56, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #0A5F38;
  border-color: #0A5F38;
}

.btn-secondary:hover {
  background: #0A5F38;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 95, 56, 0.2);
}

/* ANGULAR HEADER STRUCTURE */
header {
  background: #ffffff;
  border-bottom: 3px solid #0A5F38;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0A5F38;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #0A5F38;
}

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

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

.phone-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1E88E5;
  font-size: 16px;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #0A5F38;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  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: #0A5F38;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #084a2d;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #0A5F38;
  border-left-color: #0A5F38;
  padding-left: 24px;
}

/* GEOMETRIC HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0A5F38 0%, #1E88E5 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(25deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  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;
  opacity: 0.95;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

/* STRUCTURED SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  color: #0A5F38;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FFC107;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555555;
}

/* GEOMETRIC GRID SYSTEMS - FLEXBOX ONLY */
.service-grid,
.benefit-grid,
.stats-grid,
.project-grid,
.financing-options,
.contact-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

/* ANGULAR CARD DESIGN */
.service-card,
.benefit-item,
.stat-item,
.project-card,
.financing-option,
.contact-option,
.service-detail-card {
  background: #ffffff;
  padding: 32px 24px;
  border: 2px solid #e0e0e0;
  position: relative;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.service-card:hover,
.project-card:hover,
.service-detail-card:hover {
  border-color: #0A5F38;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10, 95, 56, 0.15);
}

.service-card img,
.contact-option img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3,
.project-card h3,
.service-detail-card h3 {
  color: #0A5F38;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.project-card p,
.service-detail-card p {
  color: #555555;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.price,
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1E88E5;
  margin-top: 16px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PROJECT CARDS SPECIFIC */
.project-category,
.project-date {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: #FFC107;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.key-facts {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.key-facts li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  font-weight: 600;
}

.key-facts li:last-child {
  border-bottom: none;
}

.results {
  margin-top: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-left: 3px solid #0A5F38;
}

.results p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* SERVICE DETAIL CARDS */
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.service-detail-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
}

.service-detail-card .features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-detail-card .features li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.service-detail-card .features li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-size: 10px;
}

/* TESTIMONIAL CARDS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #f9f9f9;
  padding: 32px;
  border-left: 4px solid #0A5F38;
  margin-bottom: 20px;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.testimonial-author {
  display: block;
  font-weight: 600;
  color: #0A5F38;
  margin-bottom: 8px;
  font-size: 14px;
}

.rating {
  display: block;
  color: #FFC107;
  font-size: 18px;
  letter-spacing: 2px;
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #0A5F38 0%, #084a2d 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats h2 {
  color: #ffffff;
}

.stats h2::after {
  background: #FFC107;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.stat-number {
  font-size: 48px;
  color: #FFC107;
  margin-bottom: 12px;
}

.stat-label {
  color: #ffffff;
  opacity: 0.9;
}

/* BENEFITS SECTION */
.benefits {
  background: #f9f9f9;
  padding: 60px 20px;
}

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  background: #ffffff;
  border-top: 4px solid #1E88E5;
}

.benefit-item h3 {
  color: #0A5F38;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: #666666;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1E88E5 0%, #0A5F38 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(30deg);
}

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

.cta-section h2::after {
  display: none;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

/* TIMELINE */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0A5F38;
}

.timeline-entry {
  position: relative;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.timeline-entry::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #FFC107;
  border: 3px solid #0A5F38;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-entry .year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0A5F38;
  margin-bottom: 8px;
}

.timeline-entry p {
  margin: 0;
  color: #555555;
}

/* MISSION/VISION BLOCKS */
.mission-block,
.vision-block {
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #0A5F38;
  background: #f9f9f9;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

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

.value-item h3 {
  font-size: 16px;
  color: #0A5F38;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step h3 {
  color: #1E88E5;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* PRICING CARDS */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #0A5F38;
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(10, 95, 56, 0.15);
}

.pricing-card h3 {
  font-size: 20px;
  color: #0A5F38;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  color: #1E88E5;
  margin: 20px 0;
}

.pricing-card p {
  font-size: 14px;
  color: #666666;
}

/* CONTACT OPTIONS */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.contact-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
}

.contact-option h3 {
  color: #0A5F38;
  margin-bottom: 12px;
}

.contact-option p {
  font-size: 15px;
  color: #555555;
}

.contact-option a {
  color: #1E88E5;
  font-weight: 600;
}

.hours,
.note {
  font-size: 13px;
  color: #888888;
  margin-top: 8px;
}

/* FORM SECTION */
.form-note {
  max-width: 600px;
  margin: 32px auto;
  padding: 24px;
  background: #f9f9f9;
  border-left: 4px solid #1E88E5;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-note p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.form-note a {
  color: #1E88E5;
  font-weight: 600;
}

/* HOURS TABLE */
.hours-table {
  max-width: 600px;
  margin: 32px auto;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.hours-row span:first-child {
  font-weight: 600;
  color: #0A5F38;
}

/* PROMISE LIST */
.promise-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
  padding: 0;
}

.promise-list li {
  padding: 16px 20px;
  padding-left: 50px;
  margin-bottom: 16px;
  background: #ffffff;
  border-left: 4px solid #1E88E5;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.promise-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A5F38;
  font-size: 20px;
  font-weight: 700;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content article {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e0e0e0;
}

.legal-content article:last-child {
  border-bottom: none;
}

.legal-content h2 {
  color: #0A5F38;
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
  transform: none;
  left: auto;
}

.legal-content h2::after {
  display: none;
}

.legal-content p {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

/* HIGHLIGHT BOXES */
.highlight-box {
  background: #f9f9f9;
  padding: 32px;
  margin: 32px 0;
  border-left: 4px solid #FFC107;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.highlight-box h3 {
  color: #0A5F38;
  margin-bottom: 16px;
}

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

.highlight-box li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-weight: 600;
}

.highlight-box li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #1E88E5;
  font-size: 10px;
}

/* SUCCESS PAGE */
.success-icon {
  width: 100px;
  height: 100px;
  background: #0A5F38;
  color: #ffffff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.timeline {
  text-align: center;
  font-size: 14px;
  color: #888888;
  margin-top: 24px;
  font-style: italic;
}

.phone {
  font-size: 28px;
  margin: 24px 0;
}

.phone a {
  color: #1E88E5;
  font-weight: 700;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto;
}

.resource-link {
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  text-align: center;
  font-weight: 600;
  color: #0A5F38;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.resource-link:hover {
  border-color: #0A5F38;
  background: #0A5F38;
  color: #ffffff;
  transform: translateX(8px);
}

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

/* PRICE HIGHLIGHTS */
.price-highlight {
  display: inline-block;
  background: #FFC107;
  color: #1a1a1a;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.value-prop {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

/* FOOTER - GEOMETRIC STRUCTURE */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #0A5F38;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

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

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

.footer-column a {
  display: block;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #FFC107;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #888888;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: #888888;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FFC107;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #FFC107;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-content p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.cookie-accept {
  background: #0A5F38;
  color: #ffffff;
  border-color: #0A5F38;
}

.cookie-accept:hover {
  background: #084a2d;
}

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

.cookie-reject:hover {
  border-color: #ffffff;
}

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

.cookie-settings:hover {
  background: #FFC107;
  color: #1a1a1a;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #888888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1a1a1a;
}

.cookie-modal h2 {
  color: #0A5F38;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f9f9f9;
  border-left: 4px solid #1E88E5;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cookie-category h3 {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.cookie-toggle.active {
  background: #0A5F38;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-category.disabled {
  opacity: 0.6;
  pointer-events: none;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1024px) {
  .service-card,
  .benefit-item,
  .stat-item,
  .project-card,
  .financing-option,
  .value-item,
  .step {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-detail-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* HEADER MOBILE */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* HERO MOBILE */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* CARDS MOBILE */
  .service-card,
  .benefit-item,
  .stat-item,
  .project-card,
  .financing-option,
  .contact-option,
  .value-item,
  .step,
  .pricing-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .service-detail-card {
    flex: 1 1 100%;
  }
  
  /* FOOTER MOBILE */
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* CTA MOBILE */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* TIMELINE MOBILE */
  .timeline-container {
    padding-left: 40px;
  }
  
  .timeline-entry::before {
    left: -36px;
  }
  
  /* PROCESS STEPS MOBILE */
  .process-steps {
    flex-direction: column;
  }
  
  /* COOKIE BANNER MOBILE */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-content {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* CONTAINER */
  .container {
    padding: 0 16px;
  }
  
  /* TYPOGRAPHY EXTRA SMALL */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  /* HERO EXTRA SMALL */
  .hero h1 {
    font-size: 26px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  /* CARDS PADDING */
  .service-card,
  .project-card,
  .service-detail-card {
    padding: 24px 20px;
  }
  
  /* STAT NUMBERS */
  .stat-number {
    font-size: 36px;
  }
  
  /* CTA SECTION */
  .cta-section h2 {
    font-size: 28px;
  }
  
  /* MOBILE MENU */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #1E88E5;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #0A5F38;
  outline-offset: 2px;
}

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

.service-card,
.project-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* END OF GEOMETRIC STRUCTURED CSS */