/* CSS Reset and Base Styles */
* {
  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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 50%, #e8f5e9 100%);
  overflow-x: hidden;
}

/* Typography - Vibrant and Energetic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3a0f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.1);
}

h2 {
  font-size: 36px;
  color: #2D5016;
}

h3 {
  font-size: 24px;
  color: #2D5016;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #c88f3f;
  transform: translateY(-2px);
}

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

/* Header - Energetic and Bold */
header {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1c 100%);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #E8B86D;
}

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

.logo a {
  display: flex;
  align-items: center;
  font-family: 'Merriweather', serif;
  font-size: 28px;
  font-weight: 700;
  color: #E8B86D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.logo img {
  height: 50px;
  width: auto;
  margin-right: 12px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #E8B86D;
  transition: width 0.3s ease;
}

.main-nav a:hover::before {
  width: 80%;
}

.main-nav a:hover {
  background: rgba(232, 184, 109, 0.2);
  transform: translateY(-3px);
  color: #E8B86D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #E8B86D;
  color: #1a3a0f;
  border: none;
  font-size: 32px;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.4);
  transition: all 0.3s ease;
  font-weight: bold;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: #d4a055;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 16px rgba(232, 184, 109, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #2D5016 0%, #1a3a0f 100%);
  z-index: 2000;
  padding: 32px 24px;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
  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: 24px;
  right: 24px;
  background: #E8B86D;
  color: #1a3a0f;
  border: none;
  font-size: 36px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.4);
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

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

.mobile-nav a:hover {
  background: rgba(232, 184, 109, 0.3);
  transform: translateX(12px);
  border-left-width: 8px;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.3);
}

/* Hero Section - Electric and Dynamic */
.hero, .page-hero, .error-hero, .legal-hero, .thank-you-hero {
  background: linear-gradient(135deg, #2D5016 0%, #4a7a25 50%, #E8B86D 100%);
  color: #ffffff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #E8B86D;
}

.hero::before, .page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.3) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero .container, .page-hero .container, .error-hero .container, .legal-hero .container, .thank-you-hero .container {
  position: relative;
  z-index: 1;
}

.hero h1, .page-hero h1, .error-hero h1, .legal-hero h1, .thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 52px;
  text-shadow: 3px 3px 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, .page-hero p, .error-hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #f5f5f5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons - Bold and Energetic */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary, .btn-secondary, .btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-secondary::before, .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 ease, height 0.6s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E8B86D 0%, #d4a055 100%);
  color: #1a3a0f;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #E8B86D;
}

.btn-secondary:hover {
  background: #E8B86D;
  color: #1a3a0f;
  transform: translateY(-5px) scale(1.05);
  border-color: #d4a055;
}

.btn {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1c 100%);
  color: #ffffff;
  padding: 14px 32px;
  font-size: 16px;
}

.btn:hover {
  background: linear-gradient(135deg, #3a6b1c 0%, #4a7a25 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.4);
}

/* Trust Badge */
.trust-badge {
  display: inline-block;
  background: rgba(232, 184, 109, 0.2);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid #E8B86D;
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections - Vibrant Spacing */
.section, section {
  padding: 60px 24px;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Service Grid - Flexbox Layout */
.service-grid, .benefits-grid, .values-grid, .stats-grid, .methods-grid, .category-grid, .page-grid, .project-grid, .article-grid, .links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* Service Cards - High Energy */
.service-card, .benefit, .value, .method, .category, .page-card, .project-card, .featured-article, .link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E8B86D 0%, #2D5016 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover, .benefit:hover, .value:hover, .method:hover, .category:hover, .page-card:hover, .project-card:hover, .featured-article:hover, .link-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 40px rgba(45, 80, 22, 0.25);
  border-color: #E8B86D;
}

.service-card h3, .benefit h3, .value h3, .method h3, .category h3, .page-card h3, .project-card h3, .featured-article h3, .link-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p, .benefit p, .value p, .method p, .page-card p, .project-card p, .featured-article p, .link-card p {
  color: #444;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E8B86D;
  margin-top: 16px;
  display: block;
  text-shadow: 1px 1px 2px rgba(232, 184, 109, 0.3);
}

/* Features List */
.features {
  list-style: none;
  margin-top: 20px;
}

.features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #333;
  font-size: 15px;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: bold;
  font-size: 18px;
}

/* Stats Section - Bold Numbers */
.stats, .project-stats {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1c 100%);
  padding: 60px 24px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.3);
}

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

