/* ===================================
   AETHER WATT - VIBRANT ENERGETIC DESIGN
   Modern Garden Design Website
   =================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ===================================
   VIBRANT ENERGETIC COLOR PALETTE
   Electric & Dynamic Colors
   =================================== */
:root {
  --primary-green: #2D5016;
  --electric-lime: #C9D991;
  --warm-brown: #8B7355;
  --bright-yellow: #FFD700;
  --electric-blue: #00D4FF;
  --hot-pink: #FF1493;
  --vibrant-orange: #FF6B35;
  --pure-white: #FFFFFF;
  --deep-black: #0a0a0a;
  --energetic-gradient: linear-gradient(135deg, #2D5016 0%, #C9D991 50%, #FFD700 100%);
}

/* ===================================
   TYPOGRAPHY - BOLD & DYNAMIC
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FF6B35);
}

h3 {
  font-size: 24px;
  color: #2D5016;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #2D5016;
}

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

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===================================
   HEADER - ENERGETIC NAVIGATION
   =================================== */
header {
  background: linear-gradient(135deg, #2D5016 0%, #3a6b1f 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-2deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFD700;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

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

/* ===================================
   MOBILE MENU - SMOOTH SLIDE-IN
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #1a3009 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #FFD700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #FFD700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-close:hover {
  background: #FFD700;
  color: #2D5016;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateX(10px);
  border-left-color: #FF6B35;
}

/* ===================================
   HERO SECTION - ELECTRIC ENERGY
   =================================== */
.hero {
  background: linear-gradient(135deg, #2D5016 0%, #C9D991 50%, #FFD700 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

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

.hero h1 {
  color: #ffffff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   BUTTONS - VIBRANT & CLICKABLE
   =================================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2D5016;
  transform: translateY(-4px) scale(1.05);
}

/* ===================================
   TRUST INDICATORS - DYNAMIC
   =================================== */
.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  border: 2px solid #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===================================
   VALUE PROPOSITION - ENERGETIC CARDS
   =================================== */
.value-proposition {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.value-proposition h2 {
  text-align: center;
  margin: 0 auto 16px;
}

.value-proposition h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.value-proposition > p {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4a4a4a;
}

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

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 3px solid #FFD700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #FFD700, #FF6B35, #00D4FF);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.3);
}

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

.value-card p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================
   SERVICES - VIBRANT SHOWCASE
   =================================== */
.services-preview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  text-align: center;
}

.services-preview h2 {
  text-align: center;
  margin: 0 auto 16px;
}

.services-preview h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.services-preview > p {
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4a4a4a;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 4px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(135deg, #FFD700, #FF6B35, #00D4FF, #FF1493);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

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

.service-card p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card .price {
  display: block;
  font-weight: 800;
  font-size: 24px;
  color: #FF6B35;
  margin-top: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  text-align: center;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
  margin: 0 auto 48px;
}

.testimonials h2::after {
  left: 50%;
  transform: translateX(-50%);
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-left: 6px solid #FFD700;
  text-align: left;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.4);
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

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

.testimonial-card .author strong {
  color: #2D5016;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-card .author span {
  color: #666666;
  font-size: 14px;
}

.testimonials .rating {
  color: #FFD700;
  font-weight: 700;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===================================
   CTA BANNER - HIGH ENERGY
   =================================== */
.cta-banner, .cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-banner h2, .cta h2 {
  color: #0a0a0a;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.cta-banner p, .cta p {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta-banner ul, .cta ul {
  list-style: none;
  margin: 32px auto;
  max-width: 500px;
  text-align: left;
}

.cta-banner ul li, .cta ul li {
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
}

.cta-banner ul li::before, .cta ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 900;
  font-size: 20px;
}

.trust-line {
  margin-top: 24px;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

/* ===================================
   FOOTER - VIBRANT BASE
   =================================== */
footer {
  background: linear-gradient(135deg, #1a3009 0%, #0a1504 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-col h4 {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-col nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-col nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #FFD700;
}

.footer-col nav a:hover {
  color: #FFD700;
  padding-left: 24px;
}

.footer-col nav a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 14px;
}

/* ===================================
   PROJECTS & PORTFOLIO
   =================================== */
.projects {
  padding: 60px 20px;
}

.project-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 3px solid #C9D991;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(201, 217, 145, 0.3);
  border-color: #FFD700;
}

.project-card h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.project-card p {
  color: #4a4a4a;
  margin-bottom: 12px;
}

.project-card ul {
  margin-top: 16px;
  padding-left: 0;
}

.project-card ul li {
  color: #4a4a4a;
  padding: 8px 0 8px 32px;
  position: relative;
}

.project-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 12px;
}

/* ===================================
   STATS - ELECTRIC NUMBERS
   =================================== */
.stats, .stats-bar {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
  text-align: center;
}

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

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

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #FF6B35;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat span {
  display: block;
  color: #2D5016;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.stats-bar span {
  color: #0a0a0a;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  text-transform: uppercase;
}

/* ===================================
   SERVICES DETAIL PAGE
   =================================== */
.services-detail {
  padding: 60px 20px;
  background: #ffffff;
}

.services-detail h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.services-detail .tagline {
  font-size: 18px;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 16px;
}

.services-detail .price {
  font-size: 32px;
  font-weight: 900;
  color: #FF6B35;
  margin-bottom: 24px;
  display: block;
}

.services-detail ul {
  margin: 24px 0;
  padding-left: 0;
}

.services-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
}

.services-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 900;
  font-size: 18px;
}

/* ===================================
   BLOG SECTION
   =================================== */
.categories {
  padding: 60px 20px;
  background: #f8f8f8;
}

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

.category-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  padding: 32px;
  border-radius: 16px;
  border: 3px solid #C9D991;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #FFD700;
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
}

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

.category-card span {
  color: #8B7355;
  font-weight: 700;
  font-size: 14px;
}

.featured-post {
  padding: 60px 20px;
  background: linear-gradient(135deg, #C9D991 0%, #FFD700 100%);
}

.post-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  position: relative;
}

.post-card.featured {
  border: 4px solid #FF6B35;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.post-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FF6B35;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.post-card h2, .post-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.post-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.post-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #8B7355;
  font-size: 14px;
  font-weight: 600;
}

.recent-posts {
  padding: 60px 20px;
}

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

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-options {
  padding: 60px 20px;
}

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

.option-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  border: 3px solid #C9D991;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
}

