/* ===================================
   CLEAR FIXTURE - MINIMALIST DESIGN
   Complete Stylesheet
   =================================== */

/* 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: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #2D5F3F;
}

h1 { font-size: 48px; margin-bottom: 32px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 20px;
  color: #4A4A4A;
}

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

a:hover {
  color: #8BAA3D;
}

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

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

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

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

/* HEADER */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

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

.logo img {
  height: 40px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2D5F3F;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #8BAA3D;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

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

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -2px 0 12px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2D5F3F;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8BAA3D;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2D5F3F;
  padding: 12px 0;
  border-bottom: 1px solid #F4F4F4;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8BAA3D;
  padding-left: 8px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #2D5F3F;
  background: transparent;
  color: #2D5F3F;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 2px;
}

.btn:hover {
  background: #2D5F3F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45,95,63,0.2);
}

.btn-primary {
  background: #2D5F3F;
  color: #FFFFFF;
  border-color: #2D5F3F;
}

.btn-primary:hover {
  background: #8BAA3D;
  border-color: #8BAA3D;
}

.btn-secondary {
  background: transparent;
  color: #2D5F3F;
  border-color: #2D5F3F;
}

.btn-secondary:hover {
  background: #F4E8D0;
  border-color: #F4E8D0;
  color: #2D5F3F;
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #F9F9F9 0%, #FFFFFF 100%);
  text-align: center;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #2D5F3F;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #8BAA3D;
  font-weight: 600;
  margin-top: 24px;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  background: #F9F9F9;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8E8E8;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 20px;
}

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

.problem-solution,
.featured-services,
.features,
.testimonials,
.tips-categories,
.featured-tips,
.seasonal-highlight,
.expert-qa,
.services-list,
.packages,
.seasons,
.seasonal-content,
.project-categories,
.featured-project,
.projects-grid-section,
.diy-tips,
.story,
.expertise,
.stats,
.philosophy,
.commitment,
.contact-options,
.contact-form-section,
.consultation-booking,
.contact-details,
.faq-preview,
.legal-content,
.related-links,
.cookie-details,
.cookie-preferences,
.data-request,
.next-steps,
.meanwhile-resources,
.alternative-actions,
.return-home,
.climate-zones {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section h2,
.problem-solution h2,
.featured-services h2,
.features h2,
.testimonials h2,
.tips-categories h2,
.featured-tips h2,
.seasonal-highlight h2,
.expert-qa h2,
.services-list h2,
.packages h2,
.seasons h2,
.seasonal-content h2,
.project-categories h2,
.featured-project h2,
.projects-grid-section h2,
.diy-tips h2,
.story h2,
.expertise h2,
.stats h2,
.philosophy h2,
.commitment h2,
.contact-options h2,
.contact-form-section h2,
.consultation-booking h2,
.contact-details h2,
.faq-preview h2,
.legal-content h2,
.related-links h2,
.cookie-details h2,
.cookie-preferences h2,
.data-request h2,
.next-steps h2,
.meanwhile-resources h2,
.alternative-actions h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* FLEXBOX GRIDS */
.benefits-grid,
.services-grid,
.features-grid,
.testimonials-grid,
.categories-grid,
.tips-grid,
.packages-grid,
.seasons-grid,
.projects-grid,
.values-grid,
.stats-grid,
.principles-list,
.options-grid,
.details-grid,
.actions-grid,
.resources-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* CARDS */
.benefit-item,
.service-card,
.feature-item,
.testimonial-card,
.category-card,
.tip-card,
.package-card,
.season-card,
.project-card,
.value-item,
.stat-item,
.principle-item,
.option-card,
.detail-item,
.action-card,
.resource-card,
.step-item {
  background: #FFFFFF;
  padding: 32px;
  border: 1px solid #E8E8E8;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item:hover,
.service-card:hover,
.feature-item:hover,
.category-card:hover,
.tip-card:hover,
.package-card:hover,
.season-card:hover,
.project-card:hover,
.value-item:hover,
.option-card:hover,
.action-card:hover,
.resource-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  border-color: #8BAA3D;
}

.benefit-item h3,
.service-card h3,
.feature-item h3,
.category-card h3,
.tip-card h3,
.package-card h3,
.season-card h3,
.project-card h3,
.value-item h3,
.principle-item h3,
.option-card h3,
.detail-item h3,
.action-card h3,
.resource-card h3,
.step-item h3 {
  color: #2D5F3F;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-item p,
.service-card p,
.feature-item p,
.category-card p,
.tip-card p,
.package-card p,
.season-card p,
.project-card p,
.value-item p,
.principle-item p,
.option-card p,
.detail-item p,
.action-card p,
.resource-card p,
.step-item p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* TESTIMONIALS - ENHANCED CONTRAST */
.testimonial-card {
  background: #F9F9F9;
  border-left: 3px solid #8BAA3D;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #2D5F3F;
  font-style: normal;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 14px;
  color: #8BAA3D;
  font-weight: 600;
  margin-top: 24px;
}

/* SERVICE CARDS */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-price,
.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.service-features,
.commitment-list,
.expertise-list,
.tips-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-features li,
.commitment-list li,
.expertise-list li,
.tips-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: #4A4A4A;
}

.service-features li::before,
.commitment-list li::before,
.expertise-list li::before,
.tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8BAA3D;
  font-weight: 700;
}

