/* =================================================================
   ShinEvo Maintain - Nature Organic Design Style
   Complete CSS Styles for All Pages
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E2C;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

/* Nature Organic Color Palette */
:root {
  --primary-green: #4A7C4E;
  --secondary-green: #6B9B6F;
  --accent-earth: #8B6F47;
  --light-sage: #D4E4D4;
  --cream-bg: #F9F7F4;
  --dark-forest: #2C3E2C;
  --warm-sand: #E8DCC4;
  --organic-brown: #5C4033;
  --text-primary: #2C3E2C;
  --text-secondary: #5C6B5C;
}

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

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

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

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

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

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

/* Header Styles */
header {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8DCC4 100%);
  padding: 20px 0;
  border-bottom: 3px solid var(--light-sage);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(76, 124, 78, 0.1);
}

.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(44, 62, 44, 0.2));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-forest);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: var(--light-sage);
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary-green);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-green);
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #F9F7F4 0%, #E8DCC4 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(44, 62, 44, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--organic-brown);
  color: white;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-forest);
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(212, 228, 212, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: var(--light-sage);
  border-color: var(--primary-green);
  transform: translateX(8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--warm-sand) 100%);
  padding: 80px 20px;
  border-radius: 24px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 155, 111, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--dark-forest);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(44, 62, 44, 0.1);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.btn-primary {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-green);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 124, 78, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

/* Article Cards */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.article-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(76, 124, 78, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--light-sage);
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--secondary-green);
}

.category-tag {
  display: inline-block;
  background: var(--light-sage);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.article-card h3 {
  font-size: 20px;
  color: var(--dark-forest);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 16px;
  border-top: 1px solid var(--light-sage);
  flex-wrap: wrap;
  gap: 8px;
}

/* Value Proposition Section */
.value-proposition {
  background: white;
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 0;
  border: 3px solid var(--light-sage);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, var(--cream-bg) 0%, var(--warm-sand) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--light-sage);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.15);
  border-color: var(--primary-green);
}

.value-item h3 {
  color: var(--primary-green);
  font-size: 22px;
  margin-bottom: 16px;
}

.value-item p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 0;
  color: white;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #4a7c4e;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #4a7c4e;
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(76, 124, 78, 0.15);
  border: 3px solid var(--light-sage);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(76, 124, 78, 0.25);
  border-color: var(--primary-green);
}

.pricing-card.featured {
  border-color: var(--primary-green);
  background: linear-gradient(135deg, white 0%, var(--cream-bg) 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-earth);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 28px;
  color: var(--dark-forest);
  margin-bottom: 20px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.price span {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.features-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid var(--light-sage);
  position: relative;
  padding-left: 28px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background: var(--cream-bg);
  border-radius: 24px;
  margin: 60px 0;
}

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

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-forest);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid var(--light-sage);
}

.testimonial-author strong {
  color: var(--dark-forest);
  font-size: 16px;
  font-weight: 700;
}

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

/* Theme Cards */
.theme-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.theme-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.12);
  border: 3px solid var(--light-sage);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

.theme-card h2 {
  color: var(--primary-green);
  font-size: 26px;
  margin-bottom: 16px;
}

.theme-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.article-count {
  display: inline-block;
  background: var(--light-sage);
  color: var(--primary-green);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin: 16px 0;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.tag {
  display: inline-block;
  background: var(--light-sage);
  color: var(--primary-green);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tag:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(76, 124, 78, 0.12);
  border: 2px solid var(--light-sage);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--dark-forest);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-sage);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: var(--cream-bg);
  color: var(--dark-forest);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(76, 124, 78, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

/* Filter Toolbar */
.filter-toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid var(--light-sage);
  border-radius: 30px;
  font-size: 15px;
  background: white;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(76, 124, 78, 0.1);
}

.filter-select,
.sort-select {
  padding: 14px 20px;
  border: 2px solid var(--light-sage);
  border-radius: 30px;
  font-size: 15px;
  background: white;
  color: var(--dark-forest);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.filter-select:focus,
.sort-select:focus {
  outline: none;
  border-color: var(--primary-green);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination button {
  padding: 12px 24px;
}

.pagination span {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--warm-sand) 100%);
  border-radius: 24px;
  margin: 40px 0;
}

.page-header h1 {
  font-size: 48px;
  color: var(--dark-forest);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Sections */
.cta-section,
.cta-banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border-radius: 24px;
  margin: 60px 0;
  color: white;
}

.cta-section h2,
.cta-banner h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 20px;
}

.cta-section p,
.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

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

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

.cta-section .btn-primary:hover {
  background: var(--cream-bg);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-forest) 0%, var(--organic-brown) 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid var(--primary-green);
}

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

.footer-col {
  flex: 1 1 220px;
}

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

.footer-col h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Legal Pages */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  font-size: 42px;
  color: var(--dark-forest);
  margin-bottom: 16px;
}

