* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8faf7;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #1e5c3f;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  flex-wrap: wrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  background: #4caf50;
  padding: 12px 22px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE HAMBURGER MENU */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #1e5c3f;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 35px;
    transition: left 0.4s ease;
    z-index: 99;
  }

  .topbar.active .nav {
    left: 0;
  }
}

/* HERO */
.hero {
  background-image: url('images/hero-pic-5.jpg');
  background-size: cover;
  background-position: center;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 92, 63, 0.55);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 20px;
}

.hero h1 { font-size: 2.7rem; margin-bottom: 8px; }
.hero h2 { font-size: 3rem; line-height: 1.1; margin-bottom: 12px; }

.motto {
  font-style: italic;
  color: #a8f0c0;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.subtext {
  font-size: 1.15rem;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn, .call-btn {
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn.primary {
  background: #4caf50;
  color: white;
}

.btn:hover, .call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 22px;
  background: #e6f4eb;
  flex-wrap: wrap;
  font-weight: bold;
  color: #1e5c3f;
  text-align: center;
}

/* SECTIONS & CARDS */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 45px;
  color: #1e5c3f;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.price {
  font-size: 1.75rem;
  color: #1e5c3f;
  font-weight: bold;
  margin: 12px 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 35px 20px;
  background: #1e5c3f;
  color: #ddd;
  font-size: 0.95rem;
}
/* FIX HERO BUTTONS ON MOBILE */
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons .btn {
    padding: 14px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
