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

:root {
  --primary: #1a4d2e;
  --secondary: #4f7942;
  --accent: #d4af37;
  --light: #f8faf8;
  --dark: #0d2818;
  --text: #2c3e30;
  --white: #fff;
  --gray: #6b7c6e;
  --border: #d8e3d8;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text);
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,121,66,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}

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

section {
  padding: 40px 0;
}

h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--primary);
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.about, .approach, .benefits, .timeline, .custom-selection {
  background: var(--white);
}

.services, .process-preview, .selection-criteria, .plant-categories {
  background: var(--light);
}

.service-grid, .testimonial-grid, .criteria-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card, .testimonial, .criteria-item, .product-card {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.service-card h3, .criteria-item h3, .product-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.testimonial {
  font-style: italic;
}

.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--secondary);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

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

.step h3 {
  color: var(--secondary);
  margin-bottom: 10px;
}

.cta, .final-cta {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
}

.cta h2, .final-cta h2 {
  color: var(--white);
}

.featured, .showcase, .gallery {
  background: var(--light);
}

.featured-grid, .showcase-grid, .gallery-grid {
  display: grid;
  gap: 30px;
  margin-top: 25px;
}

.featured-item, .showcase-item, .gallery-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-item img, .showcase-item img, .gallery-item img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  display: block;
}

.featured-item h3, .showcase-item h3, .gallery-item h3 {
  padding: 20px 20px 10px;
  color: var(--primary);
}

.featured-item p, .showcase-item p, .gallery-item p {
  padding: 0 20px 20px;
  margin: 0;
}

.expertise, .philosophy {
  background: var(--white);
}

.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.content-section {
  background: var(--white);
}

.detailed-steps {
  background: var(--light);
}

.detail-step {
  background: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.detail-step h3 {
  color: var(--secondary);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}

.category-list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.category {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.category h3 {
  color: var(--secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.contact-info, .contact-form-wrapper {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 6px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 12px;
}

form .btn {
  width: 100%;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.map-section {
  background: var(--light);
}

.map-container {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.contact-cta {
  background: var(--white);
  text-align: center;
}

.thankyou-page, .error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.thankyou-container, .error-container {
  text-align: center;
  color: var(--white);
  padding: 30px;
  max-width: 600px;
}

.thankyou-content h1, .error-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.error-content h1 {
  font-size: 72px;
  margin-bottom: 10px;
}

.error-content h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.thankyou-content p, .error-content p {
  font-size: 15px;
  margin-bottom: 20px;
}

.thankyou-buttons, .error-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.thankyou-note {
  margin-top: 25px;
  font-size: 13px;
  opacity: 0.9;
}

.policy-content {
  background: var(--white);
  padding: 40px 0;
}

.policy-content h1 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 10px;
}

.policy-content h2 {
  margin-top: 25px;
  font-size: 22px;
}

.policy-content h3 {
  margin-top: 15px;
  font-size: 17px;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
}

.update-date {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 20px;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-section p {
  font-size: 13px;
  line-height: 1.6;
}

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

.footer-section li {
  margin-bottom: 6px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

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

.popup-content p {
  flex: 1;
  margin: 0;
  font-size: 13px;
}

.popup-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.popup-buttons .btn {
  padding: 8px 20px;
  font-size: 12px;
}

.popup-buttons a {
  color: var(--white);
  font-size: 12px;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid var(--border);
  }

  nav a {
    display: block;
    padding: 12px 0;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero p {
    font-size: 15px;
  }

  h2 {
    font-size: 22px;
  }

  .service-grid, .testimonial-grid, .criteria-grid, .product-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .popup-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .popup-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .thankyou-buttons, .error-buttons {
    flex-direction: column;
    width: 100%;
  }

  .thankyou-buttons .btn, .error-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .hero {
    padding: 35px 0;
  }

  .hero {
    padding: 50px 0;
  }

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

  section {
    padding: 30px 0;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .service-card, .testimonial, .criteria-item, .product-card, .detail-step, .category {
    padding: 15px;
  }

  .price {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 16px;
  }

  .hero {
    padding: 40px 0;
  }

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

  h2 {
    font-size: 18px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}
