/* ============================================================
   A-Picks Solutions — Full Redesign CSS
   Colors: Green #137f3f / Dark Green #0a2e1a / White #ffffff
   Font: Montserrat (headings) + Open Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #ffffff;
  color: #1a2e1f;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.15;
}

a { color: #137f3f; text-decoration: none; transition: color 0.2s; }
a:hover { color: #0f6030; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: #137f3f;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.97rem;
}
.btn-primary:hover { background: #0f6030; transform: translateY(-2px); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.97rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); color: #fff; }

.btn-outline-green {
  display: inline-block;
  background: transparent;
  color: #137f3f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid #137f3f;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-outline-green:hover { background: #137f3f; color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---- HEADER ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #137f3f;
  box-shadow: 0 2px 16px rgba(19,127,63,0.1);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a2e1a;
  flex-shrink: 0;
}
.brand-logo { height: 44px; width: auto; }
.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  color: #1a2e1f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: #f0fef5; color: #137f3f; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wa-link {
  color: #137f3f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0a2e1a;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,46,26,0.88) 0%, rgba(10,46,26,0.65) 55%, rgba(10,46,26,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 48px;
  color: #fff;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7be29c;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; color: #7be29c; }
.hero-title .line3 { display: block; }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: #137f3f;
  padding: 32px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 12px 20px;
}
.stat-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  display: inline;
  color: #fff;
}
.stat-item sup {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}
.stat-item span {
  display: block;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ---- WHAT WE DO ---- */
.what-section {
  padding: 100px 0;
  background: #fff;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #137f3f;
  margin-bottom: 14px;
}
.section-eyebrow.light { color: #7be29c; }
.what-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0a2e1a;
  margin-bottom: 20px;
}
.what-text p {
  color: #3a5040;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.mission-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.mission-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #3a5040;
  border-bottom: 1px solid rgba(19,127,63,0.1);
  font-size: 0.97rem;
}
.mission-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #137f3f;
  font-weight: 700;
}
.what-images {
  position: relative;
  height: 500px;
}
.what-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.what-img-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  border: 4px solid #fff;
}

/* ---- WHY US ---- */
.why-section {
  padding: 100px 0;
  background: #f4fdf7;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #0a2e1a;
}
.section-head.light h2 { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(19,127,63,0.08);
  border-top: 4px solid #137f3f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(19,127,63,0.15);
}
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.15rem; color: #0a2e1a; margin-bottom: 12px; }
.why-card p { color: #3a5040; font-size: 0.95rem; line-height: 1.7; }

/* ---- SERVICES ---- */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2e1a 0%, #0d3d25 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 56px 24px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}
.service-icon {
  width: 72px;
  height: 72px;
  background: #137f3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 24px rgba(19,127,63,0.35);
}
.service-icon svg { width: 34px; height: 34px; fill: #fff; }
.service-card h3 { color: #0a2e1a; font-size: 1.05rem; margin-top: 4px; }
.service-card p { color: #5a6b60; font-size: 0.93rem; flex: 1; }
.svc-link {
  color: #137f3f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; color: #0f6030; }

/* ---- PROCESS ---- */
.process-section {
  padding: 100px 0;
  background: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 32px 24px;
  border-radius: 16px;
  background: #f4fdf7;
  border-left: 4px solid #137f3f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(19,127,63,0.12);
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: rgba(19,127,63,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { color: #0a2e1a; margin-bottom: 12px; font-size: 1.1rem; }
.process-step p { color: #3a5040; font-size: 0.95rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: #f4fdf7;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: 0 8px 32px rgba(19,127,63,0.08);
  border-bottom: 4px solid #137f3f;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(19,127,63,0.13);
}
.quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: #137f3f;
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testimonial-card p { color: #3a5040; margin-bottom: 20px; font-size: 0.97rem; }
.testimonial-card strong { color: #0a2e1a; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; }

/* ---- TRUST ---- */
.trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2e1a 0%, #0d3d25 100%);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.trust-badge:hover {
  background: rgba(255,255,255,0.13);
  transform: scale(1.05);
}
.trust-check {
  display: block;
  font-size: 1.8rem;
  color: #7be29c;
  margin-bottom: 10px;
  font-weight: 700;
}
.trust-badge h4 { color: #fff; font-size: 0.88rem; font-weight: 600; }

/* ---- FAQ ---- */
.faq-section {
  padding: 100px 0;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.faq-item {
  background: #f4fdf7;
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid #137f3f;
  transition: transform 0.3s, box-shadow 0.3s;
}
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(19,127,63,0.1);
}
.faq-item h4 { color: #0a2e1a; margin-bottom: 12px; font-size: 1.05rem; }
.faq-item p { color: #3a5040; font-size: 0.95rem; }

/* ---- CTA BANNER ---- */
.cta-section {
  padding: 80px 0;
  background: #f4fdf7;
}
.cta-box {
  background: linear-gradient(135deg, #137f3f 0%, #0a5c2d 100%);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(19,127,63,0.3);
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-box p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-box .btn-primary { background: #fff; color: #137f3f; }
.cta-box .btn-primary:hover { background: #f0fdf5; }

/* ---- CONTACT ---- */
.contact-section {
  padding: 100px 0;
  background: #fff;
}
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1.5px solid #cde8d4;
  background: #f6fff8;
  color: #1a2e1f;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #137f3f; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ---- FOOTER ---- */
footer {
  background: #0a2e1a;
  color: #b8d4bf;
  padding: 72px 24px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 48px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.93rem; line-height: 1.75; margin-bottom: 20px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-links a { color: #b8d4bf; font-size: 0.93rem; transition: color 0.2s; }
.footer-links a:hover { color: #7be29c; }
.footer-contact p { font-size: 0.93rem; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.88rem; color: rgba(255,255,255,0.4); }

/* ---- WHATSAPP FLOAT ---- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why-grid,
  .services-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .what-grid { gap: 36px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 2px solid #137f3f;
    z-index: 99;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .header-actions .wa-link { display: none; }
  .hero-content { padding: 48px 24px; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .what-grid { grid-template-columns: 1fr; }
  .what-images { height: 300px; margin-top: 20px; }
  .why-grid,
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-section { min-height: 100svh; }
  .hero-title { font-size: 2.4rem; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero-section {
  background: linear-gradient(135deg, #0a2e1a 0%, #0d3d25 100%);
  padding: 100px 24px 80px;
  text-align: center;
  color: #fff;
}
.page-hero-section .section-eyebrow { color: #7be29c; margin-bottom: 14px; }
.page-hero-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
}
.page-hero-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero-section .hero-btns { justify-content: center; }

/* ---- ABOUT GRID ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(19,127,63,0.15);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(19,127,63,0.07);
}
.contact-card h3 { color: #0a2e1a; margin-bottom: 14px; font-size: 1.3rem; }
.contact-card p { color: #3a5040; line-height: 1.8; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}
