/* ===========================
   CSS VARIABLES (Brand Colors)
   =========================== */
:root {
  --green-dark:   #1e5c12;
  --green-mid:    #2d7a1f;
  --green-light:  #7ed348;
  --brown:        #5c4033;
  --brown-light:  #8b6355;
  --cream:        #f9f6f0;
  --cream-dark:   #ede8df;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-muted:   #6b6b6b;
  --shadow:       0 4px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.13);
  --radius:       16px;
  --transition:   0.3s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.eyebrow {
  display: inline-block;
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--green-light);
  border-radius: 50px;
}

.eyebrow--dark {
  color: var(--green-mid);
  border-color: var(--green-mid);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 1rem;
}

.section__header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

.section__header--light h2 { color: white; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn--primary {
  background: var(--green-mid);
  color: white;
  box-shadow: 0 4px 20px rgba(45,122,31,0.3);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,122,31,0.4);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn--full { width: 100%; text-align: center; padding: 1.1rem; }

/* ===========================
   SCROLL REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAVBAR
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(249, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.8rem 0;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.nav.scrolled .nav__logo img { filter: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav.scrolled .nav__links a { color: var(--text-dark); }
.nav__links a:hover { color: var(--green-light); }
.nav.scrolled .nav__links a:hover { color: var(--green-mid); }

.nav__cta {
  background: var(--green-mid) !important;
  color: white !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav__cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav__burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.nav.scrolled .nav__burger span { background: var(--text-dark); }

/* Burger animation when open */
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Green gradient background — replace with real photo */
/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3b06 0%, #1e5c12 40%, #2d7a1f 70%, #4a9e2f 100%); */
  .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 


  /* Uncomment and set hero-bg.jpg for real photo: */
  /* background-image: url('../images/hero-bg.jpg'); */
  /* background-size: cover; */
  /* background-position: center; */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, #2a3d2e 55%, #b0a683); */
  background: linear-gradient(90deg, #2a3d2e 0%, #2a3d2e 55%, #b0a683 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  animation: fadeUp 1s ease forwards;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  color: white;
  margin: 1rem 0 1.5rem;
  font-weight: 700;
}

.hero__title em {
  font-style: italic;
  color: var(--green-light);
}

.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
}

.hero__scroll {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===========================
   SERVICES
   =========================== */
.services { background: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ===========================
   ABOUT
   =========================== */
.about { background: white; }

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

.about__image-col { position: relative; }

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg,  #2a3d2e,  #2a3d2e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Use this for a real photo */
.about__img-real {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brown);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about__badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text { font-size: 0.78rem; opacity: 0.8; line-height: 1.5; }

.about__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--brown);
  margin: 0.5rem 0 1.5rem;
}

.about__content h2 em { font-style: italic; color: var(--green-mid); }

.about__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.check {
  width: 24px; height: 24px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background:  #2a3d2e;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -4rem; left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card__stars { color: var(--green-light); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-card > p { color: rgba(255,255,255,0.82); line-height: 1.75; font-style: italic; margin-bottom: 2rem; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 44px; height: 44px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; color: white; font-size: 0.95rem; }
.testimonial-card__author span { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown);
  margin: 0.5rem 0 1rem;
}

.contact__info > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.contact__item:hover { box-shadow: var(--shadow); }

.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__item span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.contact__item strong { font-size: 0.92rem; color: var(--text-dark); }

/* Form */
.contact__form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.contact__form h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 2rem;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form__row .form__field { margin-bottom: 0; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.03em;
}

input, select, textarea {
  padding: 0.88rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green-mid);
  background: white;
}

textarea { resize: vertical; }

.form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

.form__error {
  margin-top: 1rem;
  padding: 1rem;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0a1507;
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand img {
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 1.5rem;
}

.footer__socials { display: flex; gap: 0.75rem; }

.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: background var(--transition);
}

.footer__socials a:hover { background: var(--green-mid); }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.25rem;
}

.footer__col a, .footer__col p {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--green-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .footer__container { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { right: 1rem; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1050;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a {
    color: var(--text-dark) !important;
    font-size: 1.4rem;
  }

  .form__row { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat__divider { display: none; }
  .hero__scroll { display: none; }
  .contact__form { padding: 2rem; }
}

@media (max-width: 480px) {
  .footer__container { grid-template-columns: 1fr; }
  .section { padding: 5rem 0; }
}
