/* ===================================
   VORTEX RIDE - GRADIENT MODERN DESIGN
   CSS Reset & 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.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #34495e;
}

strong {
  font-weight: 600;
  color: #2D5016;
}

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

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #2D5016, #7CB342, #FFC107);
  border-image-slice: 1;
}

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

header img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(45, 80, 22, 0.2));
}

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

header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2D5016;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #7CB342, #FFC107);
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #7CB342;
}

header nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 179, 66, 0.4);
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: #FFC107;
  transform: translateX(8px);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  color: #ffffff;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #2D5016;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 50%, #7CB342 100%);
  color: #ffffff;
  padding: 100px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 56px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #2D5016;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
  background: linear-gradient(135deg, #ff9800 0%, #FFC107 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-page {
  background: linear-gradient(135deg, #2D5016 0%, #4a7c2a 50%, #7CB342 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-page h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 48px;
}

.hero-page p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */

.services-overview {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  padding: 60px 20px;
  margin: 40px 0;
  box-shadow: 0 10px 40px rgba(45, 80, 22, 0.08);
}

.services-overview h2,
.services-overview p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7CB342, #FFC107);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
  border-color: rgba(124, 179, 66, 0.3);
}

.service-card h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 16px;
}

.service-card p {
  color: #5a6c7d;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card .price {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.btn-link {
  color: #7CB342;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #2D5016;
  transform: translateX(4px);
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

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

.value-proposition {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

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

.value-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  margin-bottom: 20px;
}

.value-item:hover {
  border-left-color: #7CB342;
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
}

.value-item h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 12px;
}

.value-item p {
  color: #5a6c7d;
  line-height: 1.7;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 40px 0;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: #2D5016;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 193, 7, 0.5);
}

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

.testimonial-card strong {
  display: block;
  color: #FFC107;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-card span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.testimonial-card .service {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   PRICING
   =================================== */

.pricing {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
  border-color: rgba(124, 179, 66, 0.3);
}

.pricing-card.featured {
  border: 3px solid #FFC107;
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.2);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #7CB342, #FFC107);
  border-radius: 20px 20px 0 0;
}

.pricing-card h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 12px;
}

.pricing-card p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-card .price {
  display: block;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0;
}

.pricing-card .badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #2D5016;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  color: #5a6c7d;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  position: relative;
  padding-left: 24px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7CB342;
  font-weight: 700;
}

/* ===================================
   CTA BANNERS
   =================================== */

