/* ===================================
   FarnePelis - Creative Artistic CSS
   Design Style: Creative & Artistic
   ================================== */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1F4620;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 15px;
}

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

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C5F2D;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #444;
}

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

a:hover {
  color: #D68A3C;
  transform: translateX(3px);
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #444;
}

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

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

/* === Header === */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(31, 70, 32, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 3px solid #D68A3C;
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1F4620;
  padding: 8px 12px;
  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: linear-gradient(90deg, #D68A3C 0%, #F4A460 100%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #D68A3C;
  background: rgba(214, 138, 60, 0.1);
  transform: translateY(-2px);
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(31, 70, 32, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(31, 70, 32, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1F4620 0%, #2C5F2D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(214, 138, 60, 0.3);
  border-color: #D68A3C;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(214, 138, 60, 0.3);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.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:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(31, 70, 32, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(31, 70, 32, 0.4);
  border-color: #D68A3C;
}

.btn-secondary {
  background: transparent;
  color: #2C5F2D;
  border: 3px solid #2C5F2D;
  box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.95) 0%, rgba(44, 95, 45, 0.9) 100%), url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%231F4620"/%3E%3Cpath d="M50 0L100 50L50 100L0 50Z" fill="%232C5F2D" opacity="0.3"/%3E%3C/svg%3E');
  background-size: cover, 200px 200px;
  background-position: center, center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 138, 60, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  animation: slideInDown 0.8s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #F0F0F0;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.5s backwards;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.trust-indicators span {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(214, 138, 60, 0.4);
}

/* === Hero Internal === */
.hero-internal {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(31, 70, 32, 0.95) 100%), url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%232C5F2D"/%3E%3Ccircle cx="50" cy="50" r="40" fill="%231F4620" opacity="0.4"/%3E%3C/svg%3E');
  background-size: cover, 150px 150px;
  padding: 80px 24px 60px;
  margin-bottom: 60px;
  position: relative;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #F0F0F0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumbs a {
  color: #D68A3C;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #F4A460;
  text-decoration: underline;
}

.hero-internal h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.hero-internal .hero-subtitle {
  color: #F0F0F0;
}

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

