* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a1e2b;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* header / nav */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px 32px;
  border-bottom: 1px solid #eef2f6;
  position: relative;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* desktop navigation */
.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #2d3748;
  font-size: 16px;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2e6b3e;
  border-bottom: 2px solid #2e6b3e;
  padding-bottom: 6px;
}

/* desktop CTA button */
.btn-consult {
  background: #2e6b3e;
  color: white !important;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
}

.btn-consult:hover {
  background: #1e4a3a;
}

/* mobile button variant */
.btn-consult.mobile-btn {
  display: none;
}

/* hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px 5px;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 28px;
  background: #2e6b3e;
  margin: 3px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 0 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 400px;
}

.hero-badge {
  background: #e1efe5;
  color: #2e6b3e;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #0b1f33;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #2e6b3e;
  border-bottom: 4px solid rgba(46, 107, 62, 0.2);
}

.hero-content p {
  font-size: 18px;
  color: #4a5568;
  max-width: 550px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1e4a3a;
}

.stat-item p {
  font-size: 15px;
  margin: 0;
  color: #5f6b7a;
}

.hero-image {
  flex: 1 1 300px;
  background: linear-gradient(145deg, #d8ede2, #ffffff);
  padding: 30px;
  border-radius: 60px 60px 60px 20px;
  text-align: center;
  box-shadow: 0 20px 35px -8px rgba(0,64,32,0.15);
}

.hero-image i {
  font-size: 140px;
  color: #2e6b3e;
  opacity: 0.8;
}

.hero-image .map-pin {
  background: white;
  padding: 12px 20px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-weight: 500;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

/* trust bar */
.trust-bar {
  background: #f0f7f2;
  padding: 24px 0;
  border-radius: 80px;
  margin: 20px 0 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 20px;
  color: #3c4b5d;
  font-weight: 500;
}

.trust-bar i {
  color: #2e6b3e;
  margin-right: 10px;
}

/* section titles */
.section-title {
  text-align: center;
  margin: 70px 0 30px;
}

.section-title h2 {
  font-size: 38px;
  color: #0b1f33;
  font-weight: 700;
  line-height: 1.2;
}

.section-title p {
  font-size: 18px;
  color: #4b5a6e;
  max-width: 650px;
  margin: 12px auto 0;
  padding: 0 16px;
}

/* service grid (default – used outside carousel if any) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 36px 24px;
  box-shadow: 0 12px 30px -8px rgba(0, 60, 30, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #edf2f7;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -10px rgba(30, 100, 50, 0.2);
}

.service-icon {
  background: #e1efe5;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon i {
  font-size: 36px;
  color: #2e6b3e;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: #4a5568;
  margin-bottom: 20px;
}

.link-arrow {
  color: #2e6b3e;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* local SEO special */
.local-seo {
  background: #1e4a3a;
  color: white;
  border-radius: 60px;
  padding: 60px 40px;
  margin: 70px 0;
  background-image: radial-gradient(circle at 80% 20%, #2e8b6b, #1a3a2a);
}

.local-seo-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.local-seo h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.local-seo p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.badge-list span {
  background: rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 16px;
}

/* pricing section */
.pricing-section {
  margin: 80px 0;
}

/* default pricing grid (fallback) */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 36px;
  padding: 36px 28px;
  box-shadow: 0 18px 35px -10px rgba(0,64,32,0.12);
  flex: 1 1 280px;
  border: 1px solid #e2eaf2;
  transition: all 0.2s;
}

.pricing-card.featured {
  border: 2px solid #2e6b3e;
  transform: scale(1.02);
  background: #f4fbf7;
}

.pricing-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: #1e4a3a;
  margin: 15px 0;
  line-height: 1.2;
  word-break: break-word;
}

.pricing-price small {
  font-size: 15px;
  font-weight: 400;
  color: #62748c;
}

.pricing-features {
  list-style: none;
  margin: 20px 0 30px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #d0deeb;
  display: flex;
  gap: 10px;
  align-items: center;
}

.pricing-features i {
  color: #2e6b3e;
  width: 20px;
  flex-shrink: 0;
}