.subtitle,
.last-updated {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.legal-content {
  max-width: 900px;
  margin: 40px auto 0;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
}

.legal-content h2 {
  font-size: 28px;
  color: var(--primary-green);
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 22px;
  color: var(--dark-forest);
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul,
.legal-content ol {
  margin: 20px 0 20px 24px;
  line-height: 1.8;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.legal-content strong {
  color: var(--dark-forest);
  font-weight: 700;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 40px auto;
}

.timeline-item {
  padding: 24px 0;
  border-left: 3px solid var(--primary-green);
  padding-left: 32px;
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--primary-green);
  border-radius: 50%;
  border: 3px solid var(--cream-bg);
}

.timeline-item strong {
  display: block;
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  max-width: 300px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

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

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

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

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

.service-card p {
  flex-grow: 1;
  color: var(--text-secondary);
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-earth);
  font-family: 'Montserrat', sans-serif;
}

/* Contact Options */
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.option-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

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

.option-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Office Info */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-around;
}

.info-item {
  flex: 1 1 250px;
  text-align: center;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--light-sage);
}

.info-item h3 {
  color: var(--primary-green);
  font-size: 20px;
  margin-bottom: 16px;
}

/* 404 Error Page */
.error-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--warm-sand) 100%);
  border-radius: 24px;
  margin: 40px 0;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.error-content h1 {
  font-size: 36px;
  color: var(--dark-forest);
  margin-bottom: 16px;
}

.error-content p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Search Section */
.search-section {
  padding: 60px 20px;
  text-align: center;
}

.search-wrapper {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.search-button {
  padding: 14px 32px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.search-button:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* Links Grid */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.link-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

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

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--warm-sand) 100%);
  border-radius: 24px;
  margin: 40px 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.3);
}

.thank-you-content h1 {
  font-size: 42px;
  color: var(--dark-forest);
  margin-bottom: 16px;
}

.confirmation-message {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 24px auto 0;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.step-item {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  border: 2px solid var(--light-sage);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

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

/* Navigation Cards */
.nav-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.nav-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(76, 124, 78, 0.1);
  border: 2px solid var(--light-sage);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 124, 78, 0.2);
  border-color: var(--primary-green);
}

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

.nav-card p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-forest) 0%, var(--organic-brown) 100%);
  color: white;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(44, 62, 44, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

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

.cookie-accept:hover {
  background: var(--secondary-green);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: white;
  border-color: white;
}

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

.cookie-settings {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 44, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 48px rgba(44, 62, 44, 0.4);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--light-sage);
  color: var(--primary-green);
}

.cookie-category {
  padding: 20px;
  background: var(--cream-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid var(--light-sage);
}

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

.cookie-category h3 {
  color: var(--dark-forest);
  font-size: 18px;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

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

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

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

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

  /* Article cards - single column */
  .article-card {
    flex: 1 1 100%;
  }

  /* Value items - single column */
  .value-item {
    flex: 1 1 100%;
  }

  /* Stats - 2 columns */
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }

  /* Pricing cards - single column */
  .pricing-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  /* Theme cards - single column */
  .theme-card {
    flex: 1 1 100%;
  }

  /* Team members - single column */
  .team-member {
    flex: 1 1 100%;
    max-width: none;
  }

  /* Service cards - single column */
  .service-card {
    flex: 1 1 100%;
  }

  /* Testimonials - single column */
  .testimonial-card {
    flex: 1 1 100%;
  }

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

  /* Filter toolbar - stack */
  .filter-toolbar {
    flex-direction: column;
  }

  .search-input,
  .filter-select,
  .sort-select {
    width: 100%;
  }

  /* Legal content padding */
  .legal-content {
    padding: 32px 24px;
  }

  /* Form wrapper padding */
  .form-wrapper {
    padding: 32px 24px;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

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

  /* Error code */
  .error-code {
    font-size: 80px;
  }

  /* Page header */
  .page-header h1 {
    font-size: 36px;
  }

  /* CTA sections */
  .cta-section h2,
  .cta-banner h2 {
    font-size: 32px;
  }

  /* Nav cards - 2 columns */
  .nav-card {
    flex: 1 1 calc(50% - 12px);
  }

  /* Option cards - single column */
  .option-card {
    flex: 1 1 100%;
  }

  /* Link cards - single column */
  .link-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* Further typography adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  /* Button text */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Stats - single column */
  .stat-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Nav cards - single column */
  .nav-card {
    flex: 1 1 100%;
  }

  /* Sections padding */
  .section {
    padding: 32px 16px;
  }

  /* Cookie modal adjustments */
  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal-content {
    padding: 24px 20px;
  }

  /* Error code */
  .error-code {
    font-size: 64px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  .btn {
    border: 2px solid #000;
  }

  * {
    box-shadow: none !important;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--primary-green);
  outline-offset: 2px;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-green: #2d5530;
    --text-secondary: #1a1a1a;
  }

  .btn {
    border-width: 3px;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme for nature organic style */
  /* Nature themes typically work better in light mode */
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

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

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

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

/* Apply fade in animation to main sections */
main > section {
  animation: fadeIn 0.6s ease-out;
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success message */
.success-message {
  background: var(--light-sage);
  color: var(--primary-green);
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid var(--primary-green);
  margin: 20px 0;
  font-weight: 600;
}

/* Error message */
.error-message {
  background: #ffe0e0;
  color: #c41e3a;
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid #c41e3a;
  margin: 20px 0;
  font-weight: 600;
}

/* End of CSS */