/* ===================================
   KEEN GROWTH REINIGUNG - CREATIVE ARTISTIC STYLE
   Modern, Professional, Eco-Friendly Design
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* TYPOGRAPHY - CREATIVE ARTISTIC STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1E5436;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(30, 84, 54, 0.1);
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 16px;
}

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

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

h4 {
  font-size: 20px;
  color: #1E5436;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
  line-height: 1.8;
}

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

a:hover {
  color: #1E5436;
  text-decoration: underline;
}

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

li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #4a5568;
}

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

/* HEADER STYLES - CREATIVE ARTISTIC */
header {
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(30, 84, 54, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #FFB703;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

.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-decoration: none;
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

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

/* MOBILE MENU - BURGER NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FFB703 0%, #C77700 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1E5436 0%, #2B7A4F 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px 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: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  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: #1E5436;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #FFB703;
  transform: translateX(8px);
  text-decoration: none;
}

/* HERO SECTION - CREATIVE ARTISTIC */
.hero {
  background: linear-gradient(135deg, rgba(30, 84, 54, 0.95) 0%, rgba(43, 122, 79, 0.9) 100%), 
              url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #FFB703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s both;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

.breadcrumb a {
  color: #FFB703;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* CTA BUTTONS - CREATIVE ARTISTIC */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease 0.4s both;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB703 0%, #C77700 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: #1E5436;
  border: 3px solid #FFB703;
}

.btn-secondary:hover {
  background: #FFB703;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
}

/* TRUST INDICATORS - CREATIVE STYLE */
.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease 0.6s both;
}

.trust-indicators span {
  color: #ffffff;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.trust-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1E5436;
  padding: 20px;
  background: linear-gradient(135deg, #FFB703 0%, #FFED4E 100%);
  border-radius: 16px;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.3);
}

/* SECTIONS - CREATIVE ARTISTIC LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* SERVICE CARDS - CREATIVE GRID LAYOUT */
.services-overview,
.services-detailed,
.pricing-table {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  margin-bottom: 60px;
}

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

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

.service-card,
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(30, 84, 54, 0.1);
  transition: all 0.4s ease;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

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

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

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(30, 84, 54, 0.2);
  border-color: #FFB703;
}

.service-card h3,
.pricing-card h3 {
  color: #1E5436;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card p,
.pricing-card p {
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-card .price,
.pricing-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FFB703;
  margin: 20px 0;
  display: block;
}

.service-card ul,
.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-card li,
.pricing-card li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #4a5568;
}

.service-card li::before,
.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A4F;
  font-weight: 700;
  font-size: 18px;
}

/* SERVICE DETAIL PAGES */
.service-detail {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(30, 84, 54, 0.1);
  border-left: 6px solid #FFB703;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 12px 40px rgba(30, 84, 54, 0.15);
  transform: translateX(5px);
}

/* BENEFITS SECTION - CREATIVE GRID */
.benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.benefits h2::after {
  background: linear-gradient(90deg, #FFB703 0%, #C77700 100%);
  left: 50%;
  transform: translateX(-50%);
}

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

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.05);
}

.benefit-item h3 {
  color: #FFB703;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-item p {
  color: #ffffff;
  font-size: 16px;
}

/* TESTIMONIALS - CREATIVE ARTISTIC CARDS */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(199, 119, 0, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  position: relative;
  border: 2px solid #FFB703;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #FFB703;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(199, 119, 0, 0.2);
}

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

.testimonial-card .author {
  color: #1E5436;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  font-style: normal;
}

.rating {
  color: #FFB703;
  font-size: 20px;
  letter-spacing: 4px;
}

