/* ===================================
   RITORA SCRUB - CREATIVE ARTISTIC DESIGN
   Professional Lawn Care Services
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* TYPOGRAPHY - Creative Artistic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2D5016;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

h4 {
  font-size: 18px;
  color: #2D5016;
}

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

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

/* HEADER - Creative Design */
header {
  background: linear-gradient(135deg, #2D5016 0%, #1a3d0f 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
}

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

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

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

/* MAIN NAVIGATION - Desktop */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

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

.main-nav a:hover {
  color: #FFC107;
  background: rgba(255, 193, 7, 0.1);
}

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

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

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #1a3d0f 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: #FFC107;
  color: #2D5016;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

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

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

/* BUTTONS - Creative Artistic Style */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #2D5016;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
}

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

.btn-secondary:hover {
  background: #2D5016;
  color: #FFC107;
  transform: translateY(-3px);
}

/* HERO SECTION - Creative & Vibrant */
.hero {
  background: linear-gradient(135deg, #2D5016 0%, #7CB342 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  color: #FFC107;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* HERO INTERNAL - Creative Headers */
.hero-internal {
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-internal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,193,7,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-internal h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-internal p {
  color: #f0f0f0;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* BREADCRUMB - Creative Style */
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #FFC107;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: #FFC107;
  transition: all 0.3s ease;
}

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

/* SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section {
  padding: 80px 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7CB342;
  margin-bottom: 48px;
  font-style: italic;
}

/* SERVICES GRID - Creative Card Design */
.services-preview,
.services-detailed {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ea 100%);
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
  transition: all 0.4s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.25);
  border-color: #7CB342;
}

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

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

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: #FFC107;
  text-align: center;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.2);
}

/* SERVICE DETAIL SECTIONS */
.service-detail {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(45, 80, 22, 0.12);
  border-left: 6px solid #7CB342;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(45, 80, 22, 0.2);
}

.service-detail h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 36px;
  font-weight: 800;
  color: #FFC107;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

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

.service-detail ul li {
  margin-bottom: 12px;
  color: #555;
  position: relative;
  padding-left: 8px;
}

.service-detail ul li::marker {
  color: #7CB342;
}

/* BENEFITS SECTION - Creative Layout */
.benefits {
  background: linear-gradient(135deg, #2D5016 0%, #1a3d0f 100%);
  color: #ffffff;
}

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

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

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  border: 2px solid rgba(255, 193, 7, 0.3);
  transition: all 0.4s ease;
}

.benefit-card:hover {
  background: rgba(255, 193, 7, 0.2);
  transform: translateY(-8px) scale(1.02);
  border-color: #FFC107;
}

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

.benefit-card p {
  color: #f0f0f0;
  line-height: 1.7;
}

/* PROCESS STEPS - Creative Timeline */
.process {
  background: #ffffff;
}

.process h2 {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f0f7ea 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

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

.step-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #2D5016;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  font-family: 'Montserrat', sans-serif;
}

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

.step p {
  color: #555;
  line-height: 1.7;
}

