/* === ORGANIC NATURE STYLE — 0037 === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

:root {
  --forest: #1b4332;
  --green-dark: #2d6a4f;
  --green-mid: #40916c;
  --green-light: #52b788;
  --earth: #a98467;
  --cream: #fefae0;
  --warm-white: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #fefae0;
  color: #1f2937;
}

.bg-cream {
  background-color: #fefae0;
}

/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}

/* FAQ Accordion */
.faq-btn .fa-chevron-down {
  transition: transform 0.3s ease;
}

.faq-btn.active .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-btn.active {
  color: var(--green-dark);
}

/* Mobile menu */
#mobile-menu {
  transition: all 0.3s ease;
}

#mobile-menu.show {
  display: block;
}

/* Counter styles */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Organic shadow for cards */
.organic-shadow {
  box-shadow: 0 10px 40px rgba(45, 111, 79, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Leaf SVG animation */
@keyframes float-leaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(2deg); }
  75% { transform: translateY(5px) rotate(-1deg); }
}

.float-leaf {
  animation: float-leaf 6s ease-in-out infinite;
}

/* Pulse dot animation */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #1b4332, #40916c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form focus styles */
input:focus, textarea:focus {
  border-color: #40916c !important;
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1) !important;
}

/* Wood texture background for special sections */
.wood-bg {
  background-color: #f5e6d3;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(139, 90, 43, 0.03) 2px,
    rgba(139, 90, 43, 0.03) 4px
  );
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
}

/* Selection */
::selection {
  background: rgba(64, 145, 108, 0.2);
  color: #1b4332;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f7f0; }
::-webkit-scrollbar-thumb { background: #52b788; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #40916c; }

/* Rounded image container */
.rounded-image-container {
  border-radius: 4rem;
  overflow: hidden;
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
