/* ========================================
   SPARK MEADOW - SCANDINAVIAN CLEAN DESIGN
   ======================================== */

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

/* Typography - Scandinavian Clean */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #7FB069;
}

ul {
  list-style: none;
}

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

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

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 20px 0;
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2D5016;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #7FB069;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5016;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 24px 24px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  color: #7FB069;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: #2D5016;
  border-bottom: 1px solid #E8DCC4;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #f5f0e8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 24px;
}

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

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

/* Buttons - Scandinavian Minimalist */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

.btn-primary:hover {
  background-color: #7FB069;
  border-color: #7FB069;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background-color: #2D5016;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.15);
}

/* Hero Inner Pages */
.hero-inner {
  background-color: #E8DCC4;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-inner h1 {
  font-size: 40px;
  color: #2D5016;
}

.hero-inner p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 16px auto 0;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition */
.value-proposition {
  background-color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  background-color: #f9f9f9;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #7FB069;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2D5016;
}

.benefit-item p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 0;
}

/* Services Grid */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  border-color: #7FB069;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 22px;
  color: #2D5016;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #4a4a4a;
  flex-grow: 1;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #2D5016;
  margin-top: 16px;
  margin-bottom: 0;
}

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

/* Process Steps */
.process {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 4px solid #7FB069;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Benefits Detailed */
.benefits {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit-detailed {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #f9f9f9;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.benefit-detailed h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.benefit-detailed p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background-color: #E8DCC4;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2D5016;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  color: #2c2c2c;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-size: 14px;
  color: #4a4a4a;
  font-style: normal;
  margin-top: 8px;
}

.testimonial-card .author strong {
  color: #2D5016;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #7FB069 0%, #2D5016 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}

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

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

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #2D5016;
  border-color: #ffffff;
}

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

.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2D5016;
}

.trust-element {
  font-size: 14px;
  color: #ffffff;
  margin-top: 24px;
  opacity: 0.9;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-detail {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  margin-bottom: 32px;
}

.service-detail h2 {
  font-size: 28px;
  color: #2D5016;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-detail ul li {
  font-size: 15px;
  color: #4a4a4a;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-detail ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
}

.service-detail .ideal-for {
  font-size: 15px;
  color: #666666;
  font-style: italic;
  background-color: #f9f9f9;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
}

/* FAQ */
.faq {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #f9f9f9;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #e8e8e8;
}

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

.faq-item p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Projects Showcase */
.projects-showcase {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.project-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  margin-bottom: 32px;
  position: relative;
}

.project-card h2 {
  font-size: 26px;
  color: #2D5016;
  margin-bottom: 12px;
}

.project-card .category {
  font-size: 14px;
  color: #7FB069;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-card p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.project-card p strong {
  color: #2D5016;
  font-weight: 600;
}

/* Project Stats */
.project-stats {
  background: linear-gradient(135deg, #E8DCC4 0%, #f5f0e8 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.project-stats h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* About - Story, Mission, Vision */
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-vision {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.mission, .vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #7FB069;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mission h2, .vision h2 {
  font-size: 26px;
  color: #2D5016;
  margin-bottom: 16px;
}

.mission p, .vision p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Values */
.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.value {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #f9f9f9;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.value h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 12px;
}

.value p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Team */
.team {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.team-member h3 {
  font-size: 22px;
  color: #2D5016;
  margin-bottom: 8px;
}

.team-member .position {
  font-size: 14px;
  color: #7FB069;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Consultation */
.consultation-intro {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.consultation-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.consultation-intro p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.consultation-intro ul {
  max-width: 600px;
  margin: 32px auto 0;
  list-style: none;
  padding-left: 0;
}

.consultation-intro ul li {
  font-size: 15px;
  color: #4a4a4a;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.consultation-intro ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
}

.consultation-process {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.consultation-process h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.consultation-options h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover {
  border-color: #7FB069;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.option h3 {
  font-size: 22px;
  color: #2D5016;
  margin-bottom: 16px;
}

.option .duration {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}

.option .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 24px;
}

.option ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.option ul li {
  font-size: 15px;
  color: #4a4a4a;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.option ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
}

/* Contact */
.contact-intro {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 24px;
}

.contact-intro p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.contact-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-item h3 {
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 16px;
}

.contact-item p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-item a {
  color: #2D5016;
  font-weight: 600;
}

.contact-item a:hover {
  color: #7FB069;
}

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

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.form-note {
  background-color: #E8DCC4;
  padding: 24px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.form-note p {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 0;
  text-align: center;
}

.contact-reasons {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-reasons h2 {
  text-align: center;
  margin-bottom: 32px;
}

.contact-reasons ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}

.contact-reasons ul li {
  font-size: 16px;
  color: #4a4a4a;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}

.contact-reasons ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
  font-size: 18px;
}

.showroom-info {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.showroom-info h2 {
  margin-bottom: 24px;
}

.showroom-info p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  font-size: 24px;
  color: #2D5016;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #7FB069 0%, #2D5016 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  color: #ffffff;
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.success-message {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0;
}

.confirmation {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.confirmation h2 {
  margin-bottom: 32px;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.next-steps .step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background-color: #f9f9f9;
  padding: 32px 24px;
  border-radius: 8px;
  border-left: 4px solid #7FB069;
}

.next-steps .step p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 0;
}

.email-note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 32px;
}

.next-suggestions {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-suggestions h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.suggestion {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.suggestion h3 {
  font-size: 22px;
  color: #2D5016;
  margin-bottom: 16px;
}

.suggestion p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 24px;
}

.contact-reminder p {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 8px;
}

/* Footer */
footer {
  background-color: #2D5016;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-section p {
  font-size: 14px;
  color: #E8DCC4;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

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

.footer-nav a:hover {
  color: #7FB069;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.3);
  padding-top: 24px;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D5016;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.5;
  color: #E8DCC4;
}

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

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

.cookie-btn-accept {
  background-color: #7FB069;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #6a9a57;
}

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

.cookie-btn-reject:hover {
  background-color: rgba(232, 220, 196, 0.1);
}

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

.cookie-btn-settings:hover {
  background-color: rgba(232, 220, 196, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  font-size: 24px;
  color: #2D5016;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #4a4a4a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2D5016;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category-header h3 {
  font-size: 18px;
  color: #2D5016;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background-color: #7FB069;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-toggle.active:after {
  transform: translateX(24px);
}

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

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

.cookie-modal-actions .cookie-btn {
  flex: 1;
  min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

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

  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

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

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

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .benefits-detailed,
  .testimonial-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .options-grid,
  .contact-grid,
  .suggestions-grid,
  .footer-content {
    flex-direction: column;
  }

  .benefit-item,
  .service-card,
  .step,
  .benefit-detailed,
  .testimonial-card,
  .stat,
  .value,
  .team-member,
  .option,
  .contact-item,
  .suggestion,
  .footer-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mission-vision-grid {
    flex-direction: column;
  }

  .mission,
  .vision {
    flex: 1 1 100%;
  }

  /* Sections padding */
  .section,
  .hero,
  .hero-inner,
  .value-proposition,
  .services-overview,
  .process,
  .benefits,
  .testimonials,
  .cta-section,
  .services-detailed,
  .faq,
  .projects-showcase,
  .project-stats,
  .story,
  .mission-vision,
  .values,
  .team,
  .consultation-intro,
  .consultation-process,
  .consultation-options,
  .contact-intro,
  .contact-info,
  .contact-form-section,
  .contact-reasons,
  .showroom-info,
  .legal-content,
  .thank-you-hero,
  .confirmation,
  .next-suggestions,
  .contact-reminder,
  footer {
    padding: 40px 16px;
  }

  /* Service detail */
  .service-detail {
    padding: 24px;
  }

  /* Project card */
  .project-card {
    padding: 24px;
  }

  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

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

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

  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .hero-inner h1 {
    font-size: 24px;
  }

  .stat-number {
    font-size: 32px;
  }
}

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

.hero-content,
.service-card,
.benefit-item,
.testimonial-card,
.project-card {
  animation: fadeIn 0.6s ease-out;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #7FB069;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section,
  .cta-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  a {
    color: #2D5016;
    text-decoration: underline;
  }
}