/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  height: 40px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* ================= BUTTON ================= */
.btn-primary {
  background: rgb(0,105,44);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary:hover {
  background: #004f20;
}

/* ================= HERO ================= */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
}

/* ================= LOGOS ================= */
.logos {
  margin-top: 60px;
  text-align: center;
}

.logo-scroll {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
  opacity: 0.7;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f7f9f8;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ================= FEATURES ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: 0.2s ease;
}

.feature-card:hover {
  border-color: rgb(0,105,44);
  transform: translateY(-4px);
}

.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* ================= CONTACT ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map img {
  width: 100%;
  border-radius: 12px;
}

/* ================= FOOTER ================= */
footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 12px;
}

.footer-links a,
.socials a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links a:hover,
.socials a:hover {
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .feature-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}