/* ============================================
   GLIMMER PULSE - SOFT PASTEL DESIGN SYSTEM
   Modern Landscape Design Website
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  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.7;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F3F0 100%);
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-mint: #E8F3F0;
  --pastel-sage: #C9DDD6;
  --pastel-rose: #F5D5D8;
  --pastel-cream: #FFF9F0;
  --pastel-lavender: #E8E4F3;
  --pastel-peach: #FFE8D9;
  --primary-forest: #2D5F4D;
  --secondary-gold: #C9A86A;
  --text-dark: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-gentle: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-forest);
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--secondary-gold);
}

ul {
  list-style: none;
}

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-gentle);
  color: var(--primary-forest);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--pastel-mint);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-mint) 100%);
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.1);
  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: var(--pastel-rose);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--secondary-gold);
  color: var(--white);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  color: var(--primary-forest);
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--pastel-sage);
  transform: translateX(8px);
}

/* HEADER */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-gentle);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.tagline {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

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

.main-nav a {
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--pastel-mint);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

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

.cta-button,
.btn-primary {
  background: linear-gradient(135deg, var(--primary-forest) 0%, #3D7F5D 100%);
  color: var(--white);
  box-shadow: var(--shadow-gentle);
}

.cta-button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #3D7F5D 0%, var(--primary-forest) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-forest);
  border: 2px solid var(--pastel-sage);
}

.btn-secondary:hover {
  background: var(--pastel-mint);
  border-color: var(--primary-forest);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-mint) 100%);
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--primary-forest);
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

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

.trust-badge {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--primary-forest);
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-sage) 0%, var(--secondary-gold) 100%);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

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

.benefit-card p {
  color: var(--text-dark);
  margin: 0;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat strong {
  font-size: 48px;
  font-weight: 700;
  color: var(--secondary-gold);
  font-family: 'Montserrat', sans-serif;
}

.stat span {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
  border-radius: 32px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-sage) 0%, var(--secondary-gold) 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-forest);
}

.service-card p {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-gold);
  margin: 0;
}

/* PROCESS PREVIEW */
.process-preview {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 200px;
  max-width: 220px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-forest);
}

.step p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* PROJECTS */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

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

.project-card p {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.project-card span {
  font-size: 14px;
  color: var(--secondary-gold);
  font-weight: 600;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-radius: 32px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

.testimonial-card strong {
  color: var(--primary-forest);
  font-weight: 600;
  font-style: normal;
}

.testimonial-card span {
  color: var(--text-light);
  font-size: 14px;
}

/* SUSTAINABILITY */
.sustainability {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.feature {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-cream) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.feature img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-forest);
}

.feature p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-forest) 0%, #3D7F5D 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  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: var(--white);
  color: var(--primary-forest);
}

.cta-section .btn-primary:hover {
  background: var(--pastel-mint);
  color: var(--primary-forest);
}

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

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

.trust-elements {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* CONTACT INFO */
.contact-info {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
  text-align: center;
}

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

/* SERVICES DETAIL */
.services-detail .service-item {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.services-detail .service-item:hover {
  box-shadow: var(--shadow-soft);
}

.services-detail .service-item h2 {
  text-align: left;
  margin-bottom: 16px;
}

.services-detail .service-item h2::after {
  margin: 16px 0 0 0;
}

.services-detail .service-item p {
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-gold);
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

/* SERVICE PROCESS */
.service-process {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  border-radius: 32px;
}

.process-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.phase {
  flex: 1 1 calc(20% - 24px);
  min-width: 200px;
  max-width: 220px;
  background: var(--white);
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
}

.phase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.phase h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-forest);
}

.phase p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* WARRANTY */
.warranty {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.warranty-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-peach) 100%);
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.warranty-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

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

.warranty-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.certifications {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* PROJECT STATS */
.project-stats {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.stat-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.stat-item strong {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-gold);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: var(--text-dark);
}

/* PROJECT SHOWCASE */
.project-showcase .project-detail {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.project-showcase .project-detail:hover {
  box-shadow: var(--shadow-soft);
}

.project-showcase .project-detail h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-forest);
}

.project-showcase .project-detail .testimonial {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-gold);
  font-style: italic;
  margin-top: 24px;
}

/* PROJECT CATEGORIES */
.project-categories {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
  border-radius: 32px;
}

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

.category-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 320px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

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

.category-item p {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-gold);
  margin-bottom: 8px;
}

.category-item span {
  font-size: 14px;
  color: var(--text-light);
}

/* PROJECT LOCATIONS */
.project-locations {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.locations-list p {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 0;
}

/* COMPANY STORY */
.company-story {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
}

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

.milestones p {
  flex: 1 1 calc(50% - 16px);
  min-width: 240px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  margin: 0;
}

/* MISSION VISION */
.mission-vision {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  border-radius: 32px;
}

.mission,
.vision,
.values {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  margin-bottom: 24px;
}

.mission h2,
.vision h2,
.values h2 {
  text-align: left;
  margin-bottom: 16px;
}

.mission h2::after,
.vision h2::after,
.values h2::after {
  margin: 16px 0 0 0;
}

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

.value-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 240px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-cream) 100%);
  padding: 24px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-forest);
}

.value-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* TEAM */
.team {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-forest);
}

