/* ============================================
   GO & FILL – Master Stylesheet
   Nigerian Emerald Green + White Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green:        #008751;
  --green-dark:   #005f38;
  --green-light:  #00a863;
  --green-pale:   #e6f4ee;
  --green-mid:    #c8e8d8;
  --white:        #ffffff;
  --off-white:    #f7faf8;
  --gray-100:     #f0f4f2;
  --gray-200:     #d8e3dc;
  --gray-400:     #8fac9c;
  --gray-600:     #4a6657;
  --gray-800:     #1e3328;
  --text-dark:    #0d2218;
  --text-body:    #2e4d3a;
  --text-muted:   #6a8a77;
  --gold:         #d4a843;
  --gold-light:   #f5d98e;

  --font-display: sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(0,135,81,.08);
  --shadow-md:  0 8px 32px rgba(0,135,81,.14);
  --shadow-lg:  0 20px 60px rgba(0,135,81,.18);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.15);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { margin-bottom: 1rem; }
.text-green  { color: var(--green) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-white  { color: var(--white) !important; }
.fw-800 { font-weight: 800; }

/* ---- Utility ---- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-green    { background: var(--green); }
.bg-dark-green { background: var(--green-dark); }
.bg-off-white { background: var(--off-white); }
.bg-pale     { background: var(--green-pale); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8912e;
  border-color: #b8912e;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-label.white-label {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}
.section-label::before {
  content:'';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.section-label.white-label::before { background: var(--white); }

/* ---- Navbar ---- */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .logo-mark {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand .logo-mark span {
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 900;
}
#mainNav.scrolled .navbar-brand { color: var(--text-dark); }
#mainNav.scrolled .navbar-brand .logo-mark { background: var(--green); }
#mainNav.scrolled .navbar-brand .logo-mark span { color: var(--white); }
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.15);
}
#mainNav.scrolled .nav-link { color: var(--text-dark) !important; }
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active {
  color: var(--green) !important;
  background: var(--green-pale);
}
.nav-cta {
  background: var(--white);
  color: var(--green) !important;
  padding: 10px 22px !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--green-pale) !important; }
#mainNav.scrolled .nav-cta {
  background: var(--green);
  color: var(--white) !important;
}
#mainNav.scrolled .nav-cta:hover { background: var(--green-dark) !important; }
.navbar-toggler {
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
#mainNav.scrolled .navbar-toggler { border-color: var(--green); }
.navbar-toggler-icon { filter: invert(1); }
#mainNav.scrolled .navbar-toggler-icon { filter: none; }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('hero-bg.png') center/cover no-repeat,
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,168,99,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,95,56,.5) 0%, transparent 50%),
    linear-gradient(135deg, #003d1f 0%, #005f38 40%, #008751 100%);
  z-index: 0;
  opacity: 0.75;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge::before {
  content:'';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--gold-light); }
.hero-stat .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 360px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.fuel-meter {
  margin: 24px 0;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  height: 10px;
  overflow: hidden;
}
.fuel-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f5d98e);
  border-radius: var(--radius-full);
  animation: fillMeter 2s ease-out 1s both;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.price-row:last-of-type { border-bottom: none; }
.price-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

/* ---- Feature Ribbon ---- */
.feature-ribbon {
  background: var(--green);
  padding: 20px 0;
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.ribbon-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ---- Services ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon i { color: var(--white) !important; }
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 0; }

/* ---- How It Works ---- */
.step-card {
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  z-index: 0;
}
.step-card:last-child .step-connector { display: none; }

/* ---- Coverage Map ---- */
.coverage-states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.state-tag {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.state-tag:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.state-tag.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  font-size: 1.1rem;
  border: 2px solid var(--green-mid);
}
.reviewer-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.reviewer-loc { font-size: .8rem; color: var(--text-muted); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,0,0,.1) 0%, transparent 70%);
}

