@media (max-width: 500px) {
  .container {
    padding: 0.25rem 0.1rem;
    max-width: 100vw;
  }
  .header-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.1rem;
  }
  .logo-img {
    width: 32px;
    height: 32px;
  }
  .nav-list {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-list li a {
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
  }
  .btn-quote {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }
  .hero {
    min-height: 220px;
    padding: 0.5rem 0.1rem;
  }
  .hero-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
  }
  .feature-card {
    min-width: 0;
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  .about-content, .products-grid, .contact-content {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .about-title, .products-title, .contact-title {
    font-size: 1.1rem;
  }
  .about-desc, .products-desc, .contact-desc {
    font-size: 0.9rem;
  }
  .product-card, .feature-card, .stat-card {
    padding: 0.7rem;
    font-size: 0.9rem;
    min-width: 0;
    width: 100%;
    margin-bottom: 0.7rem;
  }
  .products-banner-img, .about-image, .hero-bg-img {
    max-width: 100vw;
    height: auto;
    border-radius: 0.5rem;
  }
  .contact-form input, .contact-form textarea {
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem;
  }
  .contact-form label {
    font-size: 0.9rem;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .hero-content, .about-content, .products-grid, .contact-content {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: stretch !important;
  }
  .about-image-wrapper, .about-info {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .products-banner {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .products-banner-img {
    max-width: 100% !important;
    height: auto !important;
  }
  .product-card, .feature-card, .stat-card {
    min-width: 0 !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-title, .about-title, .products-title, .contact-title {
    font-size: 2rem !important;
  }
  .hero-subtitle, .about-desc, .products-desc, .contact-desc {
    font-size: 1rem !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0.5rem 0.25rem;
  }
  .hero-title, .about-title, .products-title, .contact-title {
    font-size: 1.3rem !important;
  }
  .hero-subtitle, .about-desc, .products-desc, .contact-desc {
    font-size: 0.95rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 1rem !important;
    padding: 0.7rem 1.2rem !important;
  }
  .product-card, .feature-card, .stat-card {
    padding: 1rem !important;
  }
}
/* Professional color palette and design tokens */
:root {
  --primary: #217a36;
  --primary-dark: #145223;
  --accent: #ffc72c;
  --bg: #f7f8f9;
  --surface: #fff;
  --text: #1a2e22;
  --text-light: #fff;
  --muted: #6d6d6d;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

.main-content {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header Styles */
.site-header {
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}
.logo-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.25rem;
}
.main-nav {
  flex: 1;
  margin-left: 2rem;
}
.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-list li a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.08);
}
.btn-quote {
  background: var(--primary);
  color: var(--text-light);
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  margin-left: 2rem;
}
.btn-quote:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .main-nav {
    margin-left: 0;
    width: 100%;
  }
  .nav-list {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-quote {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  background: none;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #217a36 60%, #ffc72c 100%);
  opacity: 0.85;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 4rem;
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.2s both;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: var(--text-light);
  animation: fadeIn 1.2s cubic-bezier(.77,0,.175,1) 0.4s both;
}
.hero-title-accent {
  color: var(--accent);
  font-weight: 800;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--surface);
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.6s both;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  border-color: var(--primary-dark);
}
.btn-outline {
  background: var(--surface);
  color: var(--primary-dark);
  border: 2px solid var(--surface);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-icon {
  margin-left: 0.5rem;
}
.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.card.feature-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  min-width: 260px;
  color: var(--text-light);
  text-align: center;
  border: none;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.8s both;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 1rem;
  color: var(--surface);
  opacity: 0.9;
}
.hero-scroll-indicator {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.scroll-outer {
  width: 32px;
  height: 48px;
  border-radius: 16px;
  border: 2px solid var(--surface);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}
.scroll-inner {
  width: 8px;
  height: 16px;
  border-radius: 4px;
  background: var(--accent);
  margin-top: 8px;
}

/* About Section */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  justify-content: space-between;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.about-info {
  flex: 2 1 400px;
  min-width: 320px;
}
.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.about-title-accent {
  color: var(--accent);
  font-weight: 700;
}
.about-underline {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.about-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 1rem;
  color: var(--muted);
}
.about-cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fffbe6;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: #b38f00;
}
.cert-icon {
  font-size: 1.5rem;
}
.cert-title {
  font-weight: 700;
}
.cert-desc {
  font-size: 0.95rem;
  color: #b38f00;
}
.about-image-wrapper {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: slideInRight 1.2s cubic-bezier(.77,0,.175,1) 0.4s both;
}

/* About Extra Sections */
.about-extra {
  margin-top: 3rem;
  margin-bottom: 3rem;
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}
.about-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-values-list,
.about-services-list,
.about-approach-list,
.about-team-list,
.about-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.about-values-list li,
.about-services-list li,
.about-approach-list li,
.about-team-list li,
.about-why-list li {
  font-size: 1.08rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .about-extra {
    padding: 1.5rem 0.5rem;
  }
}

/* --- About Section Professional Layout & Animations --- */
.card-section {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  position: relative;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.5rem 0 1.5rem 0;
}
/* Grid layouts for lists */
.values-grid, .services-grid, .approach-grid, .team-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 0 0;
  padding: 0;
  list-style: none;
}
/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(.77,0,.175,1) forwards;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s cubic-bezier(.77,0,.175,1) forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s cubic-bezier(.77,0,.175,1) forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Responsive tweaks */
@media (max-width: 700px) {
  .card-section {
    padding: 1.2rem 0.5rem;
  }
  .values-grid, .services-grid, .approach-grid, .team-grid, .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Products Section */
.products {
  background: var(--bg);
  padding: 4rem 0 2rem 0;
}
.products-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}
.products-title-accent {
  color: var(--accent);
  font-weight: 700;
}
.products-underline {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 2rem auto;
}
.products-desc {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.card.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  position: relative;
  border: 1px solid var(--border);
  text-align: left;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
}
.card.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.product-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.75rem;
  box-shadow: var(--shadow);
}
.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.product-text {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.product-list {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--primary);
  font-size: 1rem;
}
.product-list li {
  margin-bottom: 0.25rem;
  list-style: disc inside;
}
.products-banner {
  position: relative;
  margin: 2rem auto 0 auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.products-banner-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.7);
}
.products-banner-content {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: linear-gradient(120deg, #217a36 60%, #ffc72c 100%);
  opacity: 0.85;
  padding: 2rem;
}
.products-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.products-banner-desc {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Products Categories Section */
.products-categories {
  margin: 3rem auto 0 auto;
  max-width: 900px;
  text-align: center;
}
.categories-list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}
.category-column {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
}
.category-item {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.category-item:hover,
.category-item:focus {
  background: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.05);
}
.category-details {
  min-height: 60px;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--bg);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  margin: 0 auto;
  max-width: 500px;
  opacity: 0;
  transition: opacity 0.4s;
}
.category-details.show {
  opacity: 1;
}
.details-content {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: var(--surface);
  padding: 4rem 0 2rem 0;
}
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-title-accent {
  color: var(--accent);
  font-weight: 700;
}
.contact-underline {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 2rem auto;
}
.contact-desc {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.contact-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--bg);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-list {
  margin-bottom: 2rem;
}
.contact-info-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info-icon {
  font-size: 1.5rem;
}
.contact-assist {
  background: #217a36;
  color: var(--text-light);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
  text-align: left;
}
.assist-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}
.assist-desc {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}
.btn-assist {
  background: #e6d7b3;
  color: #217a36;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-block;
}
.btn-assist:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.contact-form-wrapper {
  flex: 2 1 400px;
  min-width: 320px;
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: flex;
  gap: 1.5rem;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form button {
  align-self: flex-end;
}
.contact-thanks {
  margin-top: 1rem;
  color: #217a36;
  font-weight: 600;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .contact-card {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}
footer .footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}
footer .footer-title {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
footer .footer-links li {
  margin-bottom: 0.5rem;
}
footer .footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: var(--accent);
}
footer .footer-contact {
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
footer .footer-social a {
  background: #e6d7b3;
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s;
}
footer .footer-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
footer .footer-bottom {
  border-top: 1px solid #145223;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #e6d7b3;
}

/* --- Distinct Card Styles for About Sections --- */
.card-hero {
  background: linear-gradient(120deg, #f7f8f9 60%, #eaf7ea 100%);
  box-shadow: 0 8px 32px rgba(44,62,80,0.10);
}
.card-alt-bg {
  background: #f7f8f9;
  border: 1px solid var(--border);
}
.card-gradient {
  background: linear-gradient(120deg, #eaf7ea 60%, #fffbe6 100%);
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
}
.card-border {
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
.card-shadow {
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(44,62,80,0.16);
  border-radius: var(--radius-md);
}
/* Stat cards spacing */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
/* Responsive tweaks for hero image */
.about-hero-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 700px) {
  .about-hero-img {
    max-height: 180px !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-content {
  animation: fadeInUp 1s cubic-bezier(.77,0,.175,1) 0.2s both;
}
.hero-title,
.hero-title-accent {
  animation: fadeIn 1.2s cubic-bezier(.77,0,.175,1) 0.4s both;
}
.hero-actions {
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.6s both;
}
.hero-features .feature-card {
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.8s both;
}
.about-content {
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
}
.about-image {
  animation: slideInRight 1.2s cubic-bezier(.77,0,.175,1) 0.4s both;
}
.stat-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.card.product-card {
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1) 0.2s both;
}
.card.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.btn,
.btn-quote {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover,
.btn-quote:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.nav-list li a {
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-list li a:hover {
  transform: scale(1.08);
}

/* Products List Section */
.products-list-wrapper {
  margin: 2.5rem auto 0 auto;
  max-width: 900px;
  text-align: center;
}
.products-list {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 2rem;
}
.products-list-col {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
  text-align: left;
}
.products-list-col li {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  padding-left: 0.5rem;
}
.products-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}
.products-underline {
  width: 100%;
  max-width: 98%;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem auto;
}
@media (max-width: 900px) {
  .products-list {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .products-list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .products-list-col {
    min-width: 0;
    text-align: center;
  }
}

/* Products Dropdown Section */
.products-dropdown-wrapper {
  margin: 2.5rem auto 0 auto;
  max-width: 400px;
  text-align: center;
}
.products-dropdown {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  transition: border 0.2s;
}
.products-dropdown:focus {
  border-color: var(--accent);
  outline: none;
}
.products-dropdown-result {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.products-dropdown-result.show {
  opacity: 1;
}

/* Header Dropdown Styles */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  z-index: 1000;
  list-style: none;
  margin: 0;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(10px);
}
.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-align: center;
  padding-left: 0;
}
.dropdown-columns {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
.dropdown-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 140px;
}
.dropdown-columns li {
  font-size: 1.05rem;
  color: var(--primary-dark);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.25rem;
}
.dropdown-columns li:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
@media (max-width: 900px) {
  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    padding: 1rem 0.5rem;
  }
  .dropdown-columns {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .dropdown-columns {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .dropdown-menu {
    min-width: 180px;
  }
}

/* Services List Section */
.services {
  padding: 4rem 0 2rem 0;
  background: var(--surface);
}
.services-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}
.services-underline {
  width: 100%;
  max-width: 98%;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem auto;
}
.services-list-wrapper {
  margin: 2.5rem auto 0 auto;
  max-width: 900px;
  text-align: center;
}
.services-list {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 2rem;
}
.services-list-col {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 220px;
  text-align: left;
}
.services-list-col li {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
  padding-left: 0.5rem;
}
@media (max-width: 900px) {
  .services-list {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .services-list {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .services-list-col {
    min-width: 0;
    text-align: center;
  }
}

/* Enhanced Contact Section Cards */
.contact-card {
  background: var(--surface);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
.contact-form-wrapper {
  margin-bottom: 0;
}
.contact-assist.contact-card {
  background: #217a36;
  color: var(--text-light);
  box-shadow: var(--shadow);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .contact-card {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #14532d;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1002;
}
.hamburger-icon {
  display: block;
  font-size: 2.2rem;
}
.hamburger-btn {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,44,44,0.08);
  cursor: pointer;
  z-index: 2000;
  position: fixed;
  top: 18px;
  right: 18px;
}
.sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(44,44,44,0.08);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  z-index: 1000;
  padding: 2rem 1.2rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.sidebar.is-open {
  transform: translateX(0);
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  color: #22c55e;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-nav a i {
  margin-right: 12px;
  font-size: 1.3em;
}
.sidebar-nav a:hover {
  color: #14532d;
}
.close-btn {
  font-size: 2rem;
  color: #22c55e;
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 2rem;
  cursor: pointer;
}
