body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 35px;
}

h2 {
  font-family: var(--primary-font-family);
  font-weight: 400;
  font-size: 28px;

}

h5 {
  font-family: var(--primary-font-family);
  font-size: 25px;
}

/* Header, Nav, and Footer styles moved to common.css */



:root {
  --green: #2A7A60;
  --peach: #F6C89A;
}

.services-section {
  padding: 60px 20px;
  margin: 0 auto;
}

.services-title {
  font-family: var(--primary-font-family);
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.services-desc {
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  color: #000000;
  max-width: 1100px;
  margin: auto;


}




/* SERVICE CARDS */
.service-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 16px;
  height: 213px;
  cursor: pointer;



  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card.in-view {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-green {
  background-color: var(--green);
  color: #fff;
}

.card-peach {
  background-color: var(--peach);
  color: var(--green);
}

.service-card .svc-icon {
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .svc-icon {
  transform: scale(1.15) translateY(-3px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}



/* FOOTER TEXT */
.services-footer {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  line-height: 35px;
  margin-top: 60px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
}

.services-footer.in-view {
  animation: fadeUp 0.6s ease forwards 0.3s;
}

/* LOGOS */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.logos-row.in-view {
  animation: fadeUp 0.6s ease forwards 0.5s;
}

.icon {

  width: 50px;
  height: 50px;


}











/* ─── FOOTER SHELL ─── */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px 80px 0;
}

/* ─── MAIN ROW ─── */
.footer-main-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

/* ─── BRAND COL ─── */
.footer-col-brand {
  flex: 0 0 auto;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-logo img {
  width: 180px;
  height: 170px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));

}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  white-space: nowrap;
}

/* ─── VERTICAL DIVIDER ─── */
.v-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  align-self: stretch;
  min-height: 140px;
  margin: 0 60px;
  flex-shrink: 0;
}

/* ─── LINKS & BUSINESS COLS ─── */
.footer-col-links,
.footer-col-business {
  flex: 0 0 auto;
}

.footer-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: #fff;
}

.business-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ─── BOTTOM BAR ─── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */

/* ── Medium tablets (992px – 1199px) ── */
@media (max-width: 1199px) {
  footer {
    padding: 50px 40px 0;
  }

  .v-divider {
    margin: 0 40px;
  }

  .foot-logo img {
    width: 150px;
    height: 140px;
  }

  .brand-text {
    font-size: 21px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

/* ── Small tablets (768px – 991px) ── */
@media (max-width: 991px) {
  footer {
    padding: 44px 28px 0;
  }

  .footer-main-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
  }

  .v-divider {
    display: none;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: 1 1 200px;
    min-width: 160px;
    max-width: 260px;
  }

  .brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .foot-logo img {
    width: 120px;
    height: 110px;
  }

  .brand-text {
    font-size: 20px;
    white-space: normal;
  }

  .footer-tagline {
    font-size: 13px;
    white-space: normal;
  }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
  footer {
    padding: 36px 20px 0;
  }

  .footer-main-row {
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align all columns */
    text-align: left;
    gap: 28px;
  }

  .footer-col-brand,
  .footer-col-links,
  .footer-col-business {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .footer-col-links,
  .footer-col-business {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 24px;
  }

  /* Brand block: logo + text side by side, left aligned */
  .brand-block {
    flex-direction: row;
    justify-content: flex-start;
    /* LEFT align */
    align-items: center;
    gap: 14px;
  }

  .brand-info {
    text-align: left;
  }

  .brand-text {
    white-space: normal;
    font-size: 19px;
  }

  .footer-tagline {
    white-space: normal;
    font-size: 13px;
  }

  .foot-logo img {
    width: 90px;
    height: 85px;
  }

  /* Links left aligned */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT align */
  }

  .footer-bottom {
    margin-top: 32px;
    font-size: 0.8rem;
    text-align: center;
  }
}

/* ── Very small (max 380px) ── */
@media (max-width: 380px) {
  .brand-block {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    /* still LEFT */
  }

  .brand-info {
    text-align: left;
  }

  .foot-logo img {
    width: 75px;
    height: 70px;
  }

  .brand-text {
    font-size: 17px;
  }
}