/* ============================================
   COMPREHENSIVE CSS FOR SOLARVISION SCHWEIZ
   Minimalist Design Style - Clean & Modern
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  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: #2C3E50;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
}

/* ============================================
   TYPOGRAPHY - MINIMALIST STYLE
   ============================================ */

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

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

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION - MINIMALIST
   ============================================ */

header {
  background: #FFFFFF;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  position: relative;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #1B5E20;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1B5E20;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

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

.mobile-menu-close:hover {
  color: #1B5E20;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #1B5E20;
  padding-left: 8px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS - MINIMALIST STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.btn-primary {
  background: #1B5E20;
  color: #FFFFFF;
  border-color: #1B5E20;
}

.btn-primary:hover {
  background: #145214;
  border-color: #145214;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1B5E20;
  border-color: #1B5E20;
}

.btn-secondary:hover {
  background: #1B5E20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
}

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

/* ============================================
   HERO SECTION - MINIMALIST DESIGN
   ============================================ */

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

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

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

.hero-subtitle {
  font-size: 24px;
  color: #FF6F00;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #1B5E20;
  padding: 8px 16px;
  background: #FFF8E1;
  border-radius: 20px;
}

/* ============================================
   HERO INTERNAL PAGES
   ============================================ */

.hero-internal {
  background: #F5F5F5;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto;
}

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

.stats-inline span {
  font-size: 16px;
  font-weight: 600;
  color: #1B5E20;
}

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */

.benefit-grid,
.service-grid,
.value-grid,
.category-grid,
.project-grid,
.testimonial-grid,
.stats-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.benefit-card,
.service-card,
.value-card,
.category-card,
.project-card,
.testimonial-card,
.stat-card,
.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.project-card:hover,
.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #1B5E20;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.category-card h3,
.project-card h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.value-card p,
.category-card p,
.project-card p {
  color: #2C3E50;
  margin-bottom: 12px;
}

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

/* ============================================
   PROCESS & STEPS - FLEXBOX LAYOUT
   ============================================ */

.process {
  background: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step,
.phase {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: #FFF8E1;
  margin-bottom: 16px;
  -webkit-text-stroke: 2px #1B5E20;
}

.step h3,
.phase h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

.step p,
.phase p {
  color: #2C3E50;
}

.phase ul {
  margin-top: 12px;
  padding-left: 20px;
}

.phase ul li {
  color: #2C3E50;
  margin-bottom: 8px;
}

/* ============================================
   TESTIMONIALS - READABLE TEXT
   ============================================ */

.testimonials {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

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

.testimonial-card strong {
  display: block;
  color: #1B5E20;
  font-weight: 600;
  margin-top: 16px;
}

.testimonial-card span {
  display: block;
  color: #757575;
  font-size: 14px;
  margin-top: 4px;
}

.testimonial-card .quote {
  color: #2C3E50;
  font-style: italic;
  background: #FFFFFF;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #FF6F00;
  margin: 16px 0;
}

/* ============================================
   STATS & CERTIFICATIONS
   ============================================ */

.trust {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.certifications {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.certifications span {
  padding: 12px 24px;
  background: #FFF8E1;
  border-radius: 8px;
  font-weight: 600;
  color: #1B5E20;
  border: 1px solid #1B5E20;
}

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

.stat {
  text-align: center;
  min-width: 150px;
}

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

.stat span {
  display: block;
  font-size: 14px;
  color: #2C3E50;
  font-weight: 500;
}

.stats-grid .stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stats-grid .stat-card strong {
  font-size: 40px;
  color: #FF6F00;
  display: block;
  margin-bottom: 12px;
}

.stats-grid .stat-card p {
  color: #2C3E50;
  font-size: 14px;
}

/* ============================================
   SERVICES PREVIEW & LIST
   ============================================ */

.services-preview {
  background: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.services {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #1B5E20;
}

.service-item h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

.service-item p {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* ============================================
   BENEFITS SECTIONS
   ============================================ */

.benefits {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits-financial,
.benefits-property,
.benefits-environmental,
.benefits-independence {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.benefits-financial {
  background: #F5F5F5;
}

.benefits-property {
  background: #FFFFFF;
}

.benefits-environmental {
  background: #FFF8E1;
}

.benefits-independence {
  background: #F5F5F5;
}

.independence-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.level {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #1B5E20;
  text-align: center;
  transition: all 0.3s ease;
}

.level:hover {
  box-shadow: 0 8px 24px rgba(27, 94, 32, 0.2);
  transform: translateY(-4px);
}

.level h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

.level p {
  color: #2C3E50;
}

/* ============================================
   TIMELINE & MILESTONES
   ============================================ */

.company-story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 12px;
  border-left: 4px solid #FF6F00;
  transition: all 0.3s ease;
}

.milestone:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #FF6F00;
  margin-bottom: 8px;
}

.milestone h3 {
  color: #1B5E20;
  font-size: 18px;
  margin-bottom: 8px;
}

.milestone p {
  color: #2C3E50;
  font-size: 14px;
}

/* ============================================
   VALUES & TEAM
   ============================================ */

.values,
.team {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values {
  background: #F5F5F5;
}

.team ul {
  margin: 24px 0;
  padding-left: 20px;
}

.team ul li {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 16px;
}

/* ============================================
   FAQ SECTIONS
   ============================================ */

.faq-categories {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.faq-section {
  padding: 40px 20px;
  margin-bottom: 40px;
  background: #F5F5F5;
}

.faq-section:nth-child(even) {
  background: #FFFFFF;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #1B5E20;
}

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

.faq-item p {
  color: #2C3E50;
  margin-bottom: 0;
}

.faq-contact {
  padding: 60px 20px;
  background: #F5F5F5;
  margin-bottom: 60px;
}

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

.contact-methods,
.contact-info,
.office-location {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.contact-card {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.contact-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
}

.contact-card p {
  color: #2C3E50;
  margin-bottom: 8px;
}

.address-block {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.address-block h3 {
  color: #1B5E20;
  margin-bottom: 16px;
}

.address-block p {
  color: #2C3E50;
  margin-bottom: 0;
}

.directions {
  margin-top: 32px;
}

.directions h4 {
  color: #1B5E20;
  margin-bottom: 12px;
  margin-top: 24px;
}

.directions ul {
  padding-left: 20px;
}

.directions ul li {
  color: #2C3E50;
  margin-bottom: 8px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, #1B5E20 0%, #145214 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 16px;
}

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

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-section ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 24px 0;
}

.cta-section ul li {
  color: #FFF8E1;
  font-weight: 500;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #1B5E20;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background: #FFF8E1;
  border-color: #FFF8E1;
}

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

.thank-you {
  padding: 80px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-you h1 {
  color: #1B5E20;
  margin-bottom: 24px;
}

.thank-you p {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 20px;
}

.next-steps {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  text-align: left;
}

.next-steps h2 {
  color: #1B5E20;
  margin-bottom: 20px;
  text-align: center;
}

.next-steps ul {
  padding-left: 20px;
}

.next-steps ul li {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 16px;
}

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

.legal-page {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  color: #1B5E20;
  margin-bottom: 32px;
}

.legal-page h2 {
  color: #1B5E20;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  color: #1B5E20;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p {
  color: #2C3E50;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 20px;
  margin: 16px 0;
}

.legal-page ul li {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* ============================================
   FOOTER - MINIMALIST DESIGN
   ============================================ */

footer {
  background: #1B5E20;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

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

.footer-col p {
  color: #E0E0E0;
  margin-bottom: 12px;
  font-size: 14px;
}

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

.footer-col nav a {
  color: #E0E0E0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #FFF8E1;
  padding-left: 4px;
}

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

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

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #2C3E50;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-consent-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept-all {
  background: #1B5E20;
  color: #FFFFFF;
}

.cookie-accept-all:hover {
  background: #145214;
}

.cookie-reject-all {
  background: transparent;
  color: #2C3E50;
  border: 1px solid #E0E0E0;
}

.cookie-reject-all:hover {
  background: #F5F5F5;
}

.cookie-settings {
  background: transparent;
  color: #1B5E20;
  border: 1px solid #1B5E20;
}

.cookie-settings:hover {
  background: #FFF8E1;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.cookie-toggle label {
  color: #2C3E50;
  font-weight: 600;
  cursor: pointer;
}

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

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences {
  background: #1B5E20;
  color: #FFFFFF;
}

.cookie-save-preferences:hover {
  background: #145214;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  p { font-size: 14px; }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

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

  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 24px;
  }

  /* Card layouts - stack on mobile */
  .benefit-card,
  .service-card,
  .value-card,
  .category-card,
  .project-card,
  .testimonial-card,
  .stat-card,
  .contact-card,
  .step,
  .phase,
  .level,
  .milestone {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Footer adjustments */
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Cookie banner adjustments */
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-consent-buttons button {
    width: 100%;
  }

  /* Stats inline */
  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }

  /* Timeline mobile */
  .timeline {
    flex-direction: column;
  }

  /* Process steps mobile */
  .steps,
  .phases {
    flex-direction: column;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .value-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step,
  .phase {
    flex: 1 1 calc(50% - 24px);
  }

  .milestone {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

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

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

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

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

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #FF6F00;
  outline-offset: 2px;
}

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

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }
}

/* ============================================
   END OF COMPREHENSIVE CSS
   ============================================ */