/* ---- Pricing Cards ---- */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px; right: -28px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 36px;
  transform: rotate(45deg);
}
.pricing-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; color: var(--text-muted); }
.pricing-price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-features li.no::before { content: '✗'; color: var(--gray-400); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover, .faq-item.open { border-color: var(--green-mid); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-dark);
  background: var(--white);
}
.faq-question .faq-icon {
  width: 28px; height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question { color: var(--green); background: var(--green-pale); }
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { padding: 16px 24px 24px; max-height: 300px; }

/* ---- App Download ---- */
.app-mockup {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 36px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.store-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.store-btn .store-icon { font-size: 1.8rem; }
.store-btn .store-text small { font-size: .72rem; opacity: .7; display: block; text-transform: uppercase; letter-spacing: .05em; }
.store-btn .store-text strong { font-size: 1rem; font-family: var(--font-display); }

/* ---- Contact Form ---- */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,135,81,.1);
  outline: none;
}
.contact-form label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}
.form-floating-icon {
  position: relative;
}
.form-floating-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 1;
}
.form-floating-icon .form-control { padding-left: 44px; }

/* ---- Footer ---- */
.footer-main {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 80px 0 40px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  line-height: 1.7;
}
.footer-title {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  background: #003d1f;
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #84d0b1 0%, #12412e 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.75); }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Info Cards ---- */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  height: 100%;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-mid); }

/* ---- Legal Pages ---- */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p, .legal-content li {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.9;
}
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-toc {
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.legal-toc h4 { font-size: 1rem; margin-bottom: 16px; color: var(--green-dark); }
.legal-toc ol { padding-left: 20px; margin: 0; }
.legal-toc li { margin-bottom: 8px; }
.legal-toc a { color: var(--green); font-size: .9rem; font-weight: 600; }
.legal-toc a:hover { color: var(--green-dark); }
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ---- Order Form ---- */
.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.order-sidebar {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  padding: 50px 36px;
  color: var(--white);
  height: 100%;
}
.order-sidebar h3 { color: var(--white); }
.order-sidebar p { color: rgba(255,255,255,.75); }
.order-main { padding: 50px 40px; }
.fuel-type-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fuel-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}
.fuel-option:hover { border-color: var(--green-mid); background: var(--green-pale); }
.fuel-option.selected { border-color: var(--green); background: var(--green-pale); }
.fuel-option input { accent-color: var(--green); }
.fuel-emoji { font-size: 1.4rem; }
.fuel-name { font-weight: 700; color: var(--text-dark); }
.fuel-price-tag { font-size: .8rem; color: var(--text-muted); }
.order-summary {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .93rem;
  color: var(--text-muted);
}
.summary-row.total {
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ---- Blog Cards ---- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  background: var(--white);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb {
  height: 220px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--gray-200);
}
.blog-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}
.blog-card h5 { font-size: 1.05rem; line-height: 1.4; margin: 10px 0; }
.blog-meta { font-size: .82rem; color: var(--text-muted); }

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes fillMeter {
  from { width: 0; }
  to { width: 72%; }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.anim-fadeup { animation: fadeInUp .7s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulseWa 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--text-dark);
  color: rgba(255,255,255,.85);
  padding: 18px 0;
  font-size: .88rem;
  transform: translateY(100%);
  transition: var(--transition-slow);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-stats { gap: 24px; }
  .hero-card { width: 100%; max-width: 360px; margin-top: 40px; }
  .pricing-card.featured { transform: none; }
  .step-connector { display: none; }
  .order-sidebar { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .order-main { padding: 36px 24px; }
  .hero-stats{ display: none; }
  .order-status-card {display: none;}
}
@media (max-width: 767.98px) {
  .section-pad { padding: 70px 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-desc { font-size: 1rem; }
  .footer-main { padding: 50px 0 30px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Green Gradient Overlay */
.overlay-green {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 107, 67, 0.85),
        rgba(14, 107, 67, 0.60),
        rgba(14, 107, 67, 0.30)
    );
}

/* Dark Overlay */
.overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        transparent,
        rgba(0,0,0,0.3)
    );
}
