/* ========================================
   SILENT VERDANT - MODERN BOLD DESIGN
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: 48px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

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

strong {
  font-weight: 700;
  color: #1a1a1a;
}

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

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

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

/* ========================================
   HEADER - MODERN BOLD STYLE
   ======================================== */

header {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #D4C5A9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.cta-button {
  background: #D4C5A9;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 197, 169, 0.3);
  display: none;
}

.cta-button:hover {
  background: #c4b599;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 197, 169, 0.4);
}

/* ========================================
   MOBILE MENU - MODERN BOLD STYLE
   ======================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #D4C5A9;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 900;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1001;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #1a3009 100%);
  z-index: 2000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #D4C5A9;
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 900;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mobile-nav a:hover {
  background: rgba(212, 197, 169, 0.2);
  border-left-color: #D4C5A9;
  transform: translateX(8px);
}

/* ========================================
   BUTTONS - MODERN BOLD STYLE
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-link,
.btn-view-all,
.btn-submit {
  display: inline-block;
  padding: 18px 40px;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 3px solid transparent;
}

.btn-primary {
  background: #2D5016;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
  background: #1a3009;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 80, 22, 0.4);
}

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

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

.btn-link {
  padding: 12px 24px;
  font-size: 16px;
  background: #D4C5A9;
  color: #1a1a1a;
  font-weight: 700;
}

.btn-link:hover {
  background: #c4b599;
  transform: translateX(4px);
}

.btn-view-all {
  margin-top: 40px;
  background: #8B9D83;
  color: #ffffff;
}

.btn-view-all:hover {
  background: #7a8c73;
  transform: translateY(-3px);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  align-items: center;
}

/* ========================================
   HERO SECTION - MODERN BOLD
   ======================================== */

.hero {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 50%, #0d1a04 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.subheadline {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #D4C5A9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PAGE HERO - MODERN BOLD
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #D4C5A9;
}

.page-hero h1 {
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.page-hero p {
  font-size: 22px;
  color: #D4C5A9;
  font-weight: 700;
}

.last-updated {
  font-size: 16px;
  color: #8B9D83;
  margin-top: 16px;
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */

.value-proposition {
  background: #f8f8f8;
  padding: 80px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #2D5016;
}

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

.benefit-item {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 280px;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 8px solid #2D5016;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-left-color: #D4C5A9;
}

.benefit-item h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
  font-weight: 700;
}

/* ========================================
   SERVICES SHOWCASE
   ======================================== */

.services-showcase {
  padding: 80px 20px;
  background: #ffffff;
}

.services-showcase h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #2D5016;
}

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

.service-card {
  background: #f8f8f8;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 320px;
  max-width: 400px;
  border: 4px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #2D5016;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.2);
  background: #ffffff;
}

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

.service-card p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
}

