/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Jost", sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}

/* Global section spacing */
section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  section {
    margin-bottom: 30px;
  }
}
/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #1faa59; /* fallback */
}

/* smooth animation */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center center / cover no-repeat;
  transform: scale(1.1);
  animation: kenBurns 22s ease-in-out infinite alternate;
  z-index: 0;
}

/* WhatsApp green overlay */
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 211, 102, 0.85);
  z-index: 1;
}

/* Logo top-left */
.header-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.header-logo img {
  height: 60px;
}

/* Hero Content (staggered animations) */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.hero-content h1,
.hero-content h2,
.hero-content .inquire-btn {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
  margin-bottom: 12px;
  margin-top: 100px;
  animation-delay: 0.15s;
}

.hero-content h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.45);
  margin: 0;
  animation-delay: 0.35s;
}

.hero-content h2 span {
  display: inline-block;
  color: #ffe600;
  text-shadow: 0 0 18px rgba(255, 230, 0, 0.5);
  transform: scale(0.9);
  /* opacity: 0; */
  animation: popIn 0.7s 0.55s ease forwards,
    glowPulse 2.8s 1.4s ease-in-out infinite;
}

/* Subheading */
.hero-subheading {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 15px 0 10px;
}

.hero-subheading span {
  color: #ffe600;
  font-weight: 800;
}

/* Tagline */
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

/* Inquire Button (lower + effects) */
.inquire-btn {
  display: inline-block;
  margin-top: 28px; /* pushed a little below */
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(
    135deg,
    #ffce3d,
    #e6a700
  ); /* Golden Yellow to Amber */
  border-radius: 9999px;
  box-shadow: 0 10px 24px rgba(230, 167, 0, 0.35); /* Amber shadow */
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
  animation-delay: 0.65s;
  animation: fadeUp 0.9s 0.65s ease forwards,
    floatY 3.6s 1.6s ease-in-out infinite;
}

/* Shimmer line across the button */
.inquire-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  transform: skewX(-18deg);
  animation: btnShine 3.2s 2s infinite;
}

.inquire-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 34px rgba(230, 167, 0, 0.45); /* Stronger amber shadow on hover */
  background: linear-gradient(
    135deg,
    #ffd54f,
    #d48d00
  ); /* Brighter hover effect */
}

.inquire-btn:focus-visible {
  outline: 3px solid #ffe600;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 230, 0, 0.25),
    0 10px 24px rgba(230, 167, 0, 0.35);
}

/* Bottom curve */
.shape-bottom img.bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 12px rgba(255, 230, 0, 0.45);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 230, 0, 0.9);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes btnShine {
  0% {
    left: -120%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.2) translate3d(0, 0, 0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .header-logo img {
    height: 48px;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-content h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 576px) {
  .header-logo img {
    height: 40px;
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .hero-content h2 {
    font-size: 2rem;
  }
  .inquire-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
    margin-top: 22px;
  }
}

/* Features Section */
.features-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #16a34a; /* Tailwind green-600 */
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #4b5563; /* Tailwind gray-600 */
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Feature Boxes */
.feature-box {
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Light gray border */
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Makes all boxes equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  font-size: 2rem;
  color: #16a34a;
  margin-bottom: 0.75rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937; /* Tailwind gray-800 */
  margin: 0;
  line-height: 1.4;
}

/* --------- Benefits Section (add to style.css) ---------- */
.benefits-section {
  background: #fff;
  color: #222;
}

/* Heading */
.benefits-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c9f4c; /* theme green */
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 6px;
  text-transform: none;
}

/* List layout */
.benefits-list {
  margin: 0;
  padding: 0;
}

.benefit-item {
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
  padding-right: 10px;
}

/* Icon circle */
.icon-wrap {
  flex: 0 0 auto;
}
.icon-circle {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4f8df; /* same as .tag.smart */
  color: #0c9f4c;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(12, 159, 76, 0.06);
}

/* Text */
.benefit-content {
  flex: 1 1 auto;
}
.benefit-heading {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b4f36; /* slightly darker green for headings */
}
.benefit-text {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Illustration */
.benefits-illustration img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  /* keep the image visually balanced */
  max-height: 420px;
  object-fit: contain;
}

/* subtle highlight for large screens */
@media (min-width: 992px) {
  .benefits-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .benefits-title {
    font-size: 2.8rem;
  }
  .benefit-item {
    margin-bottom: 30px;
  }
  .icon-circle {
    width: 76px;
    height: 76px;
    font-size: 1.45rem;
  }
}

/* Responsive stacking on small screens */
@media (max-width: 767px) {
  .benefits-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
  .benefit-item {
    gap: 12px;
    margin-bottom: 18px;
  }
  .icon-circle {
    width: 54px;
    height: 54px;
    font-size: 1.05rem;
  }
  .benefits-illustration img {
    max-height: 320px;
    margin-top: 12px;
  }
  .benefit-heading {
    font-size: 1rem;
  }
  .benefit-text {
    font-size: 0.95rem;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }
  .benefit-heading {
    font-size: 0.98rem;
  }
  .benefits-illustration img {
    max-height: 240px;
  }
}

/* --------- Leads Section ---------- */
.leads-section {
  background: #e6f9ef; /* light green background to match theme */
  color: #0b4f36;
}

.leads-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0c9f4c; /* theme green */
  line-height: 1.2;
}