.option-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.note {
  margin-top: 24px;
  font-style: italic;
  color: #8B7355;
  text-align: center;
}

.office-info {
  padding: 60px 20px;
  background: #f8f8f8;
}

.info-block {
  margin: 32px 0;
}

.info-block h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.info-block ul {
  margin-top: 16px;
  padding-left: 0;
}

.info-block ul li {
  padding: 8px 0 8px 32px;
  position: relative;
}

.info-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 900;
}

.contact-details {
  padding: 60px 20px;
}

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

.detail-block {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid #FFD700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.detail-block h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

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

.legal-content h2 {
  color: #2D5016;
  margin-top: 48px;
  margin-bottom: 24px;
}

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

.legal-content p, .legal-content li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin: 16px 0 24px 32px;
}

.legal-content a {
  color: #2D5016;
  text-decoration: underline;
  font-weight: 600;
}

.legal-content a:hover {
  color: #FF6B35;
}

.last-updated {
  font-style: italic;
  color: #8B7355;
  margin-top: 16px;
}

/* ===================================
   THANK YOU / CONFIRMATION PAGE
   =================================== */
.checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2D5016, #C9D991);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  padding: 60px 20px;
  text-align: center;
}

.confirmation ol {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
  list-style-position: inside;
}

.confirmation ol li {
  padding: 16px;
  margin-bottom: 12px;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  font-weight: 600;
}

.next-actions {
  padding: 60px 20px;
  background: #f8f8f8;
}

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

.action-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 3px solid #C9D991;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
}

.action-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.testimonial {
  padding: 60px 20px;
  background: linear-gradient(135deg, #C9D991 0%, #FFD700 100%);
  text-align: center;
}

.trust-badge {
  margin-top: 24px;
  font-weight: 700;
  color: #2D5016;
}

/* ===================================
   SEASONAL & NEWSLETTER
   =================================== */
.seasonal {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.seasonal ul {
  max-width: 700px;
  margin: 24px auto;
  padding-left: 0;
}

.seasonal ul li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #4a4a4a;
}

.seasonal ul li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 20px;
}

.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
}

.newsletter p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
  padding: 60px 20px;
  background: #ffffff;
}

.faq-item {
  background: #f8f8f8;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid #C9D991;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #FFD700;
  transform: translateX(8px);
}

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

.faq-item p {
  color: #4a4a4a;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #1a3009 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #ffffff;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-text a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: 600;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  color: #0a0a0a;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Cookie Preferences Modal */
#cookie-preferences {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

.cookie-category h3 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background: #cccccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2D5016;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

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

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

/* ===================================
   STORY & MISSION SECTIONS
   =================================== */
.story, .mission, .values, .team, .service-area {
  padding: 60px 20px;
}

.story {
  background: #ffffff;
}

.mission {
  background: #f8f8f8;
}

.values {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.story h3, .mission h3, .service-area h3 {
  color: #2D5016;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.story ul, .mission ul, .service-area ul {
  margin: 24px 0;
  padding-left: 0;
}

.story ul li, .mission ul li, .service-area ul li {
  padding: 12px 0 12px 40px;
  position: relative;
}

.story ul li::before, .mission ul li::before, .service-area ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
}

/* ===================================
   RESPONSIVE DESIGN
   Mobile-First Approach
   =================================== */

/* Tablet (768px and up) */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .value-card, .service-card, .option-card, .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
}

/* Mobile (480px and up) */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 48px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
  
  .value-card, .service-card, .project-card {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .stat strong {
    font-size: 36px;
  }
  
  .cookie-modal {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent, #cookie-preferences {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
  
  .btn {
    border: 2px solid #000000;
  }
}