/* ===================================
   SMARTDOMOV - NATURE ORGANIC DESIGN
   Modern Smart Home with Natural Touch
   =================================== */

/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2d3436;
  background-color: #faf9f7;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  --primary-green: #2d5016;
  --forest-green: #3e6b23;
  --sage-green: #7a9b6f;
  --moss: #8fbc8f;
  --earth-brown: #6b5447;
  --sand: #d4c5a9;
  --cream: #f5f1e8;
  --warm-white: #faf9f7;
  --soft-white: #ffffff;
  --charcoal: #2d3436;
  --stone-gray: #636e72;
  --light-gray: #dfe6e9;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-green);
  margin-bottom: 16px;
}

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

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

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

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--charcoal);
}

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage-green);
}

ul {
  list-style: none;
}

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

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

/* HEADER & NAVIGATION */
header {
  background-color: var(--soft-white);
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--cream);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

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

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage-green);
  transition: width 0.3s ease;
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--forest-green);
  color: var(--soft-white);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-green);
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--cream);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(45, 80, 22, 0.15);
  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: none;
  border: none;
  color: var(--primary-green);
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--forest-green);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--primary-green);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--forest-green);
  padding-left: 8px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: var(--forest-green);
  color: var(--soft-white);
  border-color: var(--forest-green);
  box-shadow: 0 4px 12px rgba(62, 107, 35, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
  color: var(--soft-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}

.btn-secondary:hover {
  background-color: var(--forest-green);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(62, 107, 35, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 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: radial-gradient(circle, rgba(122, 155, 111, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--primary-green);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--stone-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  background-color: rgba(122, 155, 111, 0.1);
  border-radius: 30px;
}

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

.section-intro {
  text-align: center;
  color: var(--stone-gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* BENEFITS SECTION */
.benefits {
  background-color: var(--soft-white);
  text-align: center;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(20%) saturate(1500%) hue-rotate(70deg);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.benefit-card p {
  font-size: 15px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

/* SERVICES GRID */
.services-overview,
.services-detail {
  background-color: var(--warm-white);
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.service-card,
.service-card-detail {
  flex: 1 1 280px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
  position: relative;
}

.service-card:hover,
.service-card-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: var(--moss);
}

.service-card img,
.service-card-detail img {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(20%) saturate(1500%) hue-rotate(70deg);
}

.service-card h3,
.service-card-detail h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.service-card p,
.service-card-detail p {
  color: var(--stone-gray);
  font-size: 15px;
  flex-grow: 1;
}

.service-card .price,
.service-card-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-green);
  margin-top: 8px;
}

.service-card-detail .btn {
  margin-top: 16px;
  align-self: flex-start;
}

.services-overview .btn-primary {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--cream);
  padding: 80px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid var(--sage-green);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--stone-gray);
  font-size: 14px;
}

.rating {
  color: var(--forest-green);
  font-size: 18px;
  letter-spacing: 2px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--primary-green) 100%);
  color: var(--soft-white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--soft-white);
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--warm-white);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-section .btn-primary {
  background-color: var(--soft-white);
  color: var(--forest-green);
  border-color: var(--soft-white);
}

.cta-section .btn-primary:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  color: var(--primary-green);
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: var(--soft-white);
  border-color: var(--soft-white);
}

.cta-section .btn-secondary:hover {
  background-color: var(--soft-white);
  color: var(--forest-green);
}