.team-member strong {
  display: block;
  color: var(--secondary-gold);
  margin-bottom: 12px;
  font-size: 14px;
}

.team-member p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* CERTIFICATIONS */
.certifications-section {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
  border-radius: 32px;
}

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

.cert-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

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

.cert-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* SUSTAINABILITY COMMITMENT */
.sustainability-commitment {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.commitment-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.commitment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

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

.commitment-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.impact-stats {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
}

.impact-stats h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-forest);
}

.impact-stats p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* COMPANY STATS */
.company-stats {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  border-radius: 32px;
}

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

.company-stats .stats-grid p {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 180px;
  background: var(--white);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

/* PROCESS PHASES DETAIL */
.phase-detail {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-gentle);
  margin-bottom: 24px;
}

.phase-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.phase-detail h2::after {
  margin: 16px 0 0 0;
}

.phase-detail h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

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

.step-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 260px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 24px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.step-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-forest);
}

.step-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* TIMELINE VISUAL */
.timeline-visual {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  border-radius: 32px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.timeline p {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-gold);
  margin: 0;
}

.note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* COMMUNICATION */
.communication {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.channel-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

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

.channel-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

/* QUALITY STANDARDS */
.quality-standards {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
  border-radius: 32px;
}

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

.standard-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
}

.standard-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

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

.standard-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

.certification {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* CONTACT FORM */
.contact-form-section {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

.form-notice {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  padding: 24px 28px;
  border-radius: 16px;
  margin-bottom: 32px;
  text-align: center;
}

.form-notice p {
  margin-bottom: 8px;
}

.form-fields-display {
  max-width: 600px;
  margin: 0 auto;
}

.field-group {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-cream) 100%);
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.field-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 8px;
}

.field-description {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.trust-badges {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
}

/* CONTACT INFO DETAILED */
.contact-info-detailed {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  border-radius: 32px;
}

.detail-block {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.detail-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-forest);
}

.detail-block p {
  margin-bottom: 8px;
}

/* SERVICE AREAS */
.service-areas {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

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

.area-block {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.area-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.area-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-forest);
}

.area-block p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.area-block em {
  font-size: 13px;
  color: var(--text-light);
}

/* APPOINTMENT BOOKING */
.appointment-booking {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  border-radius: 32px;
}

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.booking-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gentle);
  transition: all 0.3s ease;
}

.booking-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.booking-option h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-forest);
}

.booking-option p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* CTA FOOTER */
.cta-footer {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
  text-align: center;
}

.hours-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
}

/* LEGAL PAGE */
.legal-page {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
}

.legal-content {
  max-width: 800px;
  margin: 32px auto;
}

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h2::after {
  margin: 12px 0 0 0;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* THANK YOU PAGE */
.thank-you-page {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-gentle);
  text-align: center;
}

.thank-you-content {
  margin-bottom: 48px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sage) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--primary-forest);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gentle);
}

.thank-you-page h1 {
  margin-bottom: 16px;
}

.lead {
  font-size: 20px;
  color: var(--secondary-gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.next-steps,
.next-actions,
.while-you-wait {
  margin-bottom: 48px;
}

.next-steps h2,
.next-actions h2,
.while-you-wait h2 {
  margin-bottom: 32px;
}

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

.suggestion-item,
.action-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.suggestion-item:hover,
.action-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gentle);
}

.suggestion-item h3,
.action-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-forest);
}

.suggestion-item p,
.action-item p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.timeline-note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

.contact-reminder,
.contact-info {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.social-proof {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 40px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.social-proof h2 {
  margin-bottom: 24px;
}

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

.social-proof .stats-grid p {
  flex: 1 1 calc(25% - 20px);
  min-width: 140px;
  background: var(--white);
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  margin: 0;
}

.cta-alternative {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: var(--shadow-gentle);
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--primary-forest) 0%, #3D7F5D 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--white);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-mint) 100%);
  padding: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
}

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

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

.cookie-accept {
  background: var(--primary-forest);
  color: var(--white);
  border: none;
}

.cookie-accept:hover {
  background: #3D7F5D;
  transform: translateY(-2px);
}

.cookie-reject {
  background: var(--white);
  color: var(--primary-forest);
  border: 2px solid var(--pastel-sage);
}

.cookie-reject:hover {
  background: var(--pastel-mint);
}

.cookie-settings {
  background: transparent;
  color: var(--primary-forest);
  border: 2px solid var(--primary-forest);
}

.cookie-settings:hover {
  background: var(--primary-forest);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-soft);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

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

.cookie-category {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 16px;
  margin: 0;
  color: var(--primary-forest);
}

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

.cookie-toggle.active {
  background: var(--primary-forest);
}

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

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

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-save {
  background: var(--primary-forest);
  color: var(--white);
  border: none;
}

.cookie-save:hover {
  background: #3D7F5D;
  transform: translateY(-2px);
}

.cookie-accept-all {
  background: var(--secondary-gold);
  color: var(--white);
  border: none;
}

.cookie-accept-all:hover {
  background: #B8985A;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .benefit-card,
  .service-card,
  .project-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-button,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .benefit-card,
  .service-card,
  .project-card,
  .step,
  .phase,
  .feature,
  .category-item,
  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-consent .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 48px 16px;
  }
  
  .cta-button,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
  animation: slideInRight 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-button,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}