/* ===================================
   GLACIAL GARTEN - MODERN BOLD STYLE
   Complete CSS Stylesheet
   =================================== */

/* === CSS RESET & BASE === */
* {
  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, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #2D5016;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
}

a {
  color: #2D5016;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #7AB55C;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

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

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

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2D5016;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #7AB55C;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #2D5016;
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

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

/* === HEADER === */
header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid #2D5016;
}

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

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

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #2D5016;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a:focus {
  background: #E8F4F8;
  color: #7AB55C;
  transform: translateY(-2px);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-primary {
  background: #2D5016;
  color: #fff;
  border-color: #2D5016;
}

.btn-primary:hover {
  background: #7AB55C;
  border-color: #7AB55C;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background: #2D5016;
  color: #fff;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
}

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

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

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  color: #E8F4F8;
  font-weight: 600;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, #2D5016 0%, #7AB55C 100%);
  color: #fff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 6px solid #7AB55C;
}

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

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #E8F4F8;
}

.breadcrumb a:hover {
  color: #fff;
}

/* === SECTIONS === */
section {
  padding: 80px 20px;
  margin-bottom: 0;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #7AB55C;
  border-radius: 3px;
}

/* === CARDS & GRIDS === */
.value-props,
.services-grid,
.testimonial-grid,
.process-steps,
.values-grid,
.expertise-content,
.options-grid,
.packages-grid,
.projects-grid,
.tips-grid,
.resources-grid,
.contact-grid,
.client-categories,
.elements-grid,
.principles-grid,
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-item,
.service-card,
.testimonial-card,
.step,
.value-card,
.option-card,
.package-card,
.project-card,
.tip-card,
.resource-card,
.contact-card,
.category-card,
.element-card,
.principle-card,
.style-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.value-item:hover,
.service-card:hover,
.option-card:hover,
.package-card:hover,
.project-card:hover,
.tip-card:hover,
.resource-card:hover,
.contact-card:hover,
.category-card:hover,
.element-card:hover,
.principle-card:hover,
.style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  border-color: #7AB55C;
}

.value-item img,
.service-card img,
.contact-card img,
.element-card img,
.principle-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.value-item h3,
.service-card h3,
.step h3,
.value-card h3,
.option-card h3,
.package-card h3,
.project-card h3,
.tip-card h3,
.resource-card h3,
.contact-card h3,
.category-card h3,
.element-card h3,
.principle-card h3,
.style-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2D5016;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: #7AB55C;
  margin: 20px 0;
  display: block;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: #E8F4F8;
  border-left: 6px solid #7AB55C;
  padding: 32px;
  margin-bottom: 24px;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.8;
}

.customer-name {
  font-weight: 700;
  color: #2D5016;
  font-size: 16px;
  margin-bottom: 12px;
}

.rating {
  color: #FFB800;
  font-size: 24px;
  letter-spacing: 4px;
}

.testimonial-extended {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  margin-bottom: 32px;
  border-left: 6px solid #7AB55C;
}

.customer-info {
  font-weight: 700;
  color: #2D5016;
  font-size: 16px;
  margin-bottom: 12px;
}

/* === PROCESS STEPS === */
.step {
  text-align: center;
  position: relative;
}

.step-number,
.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #2D5016;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* === SERVICE DETAILS === */
.service-detail {
  background: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-left: 6px solid #7AB55C;
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.service-features,
.includes-list,
.benefits-list,
.package-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-features li,
.includes-list li,
.benefits-list li,
.package-features li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-size: 18px;
}

.service-features li::before,
.includes-list li::before,
.benefits-list li::before,
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7AB55C;
  font-weight: 900;
  font-size: 24px;
}

/* === FAQ === */
.faq-item {
  background: #fff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left: 6px solid #7AB55C;
}

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

/* === CTA SECTIONS === */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2D5016 0%, #7AB55C 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin: 80px 0;
  border-radius: 16px;
}

.cta-banner h2,
.cta-section h2 {
  color: #fff;
  margin-bottom: 24px;
}

.cta-banner h2::after,
.cta-section h2::after {
  background: #fff;
}

.cta-banner p,
.cta-section p {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
}

.contact-info {
  font-size: 18px;
  margin-top: 24px;
  font-weight: 600;
}

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

/* === STATISTICS === */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 60px 0;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  background: #E8F4F8;
  border-radius: 12px;
  border: 3px solid #7AB55C;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #2D5016;
  margin-bottom: 12px;
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === PACKAGE CARDS === */
.package-card.highlight {
  border: 4px solid #7AB55C;
  transform: scale(1.05);
  background: #E8F4F8;
}