.guarantee {
  color: var(--warm-white);
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* FOOTER */
footer {
  background-color: var(--primary-green);
  color: var(--warm-white);
  padding: 60px 20px 20px;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: var(--moss);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: var(--warm-white);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a:hover {
  color: var(--moss);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(143, 188, 143, 0.3);
}

.footer-bottom p {
  color: var(--sand);
  font-size: 14px;
}

/* ABOUT PAGE */
.story,
.achievements,
.team,
.process,
.results {
  padding: 80px 20px;
}

.story {
  background-color: var(--soft-white);
}

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

.values {
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.values h3 {
  color: var(--primary-green);
  margin-bottom: 20px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values li {
  padding-left: 24px;
  position: relative;
  color: var(--charcoal);
  line-height: 1.8;
}

.values li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  top: 0;
}

.values strong {
  color: var(--forest-green);
}

/* ACHIEVEMENTS */
.achievements {
  background-color: var(--warm-white);
  text-align: center;
}

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

.achievement-card {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: var(--cream);
  padding: 40px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.achievement-card h3 {
  font-size: 48px;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.achievement-card p {
  font-size: 16px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

/* PRODUCTS PAGE */
.product-categories {
  padding: 80px 20px;
  background-color: var(--soft-white);
}

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

.category-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--moss);
}

.category-card img {
  width: 64px;
  height: 64px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(20%) saturate(1500%) hue-rotate(70deg);
}

.category-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

/* PRODUCT BENEFITS */
.product-benefits {
  background-color: var(--warm-white);
  padding: 80px 20px;
}

.product-benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
}

.benefit-item img {
  width: 56px;
  height: 56px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(20%) saturate(1500%) hue-rotate(70deg);
}

.benefit-item h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 0;
}

/* PORTFOLIO / REALIZACE */
.portfolio-showcase {
  padding: 80px 20px;
  background-color: var(--soft-white);
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.portfolio-card {
  flex: 1 1 320px;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.portfolio-card h3 {
  font-size: 22px;
  color: var(--primary-green);
}

.portfolio-card p {
  color: var(--stone-gray);
  flex-grow: 1;
}

.project-type {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--sage-green);
  color: var(--soft-white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RESULTS SECTION */
.results {
  background-color: var(--warm-white);
  text-align: center;
}

.results h2 {
  margin-bottom: 50px;
}

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

.result-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--moss);
}

.result-card h3 {
  font-size: 44px;
  color: var(--forest-green);
  margin-bottom: 12px;
}

.result-card p {
  font-size: 16px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

/* BLOG PAGE */
.blog-categories {
  background-color: var(--soft-white);
  padding: 40px 20px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-link {
  padding: 10px 24px;
  background-color: var(--cream);
  color: var(--forest-green);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-link:hover,
.category-link.active {
  background-color: var(--forest-green);
  color: var(--soft-white);
  border-color: var(--forest-green);
}

.blog-posts {
  padding: 80px 20px;
  background-color: var(--warm-white);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  flex: 1 1 320px;
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.blog-card h3 {
  font-size: 22px;
  color: var(--primary-green);
  line-height: 1.3;
}

.blog-card p {
  color: var(--stone-gray);
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--stone-gray);
}

/* NEWSLETTER */
.newsletter {
  background-color: var(--cream);
  padding: 80px 20px;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-note {
  margin-top: 24px;
}

.newsletter-note p {
  font-size: 13px;
  color: var(--stone-gray);
  margin-bottom: 8px;
}

/* CONTACT PAGE */
.contact-options {
  padding: 80px 20px;
  background-color: var(--soft-white);
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.contact-card img {
  width: 56px;
  height: 56px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(20%) saturate(1500%) hue-rotate(70deg);
}

.contact-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--stone-gray);
  margin-bottom: 0;
  font-size: 15px;
}

.contact-card a {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 80px 20px;
  background-color: var(--warm-white);
}

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

.contact-form-section > p {
  text-align: center;
  color: var(--stone-gray);
  margin-bottom: 40px;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.form-note p {
  font-size: 13px;
  color: var(--stone-gray);
  margin-bottom: 8px;
}

/* SHOWROOM */
.showroom {
  padding: 80px 20px;
  background-color: var(--soft-white);
}

.showroom h2 {
  text-align: center;
  margin-bottom: 20px;
}

.showroom > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--stone-gray);
}

.showroom-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--cream);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--sage-green);
}

.showroom-info p {
  margin-bottom: 16px;
  color: var(--charcoal);
}

/* FAQ */
.faq-contact {
  padding: 80px 20px;
  background-color: var(--warm-white);
}

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

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

.faq-item {
  background-color: var(--soft-white);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--sage-green);
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--stone-gray);
  margin-bottom: 0;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.last-updated {
  color: var(--stone-gray);
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  padding: 80px 20px;
  background-color: var(--soft-white);
}

.legal-content .content-wrapper {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--primary-green);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 2px solid var(--cream);
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 100px 20px;
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: var(--forest-green);
  color: var(--soft-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(62, 107, 35, 0.3);
}

.next-steps,
.immediate-actions,
.testimonial-single,
.social-proof {
  padding: 80px 20px;
}

.next-steps {
  background-color: var(--soft-white);
}

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

.step-card,
.action-card {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-card:hover,
.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.step-card h3,
.action-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--stone-gray);
  margin-bottom: 0;
  font-size: 14px;
}