/* reseller banner */
.reseller-banner {
  background: #e1efe5;
  border-radius: 50px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 70px 0;
}

.reseller-banner h4 {
  font-size: 32px;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #2e6b3e;
  color: #2e6b3e;
  padding: 15px 40px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: rgba(46, 107, 62, 0.08);
}

/* testimonial block */
.testimonial-block {
  text-align: center;
  margin: 70px 0 30px;
}

.testimonial-card {
  background: #f0f7f2;
  border-radius: 50px;
  padding: 40px;
  max-width: 800px;
  margin: 20px auto 0;
}

.testimonial-card p {
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
}

.stars {
  color: #ffb347;
  margin-bottom: 16px;
}

/* FAQ accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0 60px;
}

.faq-item {
  background: #f9fbfc;
  border-radius: 28px;
  border: 1px solid #e6edf4;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 12px 28px -8px rgba(30, 74, 58, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #1e4a3a;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(46, 107, 62, 0.03);
}

.faq-question i {
  color: #2e6b3e;
  font-size: 20px;
  width: 28px;
  transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] i.fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px 68px;
  color: #3c4b5d;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* footer */
footer {
  background: #1a3a2a;
  color: #cfddee;
  padding: 50px 0 20px;
  margin-top: 80px;
  border-radius: 60px 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
}

.footer-col p {
  margin: 20px 0;
}

.social-icons i {
  font-size: 26px;
  margin-right: 18px;
  color: #b0d0c0;
  cursor: default;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  font-size: 15px;
  border-top: 1px solid #2e5a42;
  margin-top: 40px;
}

/* ========== RESPONSIVE & MOBILE MENU ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    gap: 16px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #edf2f7;
    white-space: normal;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  .btn-consult.mobile-btn {
    display: inline-block;
    margin: 10px 0 5px;
    width: 100%;
    text-align: center;
    background: #2e6b3e;
    color: white;
    border: none;
  }

  .btn-consult:not(.mobile-btn) {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 0;
  }

  .logo img {
    height: 40px;
  }

  .faq-answer {
    padding-left: 28px;
  }
}

@media (max-width: 480px) {
  .nav-links {
    top: 70px;
  }
}

/* touch targets */
.nav-links a,
.btn-consult,
.btn-outline-light,
.hamburger,
.faq-question {
  touch-action: manipulation;
}

/* ========== CAROUSEL STYLES (shared) ========== */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1280px;          /* matches your container */
  margin: 0 auto;
  padding: 0 40px;             /* desktop padding */
}

/* The scrollable grid – used by pricing, services, testimonials */
.carousel-container .pricing-grid,
.carousel-container .service-grid,
.testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;       /* Firefox */
}

.carousel-container .pricing-grid::-webkit-scrollbar,
.carousel-container .service-grid::-webkit-scrollbar,
.testimonial-grid::-webkit-scrollbar {
  display: none;               /* Chrome/Safari */
}

/* Each card inside carousels – percentage widths */
.carousel-container .pricing-card,
.carousel-container .service-card,
.testimonial-grid .testimonial-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Desktop: show 4 pricing/service cards, 3 testimonials */
.carousel-container .pricing-card,
.carousel-container .service-card {
  width: calc(25% - 15px);     /* 4 cards per row, gap 20px → 25% - (20*3/4) ≈ 15px */
}

.testimonial-grid .testimonial-card {
  width: calc(33.333% - 13.333px);  /* 3 cards per row */
}

/* Mobile: one card nearly full width */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0 20px;           /* less padding on small screens */
  }

  .carousel-container .pricing-card,
  .carousel-container .service-card,
  .testimonial-grid .testimonial-card {
    width: calc(100% - 20px);  /* almost full width, leaves small gap */
    max-width: 360px;          /* optional: prevent cards from becoming too wide */
    margin-right: 0;           /* override any extra margin */
  }

  /* Optional: center the single card */
  .carousel-container .pricing-grid,
  .carousel-container .service-grid,
  .testimonial-grid {
    scroll-padding: 0 10px;    /* gives a little breathing room */
  }
}

/* Navigation buttons (unchanged) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2e6b3e;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Smaller button on mobile */
@media (max-width: 480px) {
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}