/* =============================================================
   home.css — Homepage-specific sections
   ============================================================= */

/* --- Hero --- */
.hero-section {
  margin-top: 72px;
  padding: 0;
  background-color: #71ae30;
  background-image: url('../brand_assets/hero-bg.png');
  background-position: 0 0;
  background-size: 840px;
  color: #fff;
}
.hero-wrapper {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 38px;
}
.hero-left-wrapper { width: 60%; }
.hero-right-wrapper {
  width: 40%;
  padding-left: 34px;
  display: flex;
  align-items: center;
}
.hero-h1 {
  color: #fff;
  font-size: 42px;
  line-height: 56px;
  font-weight: 700;
  margin: 0 0 10px;
}
.hero-left-list {
  margin: 24px 0 32px;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
}
.hero-left-list ul { padding-left: 22px; margin: 0; }
.hero-left-list li { font-size: 20px; line-height: 38px; color: #fff; }
.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  background-color: #fd3d67;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}
.hero-cta:hover { background-color: #c82050; color: #fff; text-decoration: none; }

/* --- USP Section --- */
.usp-section {
  padding: 60px 20px 20px;
}
.usp-columns {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.usp-column {
  flex: 1 1 45%;
  padding: 0 24px;
  text-align: center;
}
.usp-img {
  height: 180px;
  width: auto;
  margin: 30px auto;
}
.usp-h3 {
  color: #71ae30;
  font-size: 25px;
  margin-bottom: 16px;
  text-align: center;
}
.usp-descr { font-size: 15px; line-height: 26px; }

.usp-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  text-align: center;
}
.usp-bottom-heading {
  color: #71ae30;
  font-size: 26px;
  margin: 40px 0 16px;
}
.usp-bottom-p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 26px;
}

/* --- Triple Line (green bar) --- */
.trippel-line-section {
  padding: 60px 20px;
  background-color: #71ae30;
  background-image: url('../brand_assets/hero-bg.png');
  background-position: 50% 50%;
  background-size: 650px;
  color: #fff;
}
.trippel-line-columns {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 32px;
}
.trippel-line-col { flex: 1 1 28%; }
.tl-h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 14px;
  line-height: 34px;
}
.tl-desc { font-size: 15px; line-height: 28px; color: #fff; }

/* --- FAQ Preview (homepage) --- */
.section-faq {
  padding: 50px 20px;
}
.faq-item-wrapper {
  margin-bottom: 16px;
  padding: 24px 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px -2px rgba(0,0,0,0.07);
}
.faq-question-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-question {
  color: #71ae30;
  font-size: 17px;
  font-weight: 600;
  flex: 1;
  padding-right: 12px;
}
.faq-toggle {
  flex: 0 0 20px;
  position: relative;
  width: 20px;
  height: 20px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: #71ae30;
  transition: transform 0.25s ease-out;
}
.faq-toggle::before { top: 0; left: 50%; width: 2px; height: 100%; margin-left: -1px; }
.faq-toggle::after  { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.faq-item-wrapper.open .faq-toggle::before { transform: rotate(90deg); }
.faq-item-wrapper.open .faq-toggle::after  { transform: rotate(180deg); }

.faq-answer-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item-wrapper.open .faq-answer-wrapper { max-height: 600px; }
.faq-answer { padding: 10px 0 4px; font-size: 15px; line-height: 24px; }
.faq-answer h3 { font-size: 17px; margin-top: 8px; color: #000; }
.faq-answer ul { padding-left: 22px; }
.faq-answer li { font-size: 15px; line-height: 28px; }

.form-contact-wrapper {
  padding: 60px 20px;
  background-color: #71ae30;
  background-image: url('../brand_assets/hero-bg.png');
  background-size: 650px;
  text-align: center;
}
.faq-form-heading {
  color: #fff;
  margin: 0 0 18px;
}
.more-question-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 5px;
  background-color: #fff;
  color: #71ae30;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s;
}
.more-question-btn:hover { background-color: #f0f0f0; color: #5e9030; text-decoration: none; }

/* --- Responsive --- */
@media (max-width: 767px) {
  .hero-wrapper { flex-direction: column; padding: 36px 24px 24px; }
  .hero-left-wrapper, .hero-right-wrapper { width: 100%; padding-left: 0; }
  .hero-h1 { font-size: 32px; line-height: 44px; }
  .trippel-line-columns { flex-direction: column; gap: 16px; }
  .usp-column { flex: 1 1 100%; }
}
@media (max-width: 479px) {
  .hero-h1 { font-size: 28px; line-height: 38px; }
  .hero-left-list { font-size: 17px; }
  .tl-h3 { font-size: 22px; }
  .tl-desc { font-size: 15px; }
  .faq-item-wrapper { padding: 18px 16px; }
  .section-faq { padding: 30px 16px; }
  .usp-section { padding: 30px 16px 10px; }
  .usp-column { padding: 0; }
}