.timeline {
  text-align: center;
  margin-top: 32px;
  color: var(--forest-green);
  font-weight: 600;
}

.immediate-actions {
  background-color: var(--warm-white);
  text-align: center;
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.urgent-contact {
  margin-top: 40px;
  font-size: 16px;
  color: var(--stone-gray);
}

.urgent-contact a {
  color: var(--forest-green);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-single {
  background-color: var(--cream);
}

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

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

.social-proof {
  background-color: var(--soft-white);
  text-align: center;
}

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

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--moss);
}

.stat-card h3 {
  font-size: 40px;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

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

.stats span {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  background-color: rgba(122, 155, 111, 0.1);
  border-radius: 30px;
}

/* PROCESS STEPS */
.process {
  background-color: var(--warm-white);
  text-align: center;
}

.process h2 {
  margin-bottom: 50px;
}

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: var(--cream);
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.15);
  border-color: var(--sage-green);
}

.step h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.step p {
  color: var(--stone-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  color: var(--soft-white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(45, 80, 22, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

#cookie-consent p {
  color: var(--warm-white);
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#accept-all-cookies {
  background-color: var(--soft-white);
  color: var(--forest-green);
}

#accept-all-cookies:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

#reject-all-cookies,
#cookie-settings {
  background-color: transparent;
  color: var(--soft-white);
  border: 2px solid var(--soft-white);
}

#reject-all-cookies:hover,
#cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 80, 22, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--soft-white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.3);
  position: relative;
}

.cookie-modal-content h2 {
  color: var(--primary-green);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--cream);
  border-radius: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--stone-gray);
  margin-bottom: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

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

.cookie-modal-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#save-cookie-preferences {
  background-color: var(--forest-green);
  color: var(--soft-white);
}

#save-cookie-preferences:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

#close-cookie-modal {
  background-color: var(--stone-gray);
  color: var(--soft-white);
}

#close-cookie-modal:hover {
  background-color: var(--charcoal);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  /* Adjust padding */
  .section,
  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  /* Stack elements */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-indicators {
    gap: 16px;
  }

  .trust-indicators span {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .service-card-detail,
  .testimonial-card,
  .achievement-card,
  .category-card,
  .portfolio-card,
  .result-card,
  .blog-card,
  .contact-card,
  .step-card,
  .action-card,
  .stat-card,
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer columns stack */
  .footer-column {
    flex: 1 1 100%;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Cookie consent */
  #cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }

  /* Blog categories */
  .categories-list {
    justify-content: flex-start;
  }

  /* Stats */
  .stats {
    gap: 16px;
  }

  .stats span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section,
  section {
    padding: 40px 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .service-card,
  .service-card-detail,
  .benefit-card,
  .testimonial-card,
  .portfolio-card,
  .blog-card {
    padding: 24px;
  }
}

/* SMOOTH SCROLLING & ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }

  .benefit-card,
  .service-card,
  .service-card-detail,
  .testimonial-card,
  .achievement-card,
  .category-card,
  .portfolio-card,
  .result-card,
  .blog-card,
  .contact-card,
  .step-card,
  .action-card,
  .stat-card,
  .step {
    animation: fadeInUp 0.6s ease-out;
  }
}

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

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

  header {
    position: static;
  }

  body {
    background-color: white;
  }

  a {
    text-decoration: underline;
  }
}