/* ============================================
   QUARTZ SERWIS - NATURE ORGANIC DESIGN
   Professional AGD Service Website
   Design Style: Earth tones, organic shapes
============================================ */

/* 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', sans-serif;
  line-height: 1.6;
  color: #2C3E2F;
  background-color: #F9F7F4;
  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 - NATURE ORGANIC
============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1E3A1F;
  margin-bottom: 16px;
}

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

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

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

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

strong {
  font-weight: 600;
  color: #1E3A1F;
}

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

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

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

/* ============================================
   HEADER - ORGANIC DESIGN
============================================ */

header {
  background: linear-gradient(135deg, #2A4A2E 0%, #3D5F40 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.15);
}

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

.logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #E8F3E8;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.main-nav a:hover {
  background-color: rgba(232, 243, 232, 0.15);
  color: #B8E6B8;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - ORGANIC SLIDE-IN
============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  background: linear-gradient(135deg, #4A7C4E 0%, #5A8C5E 100%);
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(30, 58, 31, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2A4A2E 0%, #3D5F40 100%);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #E8F3E8;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(232, 243, 232, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8F3E8;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: rgba(232, 243, 232, 0.05);
  font-size: 16px;
}

.mobile-nav a:hover {
  background-color: rgba(232, 243, 232, 0.15);
  transform: translateX(8px);
  color: #B8E6B8;
}

/* ============================================
   HERO SECTION - ORGANIC NATURE
============================================ */

.hero {
  background: linear-gradient(135deg, #3D5F40 0%, #5A8C5E 50%, #4A7C4E 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(184, 230, 184, 0.1);
  border-radius: 50%;
  z-index: 1;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: #E8F3E8;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.trust-badges {
  color: #B8E6B8;
  font-weight: 500;
  font-size: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid rgba(232, 243, 232, 0.3);
}

/* ============================================
   BUTTONS - ORGANIC ROUNDED SHAPES
============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #FF7A45 0%, #FF5C1F 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 92, 31, 0.4);
  background: linear-gradient(135deg, #FF8A55 0%, #FF6C2F 100%);
}

.btn-secondary {
  background: #FFFFFF;
  color: #2A4A2E;
  border: 2px solid #5A8C5E;
}

.btn-secondary:hover {
  background: #5A8C5E;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(90, 140, 94, 0.4);
}

/* ============================================
   EMERGENCY BANNER - EARTH TONES
============================================ */

.emergency-banner {
  background: linear-gradient(135deg, #8B6F47 0%, #A68A5E 100%);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.emergency-banner p {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 16px;
}

.emergency-banner strong {
  color: #FFF4E6;
  font-size: 18px;
}

/* ============================================
   SERVICES GRID - FLEXBOX ORGANIC CARDS
============================================ */

.services,
.services-detailed {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.services h2,
.services-detailed h2 {
  text-align: center;
  color: #1E3A1F;
  margin-bottom: 16px;
}

.services > .container > p {
  text-align: center;
  color: #3D5A3E;
  margin-bottom: 48px;
  font-size: 18px;
}

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

.service-card {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  border-radius: 20px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #D4E8D4;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(90, 140, 94, 0.2);
  border-color: #5A8C5E;
}

.service-card h3 {
  color: #2A4A2E;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: #FF5C1F;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
}

.service-detail {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 5px solid #5A8C5E;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
}

.service-detail h2 {
  color: #2A4A2E;
  margin-bottom: 16px;
  text-align: left;
}

.service-detail .price {
  color: #FF5C1F;
  font-weight: 700;
  font-size: 24px;
  margin: 16px 0;
}

/* ============================================
   BENEFITS GRID - ORGANIC LAYOUT
============================================ */

.why-us {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
}

.why-us h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1E3A1F;
}

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

.benefit {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(90, 140, 94, 0.2);
}

.benefit h3 {
  color: #2A4A2E;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit p {
  color: #3D5A3E;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS - READABLE DESIGN
============================================ */

.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1E3A1F;
}

.testimonial-card {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
  border-left: 5px solid #5A8C5E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2C3E2F;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card p:first-child {
  font-style: italic;
  font-size: 17px;
}

.testimonial-card strong {
  color: #1E3A1F;
  font-weight: 600;
}

/* ============================================
   CTA SECTION - ORGANIC ACCENT
============================================ */

.cta-section {
  background: linear-gradient(135deg, #3D5F40 0%, #5A8C5E 100%);
  padding: 60px 20px;
  text-align: center;
}

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

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

/* ============================================
   PAGE HERO - BREADCRUMBS
============================================ */

.page-hero {
  background: linear-gradient(135deg, #3D5F40 0%, #5A8C5E 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #B8E6B8;
  font-size: 14px;
}

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

.breadcrumbs a:hover {
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #E8F3E8;
  font-size: 18px;
}

.page-hero .badge {
  display: inline-block;
  background: #FF5C1F;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 16px;
  font-weight: 600;
}

/* ============================================
   PRICING TABLE - ORGANIC ROWS
============================================ */

.pricing {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.pricing .note {
  text-align: center;
  color: #3D5A3E;
  font-style: italic;
  margin-bottom: 40px;
  padding: 16px;
  background: #E8F3E8;
  border-radius: 12px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  border-radius: 12px;
  border-left: 4px solid #5A8C5E;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-row:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(90, 140, 94, 0.2);
}

.pricing-row h3 {
  color: #2A4A2E;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.pricing-row p {
  color: #FF5C1F;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

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

.pricing-includes h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.pricing-includes ul {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-includes li {
  background: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  color: #2C3E2F;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  border-left: 4px solid #5A8C5E;
}

/* ============================================
   ABOUT & VALUES - ORGANIC CARDS
============================================ */

.about-story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.about-story h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  color: #3D5A3E;
  font-size: 17px;
  line-height: 1.8;
}

.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1E3A1F;
}

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

.value {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(90, 140, 94, 0.2);
}

.value h3 {
  color: #2A4A2E;
  margin-bottom: 12px;
}

.value p {
  color: #3D5A3E;
}

/* ============================================
   STATS - ORGANIC NUMBERS
============================================ */

.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #3D5F40 0%, #5A8C5E 100%);
  text-align: center;
}

.stats h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  max-width: 300px;
  margin-bottom: 20px;
}

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

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

/* ============================================
   PROCESS - ORDERED LIST
============================================ */

.process {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.process h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1E3A1F;
}

.process ol {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process li {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  padding: 20px 24px;
  border-radius: 12px;
  color: #2C3E2F;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  border-left: 4px solid #5A8C5E;
  counter-increment: process-counter;
}

/* ============================================
   SERVICE AREA - DISTRICTS
============================================ */

.service-area,
.districts,
.surrounding,
.travel-fees {
  padding: 60px 20px;
}

.service-area {
  background-color: #FFFFFF;
}

.service-area p {
  max-width: 800px;
  margin: 0 auto 24px;
  color: #3D5A3E;
  font-size: 17px;
}

.highlight {
  background: #E8F3E8;
  padding: 16px 24px;
  border-radius: 12px;
  border-left: 4px solid #5A8C5E;
  color: #1E3A1F;
  font-weight: 600;
}

.districts {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
}

.districts h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.districts > .container > p {
  text-align: center;
  margin-bottom: 32px;
  color: #3D5A3E;
}

.districts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.districts-list li {
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 20px;
  color: #2A4A2E;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
}

.districts-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(90, 140, 94, 0.2);
  background: #E8F3E8;
}

.surrounding {
  background-color: #FFFFFF;
}

.surrounding h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.surrounding p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #3D5A3E;
  font-size: 16px;
}

.travel-fees {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
}

.travel-fees h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.travel-fees p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #2C3E2F;
  font-size: 16px;
}

/* ============================================
   CONTACT PAGE - METHODS & INFO
============================================ */

.contact-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1E3A1F;
}

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

.contact-method {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(30, 58, 31, 0.1);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.contact-method h3 {
  color: #2A4A2E;
  margin-bottom: 16px;
}

.contact-value {
  color: #FF5C1F;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-method p {
  color: #3D5A3E;
  margin-bottom: 8px;
}

.office-info,
.emergency {
  padding: 60px 20px;
}

.office-info {
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
}

.office-info h2,
.emergency h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.office-info p,
.emergency p {
  max-width: 700px;
  margin: 0 auto 12px;
  color: #2C3E2F;
  font-size: 16px;
}

.emergency {
  background-color: #FFFFFF;
  text-align: center;
}

.emergency strong {
  color: #FF5C1F;
  font-size: 20px;
}

/* ============================================
   FAQ - ORGANIC ACCORDION STYLE
============================================ */

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

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1E3A1F;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  border-left: 4px solid #5A8C5E;
}

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

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

/* ============================================
   LEGAL CONTENT - READABLE TEXT
============================================ */

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content h2 {
  color: #1E3A1F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #3D5A3E;
  line-height: 1.8;
  font-size: 16px;
}

/* ============================================
   THANK YOU PAGE - SUCCESS
============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #3D5F40 0%, #5A8C5E 100%);
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #B8E6B8;
  color: #1E3A1F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.thank-you-hero p {
  color: #E8F3E8;
  font-size: 17px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.next-steps ol {
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps li {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  padding: 20px 24px;
  border-radius: 12px;
  color: #2C3E2F;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  border-left: 4px solid #5A8C5E;
}

.next-steps .note {
  text-align: center;
  color: #FF5C1F;
  font-weight: 600;
  font-size: 17px;
  background: #FFF4E6;
  padding: 16px;
  border-radius: 12px;
}

.contact-reminder {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F3E8 0%, #D4E8D4 100%);
  text-align: center;
}

.contact-reminder h2 {
  color: #1E3A1F;
  margin-bottom: 24px;
}

.contact-reminder p {
  color: #2C3E2F;
  font-size: 16px;
  margin-bottom: 8px;
}

.useful-links {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.useful-links h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #1E3A1F;
}

.links-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.links-nav a {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8F3E8 100%);
  color: #2A4A2E;
  padding: 16px 32px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(30, 58, 31, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #D4E8D4;
}

.links-nav a:hover {
  background: #5A8C5E;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(90, 140, 94, 0.3);
}

/* ============================================
   FOOTER - ORGANIC EARTH TONES
============================================ */

footer {
  background: linear-gradient(135deg, #2A4A2E 0%, #3D5F40 100%);
  color: #E8F3E8;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(232, 243, 232, 0.2);
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-info p {
  color: #B8E6B8;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-info strong {
  color: #FFFFFF;
  font-size: 18px;
}

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

.footer-nav a {
  color: #B8E6B8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

footer > .container > p:last-child {
  text-align: center;
  color: #8FAF8F;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   COOKIE CONSENT BANNER - ORGANIC DESIGN
============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2A4A2E 0%, #3D5F40 100%);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  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: #E8F3E8;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FF7A45 0%, #FF5C1F 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 92, 31, 0.4);
}

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

.cookie-reject:hover {
  background: rgba(232, 243, 232, 0.1);
}

.cookie-settings {
  background: #5A8C5E;
  color: #FFFFFF;
}

.cookie-settings:hover {
  background: #6A9C6E;
  transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 31, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.cookie-category {
  background: #F9F7F4;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #5A8C5E;
}

.cookie-category h3 {
  color: #2A4A2E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #5A8C5E;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  /* Service Cards */
  .service-card {
    flex: 1 1 100%;
  }
  
  .benefit {
    flex: 1 1 100%;
  }
  
  .value {
    flex: 1 1 100%;
  }
  
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* Pricing */
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Stats */
  .stat {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

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

.service-card,
.benefit,
.value,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid #5A8C5E;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}