.stat {
  flex: 1 1 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid rgba(232, 184, 109, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(232, 184, 109, 0.2);
  transform: scale(1.1);
  border-color: #E8B86D;
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E8B86D;
  margin-bottom: 12px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.stat .label {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* Testimonials - Strong Contrast */
.testimonials {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 24px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-left: 6px solid #E8B86D;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.25);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 184, 109, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.testimonial-card .author {
  color: #2D5016;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0;
  font-style: italic;
}

/* CTA Banner - Electric Energy */
.cta-banner {
  background: linear-gradient(135deg, #E8B86D 0%, #d4a055 50%, #c88f3f 100%);
  color: #1a3a0f;
  padding: 60px 24px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(232, 184, 109, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.cta-banner h2 {
  color: #1a3a0f;
  margin-bottom: 20px;
  font-size: 38px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 28px;
  color: #2a2a2a;
  font-weight: 600;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 24px;
  background: #ffffff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.1);
  border-left: 8px solid #E8B86D;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(12px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.2);
  border-left-width: 12px;
}

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

.service-item .price {
  font-size: 28px;
  color: #E8B86D;
  margin: 20px 0;
  font-weight: 700;
}

.service-item ul {
  list-style: none;
  margin-top: 24px;
}

.service-item ul li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: #333;
  font-size: 16px;
}

.service-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: bold;
  font-size: 20px;
}

/* Blog/Articles */
.blog-featured, .blog-categories {
  padding: 60px 24px;
  margin-bottom: 40px;
}

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

.featured-article {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  position: relative;
}

.category {
  display: inline-block;
  background: #E8B86D;
  color: #1a3a0f;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px;
  letter-spacing: 1px;
}

.category-grid .category {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
}

.category-grid .category span {
  display: block;
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

/* Project Showcase */
.project-card {
  position: relative;
}

.project-details {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.project-details li {
  background: rgba(232, 184, 109, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  color: #2D5016;
  font-weight: 600;
  font-size: 14px;
}

/* Contact Page */
.contact-methods, .contact-form-section, .appointment-booking, .location, .business-hours {
  padding: 60px 24px;
  margin-bottom: 40px;
}

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

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

.form-info {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
  border: 3px solid #E8B86D;
  max-width: 700px;
  margin: 0 auto;
}

.form-fields-info {
  list-style: none;
  margin: 24px 0;
}

.form-fields-info li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333;
  font-size: 16px;
}

.form-fields-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E8B86D;
  font-size: 24px;
  font-weight: bold;
}

.location-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.address {
  flex: 1 1 400px;
}

.hours-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
}

.hours-list li {
  padding: 16px 24px;
  background: #f9f9f9;
  margin-bottom: 12px;
  border-radius: 12px;
  border-left: 4px solid #E8B86D;
  font-size: 16px;
}

.note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(232, 184, 109, 0.1);
  border-radius: 12px;
  font-style: italic;
  color: #555;
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
  animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.confirmation {
  background: rgba(76, 175, 80, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid #4CAF50;
  margin-top: 20px;
  font-weight: 600;
}

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  text-align: center;
  border-top: 4px solid #E8B86D;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

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

/* 404 Error Page */
.error-code {
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: glitch 2s ease-in-out infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
}

.popular-pages, .help-section {
  padding: 60px 24px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #2D5016;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #3a6b1c;
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: #333;
}

.legal-navigation {
  padding: 40px 24px;
  background: #f9f9f9;
  text-align: center;
}

.legal-navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.legal-navigation nav a {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #E8B86D;
  border-radius: 30px;
  color: #2D5016;
  font-weight: 600;
  transition: all 0.3s ease;
}

.legal-navigation nav a:hover {
  background: #E8B86D;
  color: #1a3a0f;
  transform: translateY(-4px);
}

.contact-box {
  background: rgba(232, 184, 109, 0.1);
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid #E8B86D;
  margin-top: 40px;
}

/* Footer - Bold and Vibrant */
footer {
  background: linear-gradient(135deg, #1a3a0f 0%, #2D5016 100%);
  color: #ffffff;
  padding: 60px 24px 24px;
  border-top: 6px solid #E8B86D;
  box-shadow: 0 -8px 24px rgba(45, 80, 22, 0.3);
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3, .footer-section h4 {
  color: #E8B86D;
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 15px;
}

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

.footer-nav a {
  color: #e0e0e0;
  transition: all 0.3s ease;
  padding-left: 20px;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8B86D;
  transition: left 0.3s ease;
}

.footer-nav a:hover {
  color: #E8B86D;
  padding-left: 28px;
}

.footer-nav a:hover::before {
  left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(232, 184, 109, 0.3);
  color: #b0b0b0;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a0f 0%, #2D5016 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -8px 24px rgba(45, 80, 22, 0.4);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E8B86D;
}

.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 {
  flex: 1 1 300px;
  margin: 0;
  font-size: 15px;
  color: #e0e0e0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #E8B86D;
  color: #1a3a0f;
}

.cookie-accept:hover {
  background: #d4a055;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(232, 184, 109, 0.4);
}

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

.cookie-reject:hover {
  background: rgba(232, 184, 109, 0.2);
  transform: scale(1.05);
}

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

.cookie-settings:hover {
  background: rgba(232, 184, 109, 0.1);
  transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid #E8B86D;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2D5016;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-save {
  background: #2D5016;
  color: #ffffff;
}

.cookie-save:hover {
  background: #3a6b1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.cookie-close {
  background: #E8B86D;
  color: #1a3a0f;
}

.cookie-close:hover {
  background: #d4a055;
  transform: translateY(-2px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .container {
    padding: 12px 20px;
  }
  
  .logo a {
    font-size: 22px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero, .page-hero, .error-hero, .legal-hero, .thank-you-hero {
    padding: 50px 20px;
  }
  
  .hero h1, .page-hero h1, .error-hero h1, .legal-hero h1, .thank-you-hero h1 {
    font-size: 36px;
  }
  
  .hero p, .page-hero p, .error-hero p {
    font-size: 17px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary, .btn {
    width: 100%;
    text-align: center;
  }
  
  .service-grid, .benefits-grid, .values-grid, .stats-grid, .methods-grid, .category-grid, .page-grid, .project-grid, .article-grid, .links-grid {
    flex-direction: column;
  }
  
  .service-card, .benefit, .value, .method, .category, .page-card, .project-card, .featured-article, .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .stat .number {
    font-size: 40px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .location-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .benefit, .value, .page-card, .project-card, .featured-article {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Smooth Animations */
* {
  transition-property: transform, box-shadow, background, color, border;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background: white;
  }
}