.package-frequency {
  font-size: 16px;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.package-price {
  font-size: 32px;
  font-weight: 900;
  color: #2D5016;
  margin: 16px 0;
}

.ideal-for {
  font-style: italic;
  color: #666;
  margin: 20px 0;
  font-size: 16px;
}

/* === SEASONS GRID === */
.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.season-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-top: 6px solid #7AB55C;
}

.season-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2D5016;
}

.season-card ul {
  list-style: none;
  padding: 0;
}

.season-card li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.season-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7AB55C;
  font-size: 24px;
  line-height: 1;
}

/* === PLANT CATEGORIES === */
.plant-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category {
  flex: 1 1 280px;
  max-width: 350px;
  background: #E8F4F8;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #7AB55C;
}

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

/* === CONSULTATION PROCESS === */
.process-timeline,
.consultation-process .process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.phase {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border-top: 6px solid #7AB55C;
}

/* === CITIES LIST === */
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.cities-list li {
  background: #E8F4F8;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  color: #2D5016;
  border: 2px solid #7AB55C;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  color: #7AB55C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.thank-you-hero h1 {
  color: #fff;
  margin-bottom: 24px;
}

.confirmation-message {
  font-size: 22px;
  color: #E8F4F8;
  max-width: 700px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left: 6px solid #7AB55C;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 16px;
  color: #666;
}

/* === RIGHTS GRID === */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.right-card {
  flex: 1 1 300px;
  background: #E8F4F8;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #7AB55C;
}

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

/* === LEGAL CONTENT === */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: #fff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left: 6px solid #7AB55C;
}

.legal-section h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E8F4F8;
}

.legal-section h2::after {
  display: none;
}

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

.last-updated {
  font-style: italic;
  color: #E8F4F8;
  font-size: 16px;
}

/* === FOOTER === */
footer {
  background: #2D5016;
  color: #fff;
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-top: 6px solid #7AB55C;
}

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

.footer-brand {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #E8F4F8;
  font-size: 16px;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: #E8F4F8;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(8px);
}

.footer-contact {
  flex: 1 1 240px;
}

.footer-contact h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact p {
  color: #E8F4F8;
  font-size: 16px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
  margin: 0;
}

/* === COOKIE CONSENT BANNER === */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D5016;
  color: #fff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #7AB55C;
}

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

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

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

.cookie-text p {
  color: #E8F4F8;
  font-size: 16px;
  margin: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: #7AB55C;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #fff;
  color: #7AB55C;
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: #fff;
  color: #2D5016;
  transform: translateY(-2px);
}

/* === COOKIE PREFERENCES MODAL === */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.cookie-modal-header h2 {
  color: #2D5016;
  font-size: 28px;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #E8F4F8;
  color: #2D5016;
  transform: rotate(90deg);
}

.cookie-category {
  background: #E8F4F8;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid #7AB55C;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #2D5016;
  font-size: 20px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 32px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 32px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
  background: #7AB55C;
}

.cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

.cookie-toggle input:disabled + .toggle-slider {
  background: #999;
  cursor: not-allowed;
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  section { padding: 60px 20px; }
  
  .hero h1 { font-size: 44px; }
}

@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 48px 20px;
  }
  
  /* Cards - stack on mobile */
  .value-props,
  .services-grid,
  .testimonial-grid,
  .process-steps,
  .values-grid,
  .options-grid,
  .packages-grid,
  .projects-grid,
  .tips-grid,
  .resources-grid,
  .contact-grid,
  .client-categories,
  .elements-grid,
  .principles-grid,
  .styles-grid,
  .seasons-grid,
  .plant-categories,
  .statistics {
    flex-direction: column;
    gap: 24px;
  }
  
  .value-item,
  .service-card,
  .testimonial-card,
  .step,
  .value-card,
  .option-card,
  .package-card,
  .project-card,
  .tip-card,
  .resource-card,
  .contact-card,
  .category-card,
  .element-card,
  .principle-card,
  .style-card,
  .season-card,
  .category,
  .phase,
  .stat {
    max-width: 100%;
    margin-bottom: 0;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact {
    max-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Steps */
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Process timeline */
  .process-timeline {
    flex-direction: column;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 16px 0;
  }
  
  .logo img {
    height: 48px;
  }
  
  /* Package highlight */
  .package-card.highlight {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  section { padding: 40px 16px; }
  
  .container { padding: 0 16px; }
  
  .value-item,
  .service-card,
  .testimonial-card,
  .legal-section,
  .service-detail {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .stat-number { font-size: 40px; }
  .package-price { font-size: 28px; }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  header,
  footer {
    display: none;
  }
}