.service-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #2D5016;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.btn-view-all {
  display: block;
  margin: 48px auto 0;
  max-width: 400px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process {
  background: linear-gradient(135deg, #8B9D83 0%, #6d7d65 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
}

.process h2 {
  color: #ffffff;
  margin-bottom: 60px;
}

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

.step {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 240px;
  max-width: 280px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.step:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #D4C5A9;
  transform: scale(1.05);
}

.step h3 {
  color: #D4C5A9;
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 900;
}

.step p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials,
.testimonials-extended {
  background: #f8f8f8;
  padding: 80px 20px;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 8px solid #2D5016;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-card .client-name {
  color: #2D5016;
  font-weight: 900;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ========================================
   TRUST INDICATORS
   ======================================== */

.trust-indicators,
.portfolio-stats {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.trust-indicators h2,
.portfolio-stats h2 {
  margin-bottom: 60px;
  color: #2D5016;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.4);
}

.stat-item h3 {
  font-size: 56px;
  color: #D4C5A9;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-item p {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner,
.cta-section,
.cta-consultation,
.cta-project,
.cta-quote {
  background: linear-gradient(135deg, #D4C5A9 0%, #c4b599 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 8px solid #2D5016;
  border-bottom: 8px solid #2D5016;
}

.cta-banner h2,
.cta-section h2,
.cta-consultation h2,
.cta-project h2,
.cta-quote h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p,
.cta-consultation p,
.cta-project p,
.cta-quote p {
  color: #2D5016;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}

.phone-display {
  font-size: 32px;
  font-weight: 900;
  color: #2D5016;
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.phone-display a {
  color: #2D5016;
}

.phone-display a:hover {
  color: #1a3009;
}

/* ========================================
   FOOTER - MODERN BOLD
   ======================================== */

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #ffffff;
  padding: 60px 20px 32px;
}

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

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.tagline {
  color: #8B9D83;
  font-size: 14px;
  font-style: italic;
}

.footer-column h4 {
  color: #D4C5A9;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-bottom: 3px solid #D4C5A9;
  padding-bottom: 8px;
}

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

.footer-column a {
  color: #cccccc;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-column a:hover {
  color: #D4C5A9;
  border-left-color: #D4C5A9;
  padding-left: 20px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #333333;
}

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

/* ========================================
   STORY & CONTENT SECTIONS
   ======================================== */

.story,
.materials-info,
.customization-info,
.installation-info,
.showroom-info,
.consultation-offer,
.response-time,
.pricing-info {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.story h2,
.materials-info h2,
.customization-info h2,
.installation-info h2,
.showroom-info h2,
.consultation-offer h2,
.response-time h2,
.pricing-info h2 {
  color: #2D5016;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.9;
}

/* ========================================
   VALUES & TIMELINE
   ======================================== */

.values {
  background: #f8f8f8;
  padding: 80px 20px;
}

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

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

.value-item {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 260px;
  max-width: 300px;
  border-top: 6px solid #2D5016;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-top-color: #D4C5A9;
}

.value-item h3 {
  color: #2D5016;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.timeline {
  padding: 80px 20px;
  background: #ffffff;
}

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

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  background: #f8f8f8;
  padding: 32px 40px;
  border-radius: 8px;
  border-left: 8px solid #2D5016;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 32px;
}

.timeline-item:hover {
  transform: translateX(12px);
  border-left-color: #D4C5A9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-item h3 {
  color: #2D5016;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 0;
  min-width: 120px;
}

.timeline-item p {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

/* ========================================
   PRODUCT CATEGORIES
   ======================================== */

.product-categories {
  padding: 80px 20px;
  background: #f8f8f8;
}

.product-categories h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

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

.category-card {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 8px;
  flex: 1 1 300px;
  max-width: 380px;
  border: 4px solid #2D5016;
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover {
  background: #2D5016;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.3);
}

.category-card h3 {
  color: #2D5016;
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.category-card:hover h3 {
  color: #D4C5A9;
}

.category-card p {
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.category-card:hover p {
  color: #ffffff;
}

/* ========================================
   MATERIALS & CUSTOMIZATION
   ======================================== */

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

.material-item {
  background: #f8f8f8;
  padding: 32px 28px;
  border-radius: 8px;
  flex: 1 1 240px;
  max-width: 280px;
  border-top: 6px solid #8B9D83;
  transition: all 0.3s ease;
}

.material-item:hover {
  transform: translateY(-6px);
  border-top-color: #2D5016;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.material-item h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 900;
}

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

.customization-info {
  background: #ffffff;
  text-align: center;
}

.customization-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  padding-left: 0;
}

.customization-options li {
  background: #2D5016;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.customization-options li:hover {
  background: #D4C5A9;
  color: #1a1a1a;
  transform: scale(1.05);
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio-grid {
  padding: 80px 20px;
  background: #ffffff;
}

.portfolio-grid h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

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

.project-card {
  background: #f8f8f8;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 320px;
  max-width: 400px;
  border-left: 8px solid #2D5016;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-left-color: #D4C5A9;
}

.project-card h3 {
  color: #2D5016;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 900;
}

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

.project-year {
  color: #8B9D83;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

.case-study-featured {
  background: #f8f8f8;
  padding: 80px 20px;
}

.case-study-featured h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 48px;
}

.case-study {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  border: 4px solid #2D5016;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.case-study h3 {
  color: #2D5016;
  font-size: 32px;
  margin-bottom: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study p {
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.case-study strong {
  color: #2D5016;
  font-weight: 900;
}

/* ========================================
   SERVICES DETAILED
   ======================================== */

.services-detailed {
  padding: 80px 20px;
}

.services-detailed h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

.service-detail {
  background: #f8f8f8;
  padding: 40px 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 8px solid #2D5016;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail h3 {
  color: #2D5016;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail p {
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.8;
}

.service-detail .price {
  font-size: 36px;
  font-weight: 900;
  color: #2D5016;
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  display: block;
}

.service-process {
  background: #f8f8f8;
  padding: 80px 20px;
}

.service-process h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

/* ========================================
   FAQS
   ======================================== */

.faqs-services {
  padding: 80px 20px;
  background: #ffffff;
}

.faqs-services h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

.faq-item {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 6px solid #8B9D83;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #2D5016;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

.contact-info {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.contact-info h2 {
  color: #2D5016;
  margin-bottom: 40px;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 8px;
  border: 4px solid #2D5016;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-details p {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-details strong {
  color: #2D5016;
  font-weight: 900;
  font-size: 24px;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-details a {
  color: #2D5016;
  font-weight: 700;
  text-decoration: underline;
}

.contact-details a:hover {
  color: #1a3009;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-form-section h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 24px;
}

.contact-form-section > p {
  text-align: center;
  color: #4a4a4a;
  font-size: 18px;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #f8f8f8;
  padding: 48px 40px;
  border-radius: 8px;
  border: 3px solid #2D5016;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #2D5016;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-field,
.textarea-field {
  padding: 16px 20px;
  border: 3px solid #8B9D83;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #2D5016;
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-field label a {
  color: #2D5016;
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 16px;
}

/* ========================================
   BENEFITS & LISTS
   ======================================== */

.benefits-list,
.response-list,
.included-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  padding-left: 0;
}

.benefits-list li,
.response-list li,
.included-list li {
  background: #f8f8f8;
  padding: 20px 24px;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  border-left: 6px solid #2D5016;
  transition: all 0.3s ease;
}

.benefits-list li:hover,
.response-list li:hover,
.included-list li:hover {
  background: #2D5016;
  color: #ffffff;
  transform: translateX(8px);
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2D5016;
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid #2D5016;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.legal-content a {
  color: #2D5016;
  font-weight: 700;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1a3009;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #D4C5A9;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.next-steps {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}

.next-steps h2 {
  color: #2D5016;
  margin-bottom: 40px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}

.steps-list li {
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  border-left: 8px solid #2D5016;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.estimated-response {
  margin-top: 32px;
  font-size: 20px;
  color: #2D5016;
  font-weight: 900;
}

.additional-resources {
  padding: 80px 20px;
  background: #ffffff;
}

.additional-resources h2 {
  text-align: center;
  color: #2D5016;
  margin-bottom: 60px;
}

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

.resource-card {
  background: #f8f8f8;
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  border: 3px solid #8B9D83;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: #2D5016;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: #2D5016;
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 900;
}

.urgent-contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #D4C5A9 0%, #c4b599 100%);
  text-align: center;
}

.urgent-contact h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}

.urgent-contact p {
  color: #2D5016;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.phone-hours {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 32px;
}

.return-home {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2D5016 100%);
  color: #ffffff;
  padding: 24px 20px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background: #2D5016;
  color: #ffffff;
  border: 2px solid #2D5016;
}

.cookie-accept:hover {
  background: #1a3009;
  border-color: #1a3009;
}

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

.cookie-reject:hover {
  background: #ffffff;
  color: #1a1a1a;
}

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

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #2D5016;
  color: #ffffff;
  font-size: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #1a3009;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2D5016;
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 900;
}

.cookie-category {
  margin-bottom: 28px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
  border-left: 4px solid #8B9D83;
}

.cookie-category h3 {
  color: #2D5016;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle.active {
  background: #2D5016;
}

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

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

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

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 56px;
  }

  h3 {
    font-size: 36px;
  }

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

  .cta-button {
    display: inline-block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero {
    padding: 140px 20px;
  }

  .page-hero {
    padding: 120px 20px;
  }

  .section {
    padding: 80px 20px;
  }

  .subheadline {
    font-size: 28px;
  }

  .timeline-item {
    flex-direction: row;
  }

  .cta-group {
    justify-content: center;
  }

  .footer-content {
    justify-content: space-between;
  }
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 64px;
  }

  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 160px 20px;
  }

  .section {
    padding: 100px 20px;
  }

  .service-card,
  .project-card,
  .benefit-item {
    flex: 1 1 calc(33.333% - 32px);
  }

  .stat-item {
    flex: 1 1 calc(25% - 40px);
  }
}

/* ========================================
   MOBILE-SPECIFIC ADJUSTMENTS
   ======================================== */

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .hero {
    padding: 60px 20px;
  }

  .page-hero {
    padding: 60px 20px;
  }

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

  .subheadline {
    font-size: 18px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .phone-display {
    font-size: 24px;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item h3 {
    min-width: auto;
  }

  .service-card,
  .project-card,
  .benefit-item,
  .stat-item,
  .category-card,
  .value-item,
  .material-item,
  .resource-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cookie-banner .container {
    flex-direction: column;
  }

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

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

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations */
.hero .container,
.page-hero .container {
  animation: fadeIn 0.8s ease-out;
}

.mobile-menu.active {
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

*:focus {
  outline: 3px solid #D4C5A9;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #D4C5A9;
}

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

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* ========================================
   END OF STYLES
   ======================================== */