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

:root {
  /* Pistachio Green Color Palette */
  --primary-green: #93c572;
  --primary-green-dark: #6fa34d;
  --primary-green-light: #b5dc98;
  --accent-green: #7ab55c;
  --bg-cream: #fff9f0;
  --bg-light-green: #f0f7ed;
  --text-dark: #2c3e2c;
  --text-medium: #4a5d4a;
  --text-light: #6b7d6b;
  --white: #ffffff;
  --shadow: rgba(106, 125, 106, 0.15);
  --shadow-hover: rgba(106, 125, 106, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-cream);
}

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

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--primary-green-dark);
  font-weight: 700;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-green-light) 0%,
    var(--primary-green) 100%
  );
  padding: 120px 20px 100px;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-green-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--bg-cream);
}

/* Section Styles */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Products Section */
.products {
  background-color: var(--bg-light-green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}

.product-card.featured {
  border: 3px solid var(--primary-green);
}

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.product-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-tagline {
  font-size: 1.1rem;
  color: var(--primary-green-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin: 1.5rem 0;
}

.product-features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
}

.product-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-green-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: var(--accent-green);
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--accent-green)
  );
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-light-green);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background-color: var(--bg-light-green);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p,
.contact-item a {
  color: var(--text-medium);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary-green-dark);
}

.contact-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.contact-message a {
  color: var(--primary-green-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-message a:hover {
  color: var(--accent-green);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 20px 1.5rem;
}

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

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-green-light);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-green-light);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 1rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .nav-links {
    font-size: 0.9rem;
    gap: 0.8rem;
  }

  .logo h1 {
    font-size: 1.2rem;
  }
}