/* CTA BANNER - CREATIVE STYLE */
.cta-banner,
.cta-section,
.cta-quote {
  background: linear-gradient(135deg, #FFB703 0%, #C77700 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.cta-banner h2,
.cta-section h2,
.cta-quote h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after,
.cta-section h2::after,
.cta-quote h2::after {
  background: #ffffff;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p,
.cta-section p,
.cta-quote p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.availability {
  color: #ffffff;
  font-size: 16px;
  margin-top: 24px;
  opacity: 0.9;
}

/* COMPANY STORY & VALUES */
.company-story,
.team,
.sustainability {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.value-item {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  border: 2px solid #2B7A4F;
  box-shadow: 0 4px 20px rgba(43, 122, 79, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 8px 30px rgba(43, 122, 79, 0.2);
}

.value-item h4 {
  color: #1E5436;
  font-size: 20px;
  margin-bottom: 12px;
}

/* TEAM STATS */
.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #FFB703 0%, #C77700 100%);
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  max-width: 300px;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat h3 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

/* AREAS & LOCATIONS */
.areas-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.area-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(30, 84, 54, 0.1);
  border: 2px solid #f0fdf4;
  transition: all 0.3s ease;
}

.area-card:hover {
  border-color: #FFB703;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.2);
}

.area-card h3 {
  color: #1E5436;
  font-size: 20px;
  margin-bottom: 12px;
}

.area-card p {
  color: #6b7280;
  font-size: 14px;
}

/* CONTACT PAGE */
.contact-methods,
.contact-form-section,
.location-info,
.office-hours {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-method {
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(30, 84, 54, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 84, 54, 0.3);
}

.contact-method h3 {
  color: #FFB703;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-method p {
  color: #ffffff;
  font-size: 16px;
}

/* FORM STYLES */
.form-container {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(30, 84, 54, 0.1);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #1E5436;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #2B7A4F;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(43, 122, 79, 0.1);
}

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

.form-note {
  background: #fef3c7;
  border-left: 4px solid #FFB703;
  padding: 16px;
  border-radius: 8px;
  color: #92400e;
  font-size: 14px;
  margin-top: 24px;
}

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

.hours-item {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(30, 84, 54, 0.1);
  border: 2px solid #2B7A4F;
}

.hours-item h3 {
  color: #1E5436;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #2B7A4F 0%, #1E5436 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(43, 122, 79, 0.3);
  animation: scaleIn 0.5s ease;
}

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

.next-steps,
.useful-links,
.social-proof {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step,
.link-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(30, 84, 54, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #f0fdf4;
}

.step:hover,
.link-card:hover {
  border-color: #FFB703;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.2);
  text-decoration: none;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-size: 18px;
  font-weight: 600;
  color: #1E5436;
  text-decoration: none;
}

.testimonials-short {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-short {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(30, 84, 54, 0.1);
  border-left: 4px solid #FFB703;
}

.testimonial-short p {
  color: #2d3436;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-short .author {
  color: #1E5436;
  font-weight: 600;
  font-style: normal;
}

.stats {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin-top: 32px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #ffffff;
  font-size: 16px;
}

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

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

.legal-content h3 {
  color: #2B7A4F;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
}

.info-box,
.note {
  background: #fef3c7;
  border-left: 4px solid #FFB703;
  padding: 20px;
  border-radius: 8px;
  margin: 24px 0;
  color: #92400e;
}

/* FOOTER - CREATIVE ARTISTIC */
footer {
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 4px solid #FFB703;
}

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

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

.footer-section h4 {
  color: #FFB703;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

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

.footer-nav a {
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.9;
}

.footer-nav a:hover {
  color: #FFB703;
  opacity: 1;
  padding-left: 8px;
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E5436 0%, #2B7A4F 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #FFB703;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #FFB703;
  color: #1E5436;
  border-color: #FFB703;
}

.cookie-btn.accept:hover {
  background: #C77700;
  border-color: #C77700;
  transform: scale(1.05);
}

.cookie-btn.reject {
  background: transparent;
  color: #ffffff;
}

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

.cookie-btn.settings {
  background: transparent;
  color: #ffffff;
}

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

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

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

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

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

.cookie-modal h2 {
  color: #1E5436;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

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

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

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

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

.cookie-toggle.active::after {
  left: 27px;
}

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-width: 140px;
}

.save-preferences {
  background: linear-gradient(135deg, #FFB703 0%, #C77700 100%);
  color: #ffffff;
}

.save-preferences:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Layout */
  .section {
    padding: 40px 20px;
  }
  
  /* Cards */
  .service-card,
  .pricing-card,
  .benefit-item,
  .value-item,
  .area-card,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .logo {
    height: 40px;
  }
  
  .cta-banner h2,
  .cta-section h2,
  .cta-quote h2 {
    font-size: 28px;
  }
  
  .form-container {
    padding: 24px;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #FFB703;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #FFB703;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  .container {
    max-width: 100%;
  }
}

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

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

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

.p-20 {
  padding: 20px;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* LOADING ANIMATION */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
}
.hero p {
  color: #fff;
}
.logo {
  filter: invert(1);
}