.leads-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0c9f4c;
  border-radius: 6px;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(12, 159, 76, 0.2);
}

.leads-btn i {
  margin-right: 6px;
}

.leads-btn:hover {
  background: #0a8e44;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(12, 159, 76, 0.3);
}

.leads-btn:focus-visible {
  outline: 3px solid #ffe600;
  outline-offset: 3px;
}

/* Illustration */
.leads-image {
  max-height: 400px;
  object-fit: contain;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .leads-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .leads-title {
    font-size: 1.5rem;
  }
  .leads-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .leads-image {
    max-height: 280px;
    margin-top: 16px;
  }
}

/* Happy Clients Section */
.clients-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.clients-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c9f4c;
  margin-bottom: 10px;
}

.clients-subtitle {
  font-size: 1rem;
  color: #666;
}

/* Client Card */
.client-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid #eee;
}

.testimonial-video {
  width: 100%;
  height: auto;
  max-height: 250px; /* Keeps the video from being too big */
  display: block;
  object-fit: cover; /* Crops if needed to maintain design */
  border: none;
}

/* Client Info */
.client-info {
  padding: 15px;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.star-rating i {
  color: #f8b400;
  margin: 0 2px;
}

.client-meta {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: #555;
}

.client-meta li.muted {
  font-size: 0.85rem;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-title {
    font-size: 1.8rem;
  }

  .testimonial-video {
    max-height: 180px; /* Smaller height for mobile */
  }
}

@media (max-width: 576px) {
  .testimonial-video {
    max-height: 150px;
  }
}

/* CEO Section Styles */
.ceo-section {
  background-color: #f0fdfa; /* Light mint background */
  padding: 4rem 1.5rem;
}

.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ceo-container {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}

.ceo-left {
  text-align: center;
}

.ceo-image {
  width: 275px;
  height: 275px;
  border: 4px solid #22c55e;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px;
}

.ceo-image img {
  object-fit: cover;
}

.ceo-name {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937; /* Tailwind gray-800 */
}

.ceo-title {
  font-size: 0.875rem;
  color: #4b5563; /* Tailwind gray-600 */
}

.ceo-right {
  max-width: 600px;
  text-align: center;
}

@media (min-width: 768px) {
  .ceo-right {
    text-align: left;
  }
}

.ceo-highlight {
  font-size: 1.85rem;
  font-weight: bold;
  color: #16a34a; /* Tailwind green-600 */
  line-height: 1.4;
}

.bold-text {
  font-weight: bold;
  color: #2d3748; /* Tailwind gray-800 */
}

.highlight-text {
  background-color: #d1fae5; /* Light green highlight */
  padding: 2px 6px;
  border-radius: 4px;
}

.ceo-description {
  margin-top: 1rem;
  color: #4b5563; /* Tailwind gray-700 */
  font-size: 1rem;
}

/* -------- Footer Section -------- */
.footer-section {
  background: #f4fdf8; /* soft light green */
  color: #0b4f36;
  border-top: 2px solid #0c9f4c;
}

.footer-logo {
  max-height: 55px;
}

.tagline {
  font-size: 0.9rem;
  color: #444;
  margin-top: -6px;
}

.footer-title {
  font-weight: 700;
  color: #0c9f4c;
  margin-bottom: 10px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #0c9f4c;
  margin-right: 8px;
}

.footer-contact a {
  text-decoration: none;
  color: #222;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #0c9f4c;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .footer-title {
    margin-top: 20px;
  }
}
