/* ============================================
   VOLTA BOOST - CREATIVE ARTISTIC STYLES
   Green Energy & Sustainability Design
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e9 100%);
  overflow-x: hidden;
}

/* CUSTOM PROPERTIES */
:root {
  --primary-green: #1A5028;
  --secondary-green: #2D7A3E;
  --accent-gold: #F4A623;
  --dark-green: #0d2818;
  --light-green: #e8f5e9;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 80, 40, 0.1);
  --shadow-md: 0 4px 16px rgba(26, 80, 40, 0.15);
  --shadow-lg: 0 8px 32px rgba(26, 80, 40, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-green);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: var(--primary-green);
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--secondary-green);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

ul {
  list-style: none;
  margin-bottom: 24px;
}

li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
}

li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  top: 0;
}

strong {
  color: var(--primary-green);
  font-weight: 600;
}

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

/* HEADER */
header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid var(--accent-gold);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(26, 80, 40, 0.2));
  transition: var(--transition);
}

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

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

.main-nav a {
  color: var(--dark-green);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--light-green), transparent);
  transition: var(--transition);
}

.main-nav a:hover {
  background: var(--light-green);
  color: var(--primary-green);
  text-decoration: none;
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  left: 100%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--accent-gold);
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
  z-index: 1000;
  padding: 80px 20px 20px;
  box-shadow: -4px 0 20px 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: var(--accent-gold);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-left-color: var(--white);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(26, 80, 40, 0.95) 0%, rgba(45, 122, 62, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231A5028" width="1200" height="600"/><circle cx="100" cy="100" r="80" fill="%232D7A3E" opacity="0.3"/><circle cx="1100" cy="500" r="120" fill="%23F4A623" opacity="0.2"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero h1 {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  color: var(--white);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
}

.trust-indicators {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 32px;
}

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

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

section:nth-child(even) {
  background: #bbd1bc;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-proposition > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--secondary-green);
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  border-left: 6px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 20px;
}

.benefit:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-green);
}

.benefit h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 0;
}

/* SERVICES */
.services-overview,
.services-grid {
  background: var(--white);
}

.services-overview h2,
.services-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid .container > h2 + div,
.services-overview .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.service-detail {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before,
.service-detail::before {
  content: '⚡';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  opacity: 0.1;
  transform: rotate(-15deg);
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.service-card h3,
.service-detail h3 {
  margin-bottom: 16px;
  color: var(--primary-green);
}

.service-card p,
.service-detail p {
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 16px 0;
}

.service-detail ul {
  margin-top: 16px;
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 60px 20px;
}

.process h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.process h2::after {
  background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
  left: 50%;
  transform: translateX(-50%);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: rgb(150 4 4 / 69%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgb(150 4 4 / 69%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(244, 166, 35, 0.5);
}

.step:hover {
  background: rgb(150 4 4 / 69%);
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}

.step h3 {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 12px;
}

.step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* STATISTICS */
.statistics {
  background: var(--light-green);
  border-radius: 20px;
  padding: 60px 20px;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-gold);
  transition: var(--transition);
  margin-bottom: 20px;
}

.stat:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-green);
}

.stat h3 {
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--white);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  padding: 32px 28px;
  border-radius: 16px;
  border-left: 6px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 72px;
  color: var(--primary-green);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 600;
  color: var(--primary-green);
  font-style: normal;
  font-size: 14px;
  margin: 0;
}

.rating {
  text-align: center;
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 18px;
  margin-top: 32px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d89410 100%);
  color: #2D7A3E;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-section h2::after {
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
}

/* CONTENT SECTIONS */
.company-story,
.mission-vision,
.values,
.team,
.technology-categories,
.technology-detail,
.eco-house-types,
.eco-house-features,
.new-construction,
.renovation,
.cost-benefit,
.project-showcase,
.testimonials-detailed,
.impact,
.contact-methods,
.location-info,
.service-areas,
.faq-contact,
.legal-text {
  margin-bottom: 60px;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.content-wrapper > div {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

/* HOUSE TYPES & PROJECT SHOWCASE */
.house-type,
.project {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  border: 2px solid var(--light-green);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition);
}

.house-type:hover,
.project:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.project .testimonial {
  background: var(--light-green);
  padding: 16px 20px;
  border-radius: 12px;
  font-style: italic;
  margin-top: 20px;
  border-left: 4px solid var(--primary-green);
}

/* CONTACT FORM */
.contact-form {
  background: var(--white);
  padding: 60px 20px;
}

.form-note {
  background: var(--light-green);
  padding: 32px 28px;
  border-radius: 16px;
  border: 2px dashed var(--primary-green);
  margin: 32px 0;
}

.form-note ul {
  margin-top: 16px;
}

.privacy-note {
  font-size: 14px;
  color: var(--text-dark);
  text-align: center;
  margin-top: 24px;
}

.contact-method {
  background: var(--light-green);
  padding: 32px 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  border-left: 6px solid var(--accent-gold);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(8px);
  border-left-color: var(--primary-green);
}

/* FAQ */
.faq {
  background: var(--white);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid var(--light-green);
  margin-bottom: 20px;
  transition: var(--transition);
}

.faq:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.faq h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 12px;
}

/* NAVIGATION LINKS */
.link-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.resource {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  text-align: center;
  border-top: 4px solid var(--primary-green);
  transition: var(--transition);
}

.resource:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent-gold);
}

/* CONFIRMATION */
.confirmation,
.confirmation-details,
.additional-resources {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-details ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
  counter-reset: step-counter;
  list-style: none;
}

.confirmation-details li {
  counter-increment: step-counter;
  padding-left: 50px;
  margin-bottom: 20px;
  position: relative;
}

.confirmation-details li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-green) 50%, var(--accent-gold) 100%);
}

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

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

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

.footer-section h3 {
  color: var(--accent-gold);
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  padding-left: 16px;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-gold);
  padding-left: 20px;
  text-decoration: none;
}

.footer-nav a:hover::before {
  opacity: 1;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  margin: 0;
  flex: 1 1 400px;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--primary-green);
}

.cookie-category {
  background: var(--light-green);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary-green);
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Grid layouts */
  .benefits-grid,
  .stats-grid,
  .steps {
    flex-direction: column;
  }
  
  .benefit,
  .stat,
  .step,
  .service-card,
  .service-detail {
    flex: 1 1 100%;
  }
  
  /* Content wrapper */
  .content-wrapper {
    flex-direction: column;
  }
  
  .content-wrapper > div {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

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