.cta-banner,
.cta-quote,
.cta-project {
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-quote::before,
.cta-project::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2,
.cta-quote h2,
.cta-project h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-quote p,
.cta-project p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.urgency {
  display: inline-block;
  background: rgba(255, 193, 7, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.reassurance,
.guarantee {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq,
.faq-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
  border-left: 4px solid #7CB342;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.12);
  transform: translateX(4px);
}

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

.faq-item p {
  color: #5a6c7d;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===================================
   ABOUT & STORY SECTIONS
   =================================== */

.story,
.mission-values,
.team,
.ecological-commitment {
  padding: 60px 20px;
}

.story h2,
.mission-values h2,
.team h2,
.ecological-commitment h2 {
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.8;
  color: #34495e;
}

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

.achievements {
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 0;
}

.achievements h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 48px;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.5);
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

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

.ecological-commitment ul {
  max-width: 700px;
  margin: 32px auto;
}

.ecological-commitment ul li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: #34495e;
  line-height: 1.7;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.ecological-commitment ul li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* ===================================
   PORTFOLIO & CASE STUDIES
   =================================== */

.portfolio-intro {
  text-align: center;
  padding: 60px 20px;
}

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

.portfolio-intro p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
}

.portfolio-intro .badge,
.badge {
  display: inline-block;
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.case-studies {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.case-study {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  border-left: 6px solid #7CB342;
}

.case-study h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 24px;
}

.case-study p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.case-study blockquote {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
  border-left: 4px solid #FFC107;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 8px;
  font-style: italic;
  color: #2D5016;
}

.project-areas {
  padding: 60px 20px;
}

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

.project-areas ul {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-areas ul li {
  padding: 16px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
  color: #2D5016;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-areas ul li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
}

.testimonials-extended {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-methods {
  padding: 60px 20px;
}

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

.method {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.method:hover {
  border-top-color: #7CB342;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
}

.method h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 16px;
}

.method p {
  color: #5a6c7d;
  margin-bottom: 8px;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.contact-form-section > .container > p {
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-fields p {
  color: #2D5016;
  font-weight: 500;
  margin-bottom: 8px;
}

.security {
  text-align: center;
  color: #7CB342;
  font-size: 14px;
  margin-top: 24px;
}

.business-hours,
.response-time,
.trust-signals,
.reassurance {
  padding: 60px 20px;
  text-align: center;
}

.business-hours h2,
.response-time h2,
.trust-signals h2 {
  margin-bottom: 32px;
}

.business-hours p,
.response-time ul li,
.trust-signals ul li {
  margin-bottom: 12px;
  color: #34495e;
}

.response-time ul,
.trust-signals ul {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.response-time ul li,
.trust-signals ul li {
  padding: 16px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.response-time ul li:hover,
.trust-signals ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
}

/* ===================================
   THANK YOU & SUCCESS PAGES
   =================================== */

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  color: #2D5016;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}

.thank-you-hero h1,
.thank-you-page h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 24px;
}

.thank-you-hero p,
.thank-you-page p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 16px;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  text-align: center;
  position: relative;
  border-top: 4px solid #7CB342;
  margin-bottom: 20px;
}

.step h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #5a6c7d;
  margin-bottom: 16px;
  font-size: 14px;
}

.step span {
  display: inline-block;
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #2D5016;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.contact-summary,
.contact-info {
  padding: 60px 20px;
  text-align: center;
}

.while-waiting {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

.suggestion {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
}

.suggestion h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 16px;
}

.suggestion a {
  display: inline-block;
  color: #7CB342;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid #7CB342;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.suggestion a:hover {
  background: #7CB342;
  color: #ffffff;
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  border-radius: 24px;
  margin: 60px 0;
}

.social-proof h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 48px;
}

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

.additional-links a {
  color: #7CB342;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.additional-links a:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================
   SPECIAL OFFERS & FACTORS
   =================================== */

.special-offers {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

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

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

.offer,
.factor {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(255, 193, 7, 0.15);
  text-align: center;
  border: 2px solid #FFC107;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.offer:hover,
.factor:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.25);
}

.offer h3,
.factor h3 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 12px;
}

.offer p,
.factor p {
  color: #5a6c7d;
  font-size: 14px;
}

.pricing-factors {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.legal-page > .container > p {
  text-align: center;
  color: #7CB342;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.08);
}

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

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

.legal-content p {
  color: #34495e;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

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

.service-detail {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.08);
  border-left: 6px solid #7CB342;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
  transform: translateX(4px);
}

.service-detail h2 {
  color: #2D5016;
  background: none;
  -webkit-text-fill-color: #2D5016;
  margin-bottom: 16px;
}

.service-detail p {
  color: #34495e;
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-detail ul {
  margin: 24px 0;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #5a6c7d;
  line-height: 1.7;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7CB342;
  font-weight: 700;
  font-size: 18px;
}

.service-detail .price {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0;
}

.service-detail .badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFC107 0%, #ff9800 100%);
  color: #2D5016;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 12px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #1a3009 0%, #0d1804 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7CB342, #FFC107, #7CB342);
}

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

.footer-info,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
  min-width: 200px;
}

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

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer h4 {
  color: #FFC107;
  background: none;
  -webkit-text-fill-color: #FFC107;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-contact p,
.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #FFC107;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 32px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  
  .service-grid,
  .value-grid,
  .testimonial-grid,
  .pricing-grid,
  .methods-grid,
  .offers-grid,
  .factors-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-card,
  .value-item,
  .testimonial-card,
  .pricing-card,
  .method,
  .offer,
  .factor,
  .step,
  .suggestion {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  section {
    padding: 32px 16px;
    margin-bottom: 32px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .stats-grid,
  .stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat {
    max-width: 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .legal-content {
    padding: 24px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .service-card .price,
  .pricing-card .price {
    font-size: 28px;
  }
  
  .stat .number {
    font-size: 36px;
  }
}

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

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

.service-card,
.value-item,
.testimonial-card,
.pricing-card,
.case-study,
.faq-item {
  animation: fadeIn 0.6s ease forwards;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-32 {
  margin-top: 32px;
}

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

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header nav,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background: #ffffff;
  }
  
  .hero,
  .hero-page {
    background: #ffffff;
    color: #000000;
  }
}
