/* ================= ROOT COLORS ================= */
:root {
  --primary-green: #5e9800;
  --bg-green: #5f8620;
  --light-green: #f4faf2;
  --soft-green: #e8f5e9;
  --dark-text: #263238;
  --white: #ffffff;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #f6f9f6;
  color: var(--dark-text);
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar h2 {
  color: var(--primary-green);
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
}

.navbar a:hover {
  color: var(--primary-green);
}

/* ================= HERO ================= */
.svc-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.svc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.svc-hero h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 12px;
}

.svc-hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.svc-hero-btn {
  display: inline-block;
  background: var(--primary-green);
  padding: 14px 30px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.svc-hero-btn:hover {
  background: var(--bg-green);
  transform: translateY(-2px);
}

/* ================= SERVICES ================= */
.svc-services {
  background: var(--light-green);
  padding: 80px 20px 30px;
  text-align: center;
}

.svc-title {
  font-size: 34px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.svc-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* GRID */
.svc-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 60px;
}

/* ================= PREMIUM CARD ================= */
.svc-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  
  /* 🔥 PREMIUM BORDER STYLE (LIKE YOUR IMAGE STYLE) */
  border: 2px solid var(--primary-green);
  padding: 6px;

  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* INNER CONTENT FIX */
.svc-card-inner {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

/* HOVER EFFECT */
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(94,152,0,0.2);
}

/* IMAGE */
.svc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.svc-content {
  padding: 18px;
  text-align: left;
}

.svc-content h3 {
  font-size: 18px;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.svc-content p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.svc-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.svc-btn::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary-green);
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.svc-btn:hover::after {
  width: 100%;
}

/* ================= FAQ ================= */
.home-faq-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f3f9f3, #e4f3e4);
}

.home-section-title {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--primary-green);
  text-align: center;
}

/* LAYOUT */
.faq-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

/* FAQ ITEMS */
.home-faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.home-faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.home-faq-question h3 {
  font-size: 15px;
  color: var(--primary-green);
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #444;
  transition: 0.3s;
}

.home-faq-item.active {
  border-left: 4px solid var(--primary-green);
  background: #f6fbf6;
}

.home-faq-item.active .home-faq-answer {
  max-height: 150px;
  padding: 10px 20px 15px;
}

/* FAQ IMAGE */
.faq-image img {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;

  border: 2px solid var(--primary-green);
  padding: 6px;
  background: #fff;

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* FIX: space between FAQ items */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* 👈 increase this (15–20px looks perfect) */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .svc-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .svc-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .svc-hero {
    height: auto;
    padding: 80px 20px;
  }

  .svc-hero h1 {
    font-size: 28px;
  }

  .svc-hero p {
    font-size: 14px;
  }
}