/* TESTIMONIALS - Creative Design */
.testimonials {
  background: linear-gradient(180deg, #f0f7ea 0%, #ffffff 100%);
  padding: 80px 20px;
}

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

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

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(255, 193, 7, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

.testimonial-card .author {
  color: #7CB342;
  font-weight: 700;
  font-style: normal;
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA SECTIONS - Vibrant & Engaging */
.cta-final,
.cta-services,
.cta-about,
.cta-subscription,
.cta-gallery {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-services::before,
.cta-about::before,
.cta-subscription::before,
.cta-gallery::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-final h2,
.cta-services h2,
.cta-about h2,
.cta-subscription h2,
.cta-gallery h2 {
  color: #2D5016;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-final h2::after,
.cta-services h2::after,
.cta-about h2::after,
.cta-subscription h2::after,
.cta-gallery h2::after {
  background: #2D5016;
}

.cta-final p,
.cta-services p,
.cta-about p,
.cta-subscription p,
.cta-gallery p {
  color: #2D5016;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.availability,
.offer-badge {
  margin-top: 24px;
  color: #2D5016;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* SUBSCRIPTION PLANS - Creative Cards */
.subscription-plans {
  background: #ffffff;
  padding: 80px 20px;
}

.subscription-plans h2 {
  text-align: center;
  margin-bottom: 64px;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.plan-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  border: 3px solid #e0e0e0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(45, 80, 22, 0.25);
  border-color: #7CB342;
}

.plan-card.featured {
  border: 4px solid #FFC107;
  background: linear-gradient(180deg, #fffef0 0%, #ffffff 100%);
  transform: scale(1.05);
}

.plan-card.featured::before {
  content: 'PIÙ POPOLARE';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #2D5016;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.plan-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  text-align: center;
  font-size: 26px;
}

.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: #FFC107;
  text-align: center;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(255, 193, 7, 0.2);
}

.plan-card h4 {
  color: #2D5016;
  margin: 24px 0 16px;
  font-size: 18px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-card ul li {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 32px;
}

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

.savings {
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VALUES & STATS - Creative Display */
.values,
.numbers {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ea 100%);
  padding: 80px 20px;
}

.values h2,
.numbers h2 {
  text-align: center;
  margin-bottom: 64px;
}

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

.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  border-top: 6px solid #FFC107;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

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

.value-card p {
  color: #555;
  line-height: 1.7;
}

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

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #2D5016 0%, #1a3d0f 100%);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.2);
  transition: all 0.4s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.3);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #FFC107;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat p {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* STORY SECTION */
.story {
  background: #ffffff;
  padding: 80px 20px;
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* CONTACT SECTIONS */
.contact-info,
.contact-form-section {
  background: #ffffff;
  padding: 60px 20px;
}

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

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

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #f0f7ea 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

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

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

.contact-item p {
  color: #555;
  line-height: 1.7;
}

/* CONTACT FORM VISUAL */
.contact-note {
  background: #f0f7ea;
  border-radius: 15px;
  padding: 32px;
  margin-bottom: 32px;
  border-left: 6px solid #7CB342;
}

.contact-note p {
  color: #2D5016;
  font-weight: 600;
  margin-bottom: 24px;
}

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

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

.field label {
  color: #2D5016;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-placeholder {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  color: #999;
  font-style: italic;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #7CB342;
  background: #fafafa;
}

/* SERVICE AREAS */
.service-areas {
  background: linear-gradient(180deg, #f0f7ea 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.service-areas h2 {
  margin-bottom: 24px;
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.zones-list span {
  background: linear-gradient(135deg, #2D5016 0%, #1a3d0f 100%);
  color: #FFC107;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.zones-list span:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #2D5016;
}

/* CONTACT EXPECTATIONS */
.contact-expectations {
  background: #ffffff;
  padding: 60px 20px;
}

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

.contact-expectations .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.contact-expectations .step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #f0f7ea 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 24px;
  text-align: center;
  border-top: 4px solid #7CB342;
}

.contact-expectations .step p {
  color: #555;
  font-size: 15px;
}

.guarantee {
  text-align: center;
  color: #7CB342;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
}

/* GALLERY SECTIONS */
.before-after,
.results-stats,
.testimonials-visual {
  padding: 80px 20px;
}

.before-after {
  background: #ffffff;
}

.before-after h2 {
  text-align: center;
  margin-bottom: 64px;
}

.project {
  background: linear-gradient(135deg, #f0f7ea 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
  border-left: 6px solid #FFC107;
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
}

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

.project p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #7CB342 0%, #2D5016 100%);
  padding: 100px 20px;
  text-align: center;
}

.checkmark {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: #FFC107;
  color: #2D5016;
  font-size: 64px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
  animation: checkmarkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
  0% { transform: scale(0) rotate(-180deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

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

.thank-you-hero p {
  color: #f0f0f0;
  font-size: 20px;
  margin-bottom: 32px;
}

.next-steps,
.while-you-wait,
.social-proof {
  padding: 80px 20px;
}

.next-steps {
  background: #ffffff;
}

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

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

.steps-grid .step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}

.while-you-wait {
  background: linear-gradient(180deg, #f0f7ea 0%, #ffffff 100%);
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.suggestion {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

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

.suggestion h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.suggestion p {
  color: #555;
  margin-bottom: 24px;
}

.social-proof {
  background: linear-gradient(135deg, #2D5016 0%, #1a3d0f 100%);
  text-align: center;
}

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

.social-proof .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.social-proof .stats p {
  color: #FFC107;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-proof .testimonial {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.social-proof .testimonial p {
  color: #ffffff;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.social-proof .testimonial .author {
  color: #FFC107;
  font-weight: 700;
  font-style: normal;
}

/* QUICK LINKS */
.quick-links {
  background: linear-gradient(180deg, #f0f7ea 0%, #ffffff 100%);
  padding: 80px 20px;
}

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

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

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(45, 80, 22, 0.2);
  border-color: #7CB342;
}

.link-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.link-card p {
  color: #555;
}

.contact-info-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact-info-section h2 {
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 32px;
}

.contact-details p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #555;
}

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

.legal-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #f0f0f0;
  font-size: 18px;
}

.last-update {
  color: #FFC107;
  font-weight: 700;
  margin-top: 16px;
  font-size: 14px;
}

.legal-content {
  background: #ffffff;
  padding: 80px 20px;
}

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

.legal-content p {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.legal-content ul,
.legal-content ol {
  max-width: 900px;
  margin: 0 auto 24px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

/* FAQ SECTION */
.subscription-faq {
  background: linear-gradient(180deg, #f0f7ea 0%, #ffffff 100%);
  padding: 80px 20px;
}

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

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

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

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

.faq-item p {
  color: #555;
  line-height: 1.7;
}

/* FOOTER - Creative Design */
footer {
  background: linear-gradient(135deg, #1a3d0f 0%, #0d1f07 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
}

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

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.footer-section h4 {
  color: #FFC107;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

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

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

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #FFC107;
}

.footer-nav a:hover {
  color: #FFC107;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 193, 7, 0.2);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-legal a {
  color: #d0d0d0;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal a:hover {
  color: #FFC107;
  text-decoration: underline;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
  text-align: center;
}

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

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

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

.cookie-banner p {
  color: #ffffff;
  flex: 1 1 300px;
  margin: 0;
  font-size: 15px;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: #2D5016;
  border: none;
}

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

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

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

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

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

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFC107;
  color: #2D5016;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f0f7ea;
  border-radius: 15px;
  border-left: 5px solid #7CB342;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.toggle-switch.active {
  background: #7CB342;
}

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

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

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

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

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Header */
  .logo img { height: 50px; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  
  /* Sections */
  section { padding: 60px 20px; }
  
  /* Grids - Convert to single column with flexbox */
  .services-grid,
  .benefits-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .stats-grid,
  .contact-grid,
  .plans-grid,
  .steps-grid,
  .suggestions-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .step,
  .testimonial-card,
  .value-card,
  .stat,
  .contact-item,
  .plan-card,
  .suggestion,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .plan-card.featured {
    transform: scale(1);
  }
  
  /* Footer */
  .footer-content { flex-direction: column; }
  .footer-section { flex: 1 1 100%; }
  .footer-legal { flex-direction: column; align-items: center; }
  
  /* Cookie Banner */
  .cookie-banner-content { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; }
  
  /* Cookie Modal */
  .cookie-modal-content { padding: 24px; }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container { padding: 0 16px; }
  
  .btn { padding: 14px 28px; font-size: 14px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  
  .service-card,
  .plan-card,
  .benefit-card,
  .value-card { padding: 24px; }
  
  .step-number { width: 60px; height: 60px; line-height: 60px; font-size: 24px; }
  
  .stat-number { font-size: 40px; }
  
  .zones-list span { font-size: 12px; padding: 10px 16px; }
}

/* TABLET ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid,
  .benefits-grid,
  .plans-grid {
    justify-content: center;
  }
  
  .service-card,
  .benefit-card,
  .plan-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-steps .step {
    flex: 1 1 calc(50% - 32px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-final,
  .cta-services,
  .cta-about,
  .cta-subscription,
  .cta-gallery {
    display: none !important;
  }
  
  body { color: #000; background: #fff; }
  a { text-decoration: underline; }
}

/* ACCESSIBILITY IMPROVEMENTS */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #FFC107;
  outline-offset: 2px;
}

/* SMOOTH SCROLL FOR ANCHOR LINKS */
html {
  scroll-behavior: smooth;
}

/* HIGH CONTRAST FOR BETTER READABILITY */
::selection {
  background: #FFC107;
  color: #2D5016;
}

/* ENSURE PROPER Z-INDEX LAYERING */
.mobile-menu-toggle { z-index: 2000; }
.mobile-menu { z-index: 1999; }
.cookie-modal { z-index: 10001; }
.cookie-banner { z-index: 10000; }
header { z-index: 1000; }

/* PREVENT HORIZONTAL SCROLL */
body { overflow-x: hidden; }

/* END OF STYLESHEET */