:root {
  --green-dark:   #16401f;
  --green-brand:  #1c5228;
  --green-mid:    #236b33;
  --green-accent: #2e8b3e;
  --lime:         #7ed321;
  --lime-bright:  #a8e63d;
  --lime-pale:    #d4f5a0;
  --gray-dark:    #3d3d3d;
  --gray-mid:     #555;
  --gray-light:   #888;
  --off-white:    #f8f9f6;
  --white:        #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--gray-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  height: 72px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.nav-logo img { height: 84px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-brand); }
.nav-links a.active { color: var(--green-brand); }
.nav-cta {
  background: var(--lime) !important;
  color: var(--green-dark) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--lime-bright) !important; }

/* PAGE HERO */
.page-hero {
  min-height: 42vh;
  background: var(--green-brand);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('car.JPG');
  background-size: cover;
  background-position: center 55%;
  filter: brightness(0.28) saturate(0.8);
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(22,64,31,0.95) 0%, rgba(22,64,31,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 5rem 3.5rem;
  width: 100%;
}

.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { margin: 0 0.5rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.8rem;
}

.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.page-hero-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.8;
  font-weight: 400;
}

/* FAQ BODY */
.faq-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

/* Category headers */
.faq-category {
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
}
.faq-category:first-child { margin-top: 0; }

.faq-category-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1rem;
}
.faq-category-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

/* Accordion */
.faq-list {
  border-top: 1px solid #e2eedc;
}

.faq-item {
  border-bottom: 1px solid #e2eedc;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--green-accent); }

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--lime);
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-question { color: var(--green-brand); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.85;
  font-weight: 400;
}

.faq-answer a {
  color: var(--green-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(46,139,62,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.faq-answer a:hover { color: var(--green-brand); border-color: var(--green-brand); }

.faq-answer strong { font-weight: 600; color: var(--green-dark); }

/* CTA block */
.faq-cta {
  margin-top: 4rem;
  background: var(--green-dark);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '?';
  position: absolute;
  right: -1.5rem; bottom: -3rem;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(126,211,33,0.06);
  line-height: 1;
  pointer-events: none;
}

.faq-cta h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.faq-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
}

.btn-lime {
  display: inline-block;
  background: var(--lime);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-lime:hover { background: var(--lime-bright); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(126,211,33,0.12);
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img { height: 86px; }

.footer-links { display: flex; gap: 1.8rem; list-style: none; }

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--lime); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* NAV TOGGLE (mobile hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 310;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.9rem 0; width: 100%; border-bottom: 1px solid #eef2ec; }
  .nav-links a.nav-cta { display: inline-block; width: auto; border-bottom: none; margin-top: 0.8rem; }
  .page-hero-content { padding: 3rem 1.5rem 2.5rem; }
  .faq-body { padding: 3.5rem 1.5rem 5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .faq-cta { padding: 2rem 1.5rem; }
  .faq-cta h2 { font-size: 1.2rem; }
}