.section-subtitle, .section-intro {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === Services Grid === */
.services-overview, .services-detailed, .pricing-table {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.services-grid, .benefits-grid, .process-steps, .testimonials-grid, .projects-grid, .stats-grid, .values-grid, .milestones, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card, .benefit-item, .step, .testimonial-card, .project-card, .stat-item, .value-item, .milestone, .contact-method, .pricing-item, .service-detail {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(31, 70, 32, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before, .benefit-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 138, 60, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.service-card:hover::before {
  transform: rotate(90deg) scale(1.2);
}

.service-card:hover, .benefit-item:hover, .project-card:hover, .pricing-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(31, 70, 32, 0.2);
  border-color: #D68A3C;
}

.service-card h3, .benefit-item h3, .project-card h3, .pricing-item h3, .service-detail h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p, .benefit-item p, .project-card p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #D68A3C;
  font-weight: 700;
  margin: 20px 0;
  display: block;
}

.location {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-bottom: 12px;
}

/* === Benefits Section === */
.benefits {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  border-radius: 20px;
  padding: 60px 40px;
}

.benefit-item {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
}

/* === Process Steps === */
.process {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #D68A3C 0%, #F4A460 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(214, 138, 60, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 30px rgba(214, 138, 60, 0.5);
}

/* === Testimonials === */
.testimonials, .testimonials-extended {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-left: 5px solid #D68A3C;
  box-shadow: 0 8px 25px rgba(31, 70, 32, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.rating {
  color: #D68A3C;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

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

.author {
  font-weight: 700;
  color: #1F4620 !important;
  font-style: normal !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overall-rating {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: #2C5F2D;
  margin-top: 32px;
  font-weight: 700;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  padding: 80px 40px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  box-shadow: 0 15px 50px rgba(31, 70, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="50" cy="50" r="30" fill="%23D68A3C" opacity="0.1"/%3E%3C/svg%3E');
  animation: rotate 30s linear infinite;
}

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

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}

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

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

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

.contact-info {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
  color: #F0F0F0;
  font-size: 16px;
  margin-bottom: 8px;
}

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

.benefits-list span {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

/* === About Story === */
.about-story, .values, .certifications {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.milestones {
  margin-top: 40px;
  justify-content: center;
}

.milestone {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(214, 138, 60, 0.1) 0%, rgba(244, 164, 96, 0.1) 100%);
  border: 3px solid #D68A3C;
}

.milestone h3 {
  font-size: 36px;
  color: #D68A3C;
  margin-bottom: 8px;
}

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

/* === Values Grid === */
.values-grid {
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
}

/* === Services Detailed === */
.service-detail {
  flex: 1 1 100%;
  margin-bottom: 40px;
  padding: 40px;
  border-left: 5px solid #D68A3C;
}

.features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features li {
  padding-left: 32px;
  position: relative;
  color: #555;
}

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

/* === Additional Services === */
.additional-services {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

.services-list {
  max-width: 700px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li {
  padding: 20px 20px 20px 50px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #D68A3C;
  font-size: 20px;
  font-weight: 700;
}

.services-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(31, 70, 32, 0.15);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F0 100%);
}

/* === Portfolio/Projects Grid === */
.portfolio-grid, .stats {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

/* === Stats === */
.stats-grid {
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  padding: 40px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(31, 70, 32, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(31, 70, 32, 0.4);
}

.stat-item h3 {
  color: #D68A3C;
  font-size: 48px;
  margin-bottom: 12px;
}

.stat-item p {
  color: #F0F0F0;
  font-size: 16px;
}

/* === Pricing === */
.pricing-intro {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}

.pricing-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  border: 3px solid #D68A3C;
}

.pricing-item .price {
  font-size: 32px;
  color: #2C5F2D;
  margin: 24px 0;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.includes li {
  padding-left: 32px;
  position: relative;
  color: #555;
}

.includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
  font-size: 18px;
}

/* === Additional Costs === */
.additional-costs, .guarantees {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.costs-list, .warranty-list {
  max-width: 700px;
  margin: 32px auto 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.costs-list li, .warranty-list li {
  padding: 16px 16px 16px 50px;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  border-radius: 12px;
  border-left: 4px solid #D68A3C;
  position: relative;
  transition: all 0.3s ease;
}

.costs-list li::before, .warranty-list li::before {
  content: '•';
  position: absolute;
  left: 20px;
  color: #D68A3C;
  font-size: 24px;
  font-weight: 700;
}

.costs-list li:hover, .warranty-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.1);
}

/* === Contact Page === */
.contact-methods {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  border: 3px solid #2C5F2D;
}

.contact-value {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #2C5F2D;
  font-weight: 600;
  margin: 16px 0;
}

.contact-note {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* === Contact Form === */
.contact-form-section {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

.form-container {
  max-width: 600px;
  margin: 32px auto 0;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(31, 70, 32, 0.1);
}

.form-info, .form-note {
  text-align: center;
  color: #555;
  line-height: 1.8;
}

.form-note {
  font-size: 14px;
  margin-top: 20px;
  color: #888;
}

/* === Service Area === */
.service-area {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
  text-align: center;
}

.service-area .note {
  color: #888;
  font-style: italic;
  margin-top: 20px;
}

/* === FAQ === */
.faq-contact {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 5px solid #D68A3C;
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(31, 70, 32, 0.15);
}

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

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

/* === Legal Content === */
.legal-content {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.contact-legal {
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
}

.contact-legal h2 {
  color: #FFFFFF;
}

.contact-legal p {
  color: #F0F0F0;
}

/* === Thank You Page === */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  padding: 100px 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D68A3C 0%, #F4A460 100%);
  color: #FFFFFF;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 30px rgba(214, 138, 60, 0.4);
  animation: scaleIn 0.6s ease-out;
}

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

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 40px;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #F0F0F0;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #F0F0F0;
  font-size: 16px;
}

/* === Next Steps === */
.next-steps {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

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

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.1);
  margin-bottom: 20px;
}

.step-item .step-number {
  margin-bottom: 16px;
}

.step-item p {
  color: #555;
  font-size: 14px;
}

/* === Contact Confirmation === */
.contact-confirmation {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
}

.contact-detail {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #2C5F2D;
  font-weight: 600;
  margin: 12px 0;
}

/* === Additional Resources === */
.additional-resources {
  background: #FFFFFF;
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 70, 32, 0.1);
}

.resources-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.resource-link {
  padding: 16px 32px;
  background: linear-gradient(135deg, #2C5F2D 0%, #1F4620 100%);
  color: #FFFFFF;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.3);
}

.resource-link:hover {
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(31, 70, 32, 0.4);
}

/* === Social Proof Mini === */
.social-proof-mini {
  background: linear-gradient(135deg, rgba(31, 70, 32, 0.05) 0%, rgba(214, 138, 60, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

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

.stat-mini {
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(31, 70, 32, 0.1);
  min-width: 200px;
}

.stat-mini strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #D68A3C;
  margin-bottom: 8px;
}

.stat-mini span {
  color: #555;
  font-size: 14px;
}

/* === Footer === */
footer {
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  color: #FFFFFF;
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #D68A3C 0%, #F4A460 50%, #D68A3C 100%);
}

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

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-column h4 {
  color: #D68A3C;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #E0E0E0;
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: #E0E0E0;
  margin-bottom: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
  padding-left: 20px;
  position: relative;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #D68A3C;
  padding-left: 24px;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #E0E0E0;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #E0E0E0;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #D68A3C;
  background: rgba(214, 138, 60, 0.2);
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1F4620 0%, #2C5F2D 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D68A3C;
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  margin: 0;
  color: #E0E0E0;
  line-height: 1.6;
}

.cookie-text a {
  color: #D68A3C;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D68A3C 0%, #F4A460 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(214, 138, 60, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #F4A460 0%, #D68A3C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 138, 60, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.cookie-btn-settings:hover {
  background: rgba(214, 138, 60, 0.1);
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s ease-out;
  border: 3px solid #D68A3C;
}

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

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

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid #E0E0E0;
}

.cookie-category h4 {
  color: #1F4620;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #2C5F2D;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
  transform: translateX(30px);
}

.cookie-toggle span {
  color: #555;
  font-size: 14px;
}

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

/* === Responsive Design === */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Grids */
  .service-card, .benefit-item, .step, .testimonial-card, .project-card, .stat-item, .value-item, .milestone, .contact-method, .pricing-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
    min-width: calc(50% - 24px);
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 24px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* === Print Styles === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}

/* === Accessibility === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #D68A3C;
  outline-offset: 2px;
}

/* === Smooth Scrolling === */
html {
  scroll-behavior: smooth;
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}