* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f8ef;
  color: #1f2d16;
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 8%;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #a8ff78;
}

/* HOME HERO */

.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(18, 70, 18, 0.75),
      rgba(8, 40, 8, 0.85)
    ),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;

  color: white;
}

.hero-content {
  max-width: 700px;
  padding: 130px 8%;
}

.hero-content h1 {
  font-size: 3.7rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* QUOTE HEADER */

.quote-header {
  background:
    linear-gradient(
      rgba(18, 70, 18, 0.85),
      rgba(8, 40, 8, 0.92)
    ),
    url("https://images.unsplash.com/photo-1599685315640-7a45f7a2b52a?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;

  color: white;
}

.quote-title {
  text-align: center;
  padding: 90px 8% 110px;
}

.quote-title h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.quote-title p {
  font-size: 1.1rem;
}

/* BUTTONS */

.btn {
  display: inline-block;

  background: #78c850;
  color: #102b0d;

  padding: 14px 28px;

  border-radius: 30px;

  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

.btn:hover {
  background: #b8ff88;
  transform: scale(1.05);
}

/* SECTIONS */

.section {
  padding: 90px 8%;
  text-align: center;
}

.section h2 {
  font-size: 2.7rem;
  color: #2f6b1f;
  margin-bottom: 35px;
}

/* CARDS */

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: white;

  width: 290px;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  border-bottom: 5px solid #78c850;

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 12px;
  color: #2f6b1f;
}

/* ABOUT */

.about {
  background: #e6f3d8;
}

.about p {
  max-width: 760px;
  margin: auto;
  font-size: 1.1rem;
}

/* CTA */

.cta {
  background: #f4f8ef;
}

.cta p {
  margin-bottom: 25px;
}

/* QUOTE PAGE */

.quote-page {
  padding: 70px 8%;
}

.quote-card {
  max-width: 750px;
  margin: -130px auto 60px;

  background: white;

  padding: 40px;

  border-radius: 25px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.18);

  text-align: center;
}

.quote-card h2 {
  color: #2f6b1f;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.quote-subtext {
  margin-bottom: 30px;
  color: #4c5c45;
}

/* FORM */

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;

  padding: 16px;

  border-radius: 14px;

  border: 2px solid #b7d7a8;

  font-size: 1rem;

  outline: none;

  background: white;

  transition: 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: #78c850;
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quote-form button {
  background: #2f6b1f;
  color: white;

  padding: 16px;

  border: none;
  border-radius: 30px;

  font-size: 1rem;
  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;
}

.quote-form button:hover {
  background: #78c850;
  color: #102b0d;
}

/* CONTACT INFO */

.contact-info {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h2 {
  color: #2f6b1f;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-box {
  background: white;

  margin: 25px auto;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-box p {
  margin: 10px 0;
}

.contact-box a {
  color: #2f6b1f;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */

footer {
  background: #173b12;
  color: white;

  text-align: center;

  padding: 20px;
}

/* MOBILE */

@media (max-width: 700px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .hero-content {
    text-align: center;
    padding-top: 90px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .quote-title h1 {
    font-size: 2.3rem;
  }

  .quote-card {
    margin-top: -90px;
    padding: 25px;
  }

  .section h2 {
    font-size: 2rem;
  }

}
/* PRICING */

.pricing {
  background: #eef7e5;
}

.pricing-note {
  max-width: 650px;
  margin: -20px auto 35px;
  color: #4c5c45;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.price-card {
  background: white;
  width: 260px;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-bottom: 5px solid #78c850;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card h3 {
  color: #2f6b1f;
  margin-bottom: 12px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #2f6b1f;
  margin-bottom: 10px;
}

.featured {
  border-bottom-color: #2f6b1f;
  background: #f9fff4;
}
.body::after {
  content: "dtb.extraxtz";

  position: fixed;
  bottom: 10px;
  right: 12px;

  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);

  padding: 6px 10px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;

  z-index: 99999;

  pointer-events: none;
  user-select: none;
}