.ideal-for {
  font-size: 13px;
  color: #666666;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}

.savings {
  font-size: 14px;
  color: #8BAA3D;
  font-weight: 600;
}

/* PROJECT CARDS */
.project-meta,
.tip-meta {
  font-size: 13px;
  color: #8BAA3D;
  font-weight: 600;
  margin-bottom: 12px;
}

.season-months {
  font-size: 14px;
  color: #8BAA3D;
  font-weight: 600;
  margin-bottom: 16px;
}

/* CTA BANNER */
.cta-banner {
  background: #F4E8D0;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.cta-banner h2 {
  color: #2D5F3F;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  margin-bottom: 32px;
  color: #4A4A4A;
}

.cta-banner .btn {
  margin: 8px;
}

.cta-center {
  text-align: center;
  margin-top: 32px;
}

/* Q&A SECTIONS */
.qa-list,
.faq-list {
  max-width: 800px;
  margin: 0 auto 32px;
}

.qa-item,
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 24px;
  margin-bottom: 20px;
}

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

.qa-item p,
.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* SEASONAL CONTENT */
.season-tasks {
  max-width: 900px;
  margin: 0 auto 48px;
}

.month-section {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 32px;
  margin-bottom: 24px;
}

.month-section h3 {
  color: #2D5F3F;
  margin-bottom: 20px;
}

.month-section ul {
  list-style: none;
  padding: 0;
}

.month-section li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.month-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8BAA3D;
  font-size: 18px;
}

/* PROJECT DETAILS */
.project-details {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 40px;
}

.project-steps {
  margin: 32px 0;
}

.project-steps ol {
  padding-left: 24px;
}

.project-steps li {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* STATS SECTION */
.stats {
  background: #F9F9F9;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-item p:last-child {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CONTACT FORMS */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 40px;
}

.form-intro {
  text-align: center;
  margin-bottom: 32px;
  color: #666666;
}

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

.field-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2D5F3F;
  margin-bottom: 8px;
}

