:root {
  --bg: #0b0f0c;

  --primary-green: #1f6b3a;     /* main brand */
  --primary-hover: #2f8a4f;

  --dark-green: #14351f;        /* section backgrounds */
  --deep-green: #03221B;        /* darker sections */

  --accent-green: #3fbf6b;      /* highlights / icons */

  --text: #ffffff;
  --muted-text: #cbd5c0;
  --body: #f5f5f5;
}

/* <weight>: Use a value from 300 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

.figtree-uniquifier> {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Poppins', sans-serif;
}

h2, h3 {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
}
html, body {
  margin: 0;
  padding: 0;
  height: auto;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: var(--body);
  /*background-image: url("brush.jpg"); Scrolling background image*/
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
main {
  width: 100%;
}
.placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.footer {
  background: #ffffff;
  color: #000000;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  color: #000;
}
.footer-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-actions a {
  color: #000;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #000;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.footer-actions a:hover {
  background: #000;
  color: #fff;
}


.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.9);

  border-bottom: 1px solid #eee;

  font-family: sans-serif;
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    align-items: center;
  }

  /* hide nav + CTA by default on mobile */
  .nav,
  .fa,
  .cta-button {
    display: none;
    width: 100%;
  }
  
  /* show hamburger */
  .hamburger {
    display: block;
  }

  /* mobile dropdown menu */
  .nav.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    color: black;
  }

  .cta-button.active {
    display: inline-block;
    margin-top: 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #0f172a;
}

.logo-box {
  width: 32px;
  height: 32px;
  background: #10b981;
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #10b981;
}

.cta-button {
  background: #0f172a;
  color: white;
  text-decoration: none;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;

  transition: 0.2s ease;
}

.cta-button:hover {
  background: #1e293b;
}


.section-dark {
  background: var(--deep-green);
  color: var(--text);
  padding: 40px 20px;
  padding-bottom: 0px;
  text-align: center;
}

/* container for reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* individual card */
.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.review-meta {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.review-meta .name {
  font-weight: 600;
}

.review-meta .title {
  font-size: 0.9rem;
  opacity: 0.7;
}
/* responsive */
@media (max-width: 900px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

.button {
  background: var(--primary-green);
  color: white;
  border-radius: 999px;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--primary-hover);
}

.box {
  width: 800px;
  max-width: 90%;
  padding-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  background: rgba(255, 255, 255, 0.75);
 /* backdrop-filter: blur(8px);  */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: black;
  text-align: center;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  background: #f6f8fb;
  color: #0f172a;
}

.hero {
  display: flex;
  gap: 60px;
  padding: 80px 8%;
  align-items: stretch;
  justify-content: space-between;
}

.left {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f7ef;
  color: #0f9d6a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  background: #0f9d6a;
  border-radius: 50%;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* KEY FIX */
.slide {
  position: absolute;
  inset: 0;              /* replaces top/left/width/height */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* visible slide */
.slide.active {
  opacity: 1;
  z-index: 1;
}

.arrow {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;

  padding: 0;
}

.icon {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Dots */
.dots {
  z-index: 10;
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
}
.read-more {
  position: absolute;
  bottom: 40px; /* sits above dots */
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;

  padding: 8px 16px;
  border: none;
  border-radius: 20px;

  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;

  font-size: 14px;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: rgba(0, 0, 0, 0.8);
}

h1 {
  font-family: 'Figtree', sans-serif;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight:300;
  letter-spacing: 2px;
  font-size:78px;
}
h1 span {
  color: #059669;
}

p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 80%;
  margin-bottom: 30px;
  max-width: 520px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: default;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--dark-green);
  color: white;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.btn-primary:hover {
  background: #1a4327;
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: white;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.btn-secondary:hover {
  color: white;
  background: #0f172a;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #64748b;
  font-weight: 500;
}

.stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats strong {
  font-size: 22px;
  color: #0f172a;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.right > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.image-box {
  flex: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: #d1d5db;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 50px 6%;
  }

  h1 {
    font-size: 44px;
  }
}

/* stars */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.star {
  width: 18px;
  height: 18px;
  fill: #8ec73d;
}



select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white;
}

.contact-form {
  max-width: 500px;
  margin: 60px auto;
  margin-top: 0px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

/* Inputs */
input,
textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color ease-in-out 0.7s;
  min-height: 2em;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #3b5998;
  box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.15);
}
.contact {
  padding: 20px;
}

/* Preferred contact buttons */
.options {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.option {
  flex: 1;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

.option input {
  display: none;
}

/* selected state */
.option:has(input:checked) {
  background: var(--primary-green);
  color: white;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-green);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

textarea {
  resize: vertical;
  line-height: 1.4;
  font-size: 16px;
}

.fa {
  font-size: 30px;
  width: 20px;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
  color: #fff;
  opacity: 0.9;
}
/* Facebook */
.fa-facebook {
  color: var(--primary-green);
}

/* Twitter */
.fa-twitter {
  color: var(--primary-green);
}

.blocky {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--primary-green);
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease, color 0.4s ease;
}

.blocky:hover {
  background: #fff;
  color: #000;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.map-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}


/* Base container styling */
.faq-container {
  max-width: 600px;
  margin: 40px auto;
  font-family: system-ui, sans-serif;
  padding: 0 20px;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

/* Individual FAQ block styling */
.faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Question banner styling */
.faq-question {
  padding: 16px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  list-style: none; /* Removes native summary arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom indicator icon */
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

/* State change styles when expanded */
.faq-item[open] .faq-question {
  border-bottom: 1px solid #e5e5e5;
  background-color: #f1f1f1;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

/* Animated container */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

/* Inner wrapper handles overflow */
.faq-answer-inner {
  overflow: hidden;
  padding: 0 16px; /* move padding here instead */
  color: #555;
  line-height: 1.6;
  background-color: #fff;
}

/* Open state */
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.faq-item[open] .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}