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

:root {
  --color-background: #fcfcfc;
  --color-foreground: #4a4a3d;
  --color-heading: #2d5f3f;
  --color-accent: #e67e22;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-navy-bg: #1e3a5f;
  --color-navy-fg: #fcfcfc;
  --color-green: #2d5f3f;
  --color-orange: #e67e22;
  --color-blue: #3b82f6;
  --color-emerald: #10b981;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-navy-bg);
  background-image: url("images/fresh-vegetables-and-fruits-wholesale-market.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 95, 0.85);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-navy-fg);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(252, 252, 252, 0.9);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(252, 252, 252, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
  background-color: rgba(252, 252, 252, 0.1);
  color: var(--color-navy-fg);
  border: 2px solid rgba(252, 252, 252, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(252, 252, 252, 0.2);
}

.btn-icon {
  margin-left: 0.5rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(34, 197, 94, 0.05), var(--color-background));
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-icon-green {
  background-color: rgba(45, 95, 63, 0.1);
  color: var(--color-green);
}

.service-icon-orange {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--color-orange);
}

.service-icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-blue);
}

.service-icon-emerald {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--color-muted);
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 5rem 0;
  background-color: rgba(249, 250, 251, 0.5);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}

.product-list {
  list-style: none;
}

.product-list li {
  display: flex;
  align-items: center;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Clients Section */
.clients-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.3), rgba(254, 249, 195, 0.2), rgba(220, 252, 231, 0.3));
}

.client-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .client-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .client-types-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.client-type-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.client-type-card:hover {
  border-color: rgba(45, 95, 63, 0.5);
}

.client-type-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.client-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.client-type-card:hover .client-type-image img {
  transform: scale(1.1);
}

.client-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.client-type-content {
  padding: 1.5rem;
}

.client-type-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.client-type-description {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Partners Section */
.partners-section {
  max-width: 900px;
  margin: 0 auto;
}

.partners-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(251, 146, 60, 0.1));
  border-radius: 1rem;
  padding: 0.125rem;
}

.partners-card > div {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
}

.partners-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.partner-item:hover {
  border-color: rgba(45, 95, 63, 0.5);
}

.partner-icon {
  flex-shrink: 0;
  color: var(--color-orange);
}

.partner-info {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-weight: 600;
  color: var(--color-foreground);
}

.partner-city {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--color-background), rgba(59, 130, 246, 0.05), var(--color-background));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-content h2 {
  text-align: left;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}

.about-text strong {
  color: var(--color-foreground);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  display: inline-flex;
  padding: 0.375rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--color-blue);
}

.stat-icon-orange {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--color-orange);
}

.stat-icon-green {
  background-color: rgba(45, 95, 63, 0.1);
  color: var(--color-green);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.125rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.2;
}

/* Footer */
.footer {
  background-color: var(--color-navy-bg);
  color: var(--color-navy-fg);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(252, 252, 252, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  color: rgba(252, 252, 252, 0.8);
}

.footer-list li {
  margin-bottom: 0.5rem;
}

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

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

.footer-legal {
  font-size: 0.875rem;
  color: rgba(252, 252, 252, 0.8);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(252, 252, 252, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(252, 252, 252, 0.6);
}