.field-placeholder {
  background: #F9F9F9;
  border: 1px solid #E8E8E8;
  padding: 14px 16px;
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.btn-placeholder {
  background: #2D5F3F;
  color: #FFFFFF;
  padding: 14px 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-note {
  font-size: 12px;
  color: #999999;
  text-align: center;
  margin-top: 24px;
}

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

.content-wrapper {
  background: #FFFFFF;
  padding: 40px;
  border: 1px solid #E8E8E8;
}

.content-wrapper h2 {
  text-align: left;
  color: #2D5F3F;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.content-wrapper p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 16px 0;
}

.content-wrapper li {
  font-size: 14px;
  line-height: 1.7;
}

.last-updated {
  font-size: 13px;
  color: #999999;
  margin-bottom: 24px;
}

.policy-links,
.footer-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.policy-links a,
.footer-legal a {
  font-size: 14px;
  color: #2D5F3F;
  padding: 8px 16px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.policy-links a:hover,
.footer-legal a:hover {
  background: #F4E8D0;
  border-color: #F4E8D0;
}

/* TABLES */
.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
}

.cookie-table thead {
  background: #F9F9F9;
}

.cookie-table th,
.cookie-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
  font-size: 14px;
}

.cookie-table th {
  font-weight: 600;
  color: #2D5F3F;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

/* PREFERENCES */
.preferences-list {
  max-width: 700px;
  margin: 0 auto 32px;
}

.preference-item {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preference-item p {
  margin: 0;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: #F4E8D0;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: #8BAA3D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.urgent-note {
  background: #FFF9E6;
  border-left: 3px solid #8BAA3D;
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 14px;
  color: #4A4A4A;
}

/* FOOTER */
footer {
  background: #F9F9F9;
  border-top: 1px solid #E8E8E8;
  padding: 60px 20px 32px;
  margin-top: 80px;
}

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

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

.footer-col h4 {
  color: #2D5F3F;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #666666;
}

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

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

.footer-nav a:hover {
  color: #2D5F3F;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #E8E8E8;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #999999;
  margin: 16px 0 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 2px solid #2D5F3F;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #2D5F3F;
  text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #2D5F3F;
  background: transparent;
  color: #2D5F3F;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: #2D5F3F;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #8BAA3D;
  border-color: #8BAA3D;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: #F4E8D0;
  border-color: #F4E8D0;
}

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

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #2D5F3F;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #8BAA3D;
  transform: rotate(90deg);
}

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

.cookie-category {
  border: 1px solid #E8E8E8;
  padding: 20px;
  margin-bottom: 16px;
  background: #FFFFFF;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

.cookie-toggle.active {
  background: #8BAA3D;
}

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

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

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

.cookie-category p {
  font-size: 13px;
  color: #666666;
  margin: 12px 0 0;
}

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

.cookie-save,
.cookie-modal-accept {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #2D5F3F;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: transparent;
  color: #2D5F3F;
}

.cookie-save:hover {
  background: #F4E8D0;
  border-color: #F4E8D0;
}

.cookie-modal-accept {
  background: #2D5F3F;
  color: #FFFFFF;
}

.cookie-modal-accept:hover {
  background: #8BAA3D;
  border-color: #8BAA3D;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 48px; }
  
  .benefits-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .categories-grid,
  .tips-grid,
  .packages-grid,
  .seasons-grid,
  .projects-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* SECTIONS */
  .section,
  .problem-solution,
  .featured-services,
  .features,
  .testimonials,
  .stats {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* FLEXBOX GRIDS - MOBILE */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .categories-grid,
  .tips-grid,
  .packages-grid,
  .seasons-grid,
  .projects-grid,
  .values-grid,
  .stats-grid,
  .options-grid,
  .details-grid,
  .actions-grid,
  .resources-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .feature-item,
  .testimonial-card,
  .category-card,
  .tip-card,
  .package-card,
  .season-card,
  .project-card,
  .value-item,
  .stat-item,
  .option-card,
  .detail-item,
  .action-card,
  .resource-card,
  .step-item {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  /* CTA BANNER */
  .cta-banner {
    padding: 40px 20px;
  }
  
  .cta-banner .btn {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* FORMS */
  .form-container,
  .project-details,
  .content-wrapper {
    padding: 24px;
  }
  
  /* STATS */
  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .service-card,
  .category-card,
  .tip-card,
  .project-card {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}