/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --green-dark:     #0a5c2d;
  --green-main:     #107a3c;
  --green-mid:      #159044;
  --green-accent:   #19b550;
  --green-light:    #e8f5ee;
  --green-xlight:   #f0faf4;
  --gold:           #f5a623;
  --gold-light:     #fff8ec;
  --white:          #ffffff;
  --text-dark:      #111827;
  --text-body:      #374151;
  --text-muted:     #6b7280;
  --border:         rgba(16,122,60,0.12);
  --red-text:       #c0392b;
  --red-bg:         #fee2e2;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow:         0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.13);
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      20px;
  --transition:     all 0.3s ease;
  --green-gradient: linear-gradient(135deg, #0a5c2d 0%, #19b550 100%);
  --hero-gradient:  linear-gradient(135deg, #0a5c2d 0%, #107a3c 50%, #159044 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--green-xlight);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--green-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 3px 24px rgba(0,0,0,0.35);
}
.navbar.scrolled .nav-container { height: 56px; }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  transition: height 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  padding: 0.42rem 0.85rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}
.nav-links a:not(.btn-login):not(.btn-partner)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn-login):not(.btn-partner):hover::after,
.nav-links a.active:not(.btn-login):not(.btn-partner)::after { width: 60%; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links .btn-login {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 0.4rem 1rem;
  margin-left: 4px;
}
.nav-links .btn-login:hover { background: rgba(255,255,255,0.22); }
.nav-links .btn-partner {
  background: var(--green-accent);
  color: var(--white);
  font-weight: 600;
  padding: 0.4rem 1rem;
  margin-left: 4px;
  box-shadow: 0 2px 10px rgba(25,181,80,0.4);
}
.nav-links .btn-partner:hover { background: #15a346; }
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== TICKER ===== */
.ticker {
  background: var(--green-mid);
  color: var(--white);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-inner span {
  padding: 0 2.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.ticker-inner span::before { content: "✦  "; color: #a8e6be; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: var(--hero-gradient);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a8f0c0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero-text h1 span { color: #6fe89e; }
.hero-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  animation: blob-rotate 12s ease-in-out infinite;
}
@keyframes blob-rotate {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  50%     { border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%; }
}
.hero-image-wrap img {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-trust {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}
.hero-trust-item span { color: #6fe89e; font-size: 1rem; }
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--green-xlight);
}
.wave-divider svg { display: block; }

/* ===== STATS BAR ===== */
.stats-section {
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.stat-item .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTION WRAPPER ===== */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}
.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
}
.section-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3.5px;
  background: var(--green-gradient);
  border-radius: 2px;
}
.section-head p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-light), var(--green-accent));
  border-radius: 2px;
  z-index: 0;
}
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.how-card .step-num {
  width: 56px; height: 56px;
  background: var(--green-gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(16,122,60,0.35);
}
.how-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.how-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img-wrap { overflow: hidden; position: relative; }
.card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .card-img-wrap::after { opacity: 1; }
.service-card .card-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-card:hover .card-img { transform: scale(1.07); }
.service-card .card-caption {
  background: var(--green-main);
  color: var(--white);
  text-align: center;
  padding: 0.7rem 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card .icon-wrap {
  width: 60px; height: 60px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  transition: var(--transition);
}
.why-card:hover .icon-wrap { background: var(--green-main); }
.why-card h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.why-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.testimonial-card {
  background: var(--green-xlight);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-accent);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-card .quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--green-light);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px; right: 18px;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.8rem;
}
.stars span { color: var(--gold); font-size: 1rem; }
.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-author .avatar {
  width: 40px; height: 40px;
  background: var(--green-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author .author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.testimonial-author .author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== WHATSAPP STRIP ===== */
.whatsapp-strip {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 1.5rem 2rem;
}
.whatsapp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.whatsapp-strip-text { color: var(--white); }
.whatsapp-strip-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.whatsapp-strip-text span { font-size: 0.875rem; opacity: 0.85; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1fb059; transform: translateY(-2px); }

/* ===== ANNOUNCEMENT ===== */
.announcement-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}
.announcement-box {
  background: var(--green-gradient);
  color: var(--white);
  text-align: center;
  padding: 1.1rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  line-height: 1.6;
}
.announcement-box strong { font-weight: 700; }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-strip a { color: var(--white); }
.contact-strip a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer { background: #073d20; color: rgba(255,255,255,0.75); }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.7rem;
}
.footer-contact-item .fc-icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item .fc-text { font-size: 0.83rem; color: rgba(255,255,255,0.65); }
.footer-contact-item .fc-text a { color: #7ef0b0; font-weight: 600; }
.footer-contact-item .fc-text a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom .made { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--hero-gradient);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a8f0c0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero p { font-size: 0.97rem; opacity: 0.85; }
.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

/* ===== SERVICES FULL PAGE ===== */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  border: 2px solid var(--green-main);
  background: transparent;
  color: var(--green-main);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-main);
  color: var(--white);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-detail-card[data-hidden="true"] { display: none; }
.service-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-detail-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-detail-card:hover img { transform: scale(1.05); }
.sdc-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sdc-body h3 {
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.sdc-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.sdc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sdc-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}
.sdc-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-main);
}
.btn-book-service {
  display: block;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.55rem;
  background: var(--green-gradient);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.btn-book-service:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-light);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.ci-icon-wrap {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.ci-text span, .ci-text a {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.ci-text a { color: var(--green-main); font-weight: 600; }
.ci-text a:hover { text-decoration: underline; }
.wa-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e7fef2;
  border: 1.5px solid #25d366;
  color: #075e54;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  margin: 1.2rem 0;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.wa-contact-btn:hover { background: #d0fae3; }
.map-wrap {
  margin-top: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--green-light);
}
.map-wrap iframe { display: block; }
.map-open-link {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
}
.map-open-link:hover { background: #d0efdc; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-light);
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.form-group label span { color: var(--red-text); }
.input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.input-wrap .input-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-xlight);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.input-wrap input,
.input-wrap textarea {
  flex: 1;
  padding-left: 0.85rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid #d1e8db;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  background: #fafffc;
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(16,122,60,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red-text);
  background: var(--red-bg);
}
.error-msg {
  font-size: 0.76rem;
  color: var(--red-text);
  margin-top: 0.25rem;
  display: none;
}
.has-error .error-msg { display: block; }
.form-group textarea { resize: vertical; min-height: 100px; }
.char-counter {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 3px;
}
.btn-primary {
  width: 100%;
  padding: 0.8rem;
  background: var(--green-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,122,60,0.3); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.form-note strong { color: var(--green-main); }

/* ===== LOGIN PAGE ===== */
.login-wrapper {
  min-height: calc(100vh - 66px - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #e8f5ee 0%, #f0faf4 50%, #e0f2e9 100%);
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 440px;
  text-align: center;
  border: 1px solid var(--border);
}
.login-card .login-icon {
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--green-main);
  box-shadow: 0 0 0 6px var(--green-xlight);
}
.login-card h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--green-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.login-card .subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.tab-row {
  display: flex;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.tab-btn {
  flex: 1;
  padding: 0.55rem;
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active { background: var(--green-main); color: var(--white); }
.tab-panel { display: none; text-align: left; }
.tab-panel.active { display: block; }
.login-card .form-group { text-align: left; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 2.8rem; }
.toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 3px;
  line-height: 1;
}
.login-card .forgot {
  font-size: 0.8rem;
  color: var(--green-main);
  text-align: right;
  display: block;
  margin-top: -0.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.login-card .forgot:hover { text-decoration: underline; }
.divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.register-link {
  margin-top: 1.2rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
}
.register-link a { color: var(--green-main); font-weight: 700; }

/* ===== OTP REGISTRATION ===== */
.otp-step-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: .4px;
}
.otp-sent-notice {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--green-xlight);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  margin-bottom: 1.1rem;
}
.otp-sent-notice strong { display: block; font-size: .88rem; color: var(--text-dark); }
.otp-sent-notice p { font-size: .78rem; color: var(--text-muted); margin: 0; }
.otp-email-display {
  font-weight: 700;
  color: var(--green-dark);
  word-break: break-all;
}
.otp-input-wrap input {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .35rem;
  text-align: center;
  outline: none;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}
.otp-input-wrap input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(16,122,60,.1);
}
.otp-resend-row {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .85rem;
}
.btn-resend {
  background: none;
  border: none;
  color: var(--green-main);
  font-weight: 700;
  font-size: .78rem;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  font-family: inherit;
}
.btn-resend:hover { text-decoration: underline; }
.btn-resend:disabled { color: var(--text-muted); cursor: not-allowed; }

/* ===== AUTH LOADING SPINNER ===== */
.auth-loading {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: .88rem;
}
.auth-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green-main);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto .75rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== USER INITIALS AVATAR ===== */
.loggedin-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid var(--green-accent);
}

/* ===== EMAIL CONFIRMATION NOTICE ===== */
.confirm-notice {
  text-align: center;
  padding: 1.25rem .5rem;
  color: var(--text-dark);
}
.confirm-notice strong { display: block; font-size: 1rem; margin-bottom: .4rem; }
.confirm-notice p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ===== WHATSAPP SUBMIT BUTTON ===== */
.btn-wa-submit {
  background: #25d366 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.btn-wa-submit:hover {
  background: #1ebe5d !important;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* ===== GOOGLE SIGN-IN BUTTON ===== */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .7rem 1rem;
  border: 1.5px solid #dadce0;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #3c4043;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-google:hover {
  background: #f8f9fa;
  box-shadow: var(--shadow);
  border-color: #c6c6c6;
}
/* Hide fallback button when GSI renders its own button */
.g_id_signin + #googleFallbackBtn { display: none; }

/* ===== LOGGED-IN VIEW ===== */
.loggedin-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}
.loggedin-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-accent);
  background: var(--green-light);
}
.loggedin-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}
.loggedin-name {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: .2rem;
}
.loggedin-email {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.loggedin-benefits {
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  text-align: left;
  margin-bottom: 1.25rem;
}
.benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.loggedin-benefits ul { padding: 0; }
.loggedin-benefits li {
  font-size: .8rem;
  color: var(--text-muted);
  padding: .2rem 0 .2rem 1.3rem;
  position: relative;
}
.loggedin-benefits li span {
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}
.btn-logout {
  width: 100%;
  background: none;
  border: 1.5px solid #e5e7eb;
  color: var(--text-muted);
  padding: .55rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.btn-logout:hover { border-color: #c0392b; color: #c0392b; background: #fff5f5; }

/* ===== FORGOT PASSWORD ===== */
.forgot-intro {
  text-align: center;
  margin-bottom: 1.25rem;
}
.forgot-intro p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.forgot-success {
  text-align: center;
  padding: 1rem 0;
  color: var(--text-dark);
}
.forgot-success strong { display: block; font-size: 1rem; margin-bottom: .4rem; }
.forgot-success p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PARTNER BADGE ===== */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-gradient);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.partner-benefits {
  background: var(--green-xlight);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  margin-top: 1.5rem;
  text-align: left;
  border: 1px solid var(--border);
}
.partner-benefits h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.partner-benefits ul { padding-left: 0; }
.partner-benefits ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.partner-benefits ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-benefits ul li::after {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 3px;
  font-size: 0.6rem;
  color: var(--white);
  font-weight: 800;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 998;
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); animation-play-state: paused; }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--green-gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-dark);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== IMAGE PLACEHOLDER FALLBACK ===== */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #0a5c2d 0%, #19b550 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.service-detail-card .img-placeholder { min-height: 190px; }
.hero-image-wrap .img-placeholder {
  min-height: 300px;
  border-radius: 24px;
  max-width: 440px;
  margin: 0 auto;
}

/* ===== FOCUS ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--green-accent);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: #0a5c2d;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1rem 1.2rem;
    gap: 3px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .navbar.scrolled ~ .nav-links, .nav-links { top: 66px; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: var(--radius-sm); text-align: center; }
  .nav-links a::after { display: none; }
  .nav-links .btn-login, .nav-links .btn-partner { margin-left: 0; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 320px; margin: 0 auto; }
  .section-wrap { padding: 2.5rem 1.5rem; }
  .whatsapp-strip-inner { text-align: center; justify-content: center; }
  .contact-strip { flex-direction: column; gap: 0.5rem; font-size: 0.83rem; }
  .footer-top { padding: 2rem 1.5rem; }
}

@media (max-width: 520px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .login-card { padding: 2rem 1.4rem; }
  .page-content { padding: 2rem 1.2rem; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  html { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   ORDER MEDICINE PAGE — PRESCRIPTION ONLY
   =================================================== */

/* Layout */
.rx-order-wrap {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* Main prescription card */
.rx-order-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.rx-order-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.rx-order-card h2 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: .6rem;
}
.rx-order-sub {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Steps */
.rx-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  background: var(--green-xlight);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
}
.rx-step {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-align: left;
}
.rx-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rx-step-text strong { display: block; font-size: .88rem; color: var(--text-dark); }
.rx-step-text span { font-size: .75rem; color: var(--text-muted); }
.rx-step-arrow { font-size: 1.3rem; color: var(--green-main); font-weight: 700; }

/* Main WhatsApp CTA */
.btn-rx-main {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25d366;
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  margin-bottom: 1.5rem;
}
.btn-rx-main:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

/* Prescription note */
.rx-note {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  background: #fff3cd;
  border: 1.5px solid #f5a623;
  border-radius: var(--radius-sm);
  padding: .7rem 1.1rem;
  font-size: .82rem;
  color: #7d4e00;
  text-align: left;
  max-width: 420px;
}
.rx-note-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

/* Side info cards */
.rx-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rx-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.rx-info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.rx-info-card.highlight {
  background: var(--green-xlight);
  border-color: var(--green-accent);
}
.ric-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.rx-info-card h3 { font-size: .9rem; margin-bottom: .3rem; }
.rx-info-card p { font-size: .8rem; color: var(--text-muted); margin-bottom: .6rem; }
.btn-ric-call {
  display: block;
  text-align: center;
  background: var(--green-gradient);
  color: #fff;
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  margin-top: .4rem;
  transition: var(--transition);
}
.btn-ric-call:hover { opacity: .88; color: #fff; }

/* Responsive */
@media (max-width: 860px) {
  .rx-order-wrap { grid-template-columns: 1fr; }
  .rx-info-cards { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rx-order-card { padding: 1.75rem 1.25rem; }
  .rx-steps { flex-direction: column; align-items: flex-start; }
  .rx-step-arrow { display: none; }
  .rx-info-cards { grid-template-columns: 1fr; }
  .btn-rx-main { font-size: .92rem; padding: .85rem 1.5rem; }
}

/* ===== legacy classes below kept to avoid broken refs ===== */
.rx-notice-banner {
  background: #fff3cd;
  border-bottom: 2px solid #f5a623;
  padding: .85rem 2rem;
  position: sticky;
  top: 66px;
  z-index: 900;
}
.rx-notice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.rx-icon { font-size: 1.5rem; flex-shrink: 0; }
.rx-text { flex: 1; min-width: 200px; }
.rx-text strong { display: block; color: #7d4e00; font-size: .95rem; }
.rx-text span { color: #7d4e00; font-size: .85rem; }
.btn-rx-whatsapp {
  background: #25d366;
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.btn-rx-whatsapp:hover { background: #1ebe5d; color: #fff; }

/* Layout */
.order-layout {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

/* Search */
.order-search-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.order-search-input {
  width: 100%;
  padding: .75rem 1rem .75rem 2.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.order-search-input:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(16,122,60,.1); }
.search-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

/* Category tabs */
.med-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.med-tab {
  padding: .4rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.med-tab:hover { border-color: var(--green-main); color: var(--green-main); }
.med-tab.active { background: var(--green-main); border-color: var(--green-main); color: #fff; }

/* Medicine grid */
.medicine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 1rem;
}
.medicine-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.medicine-card:hover { box-shadow: var(--shadow); border-color: var(--green-accent); transform: translateY(-3px); }
.med-card-top { display: flex; align-items: center; justify-content: space-between; }
.med-icon { font-size: 1.4rem; }
.med-cat-tag {
  font-size: .65rem;
  background: var(--green-light);
  color: var(--green-dark);
  padding: .15rem .5rem;
  border-radius: 999px;
  font-weight: 600;
}
.med-name { font-weight: 600; font-size: .88rem; color: var(--text-dark); line-height: 1.3; }
.med-brand { font-size: .75rem; color: var(--text-muted); }
.med-price { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-top: .2rem; }
.med-card-actions { margin-top: .5rem; }
.btn-add-cart {
  width: 100%;
  padding: .45rem;
  background: var(--green-gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-cart:hover { opacity: .88; }

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-xlight);
  border-radius: var(--radius-sm);
  padding: .25rem .5rem;
  justify-content: center;
}
.qty-control.small { padding: .15rem .35rem; gap: .3rem; }
.qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--green-dark); }
.qty-val { font-weight: 700; font-size: .9rem; min-width: 20px; text-align: center; }

.no-results { color: var(--text-muted); font-size: .9rem; padding: 1rem 0; grid-column: 1/-1; }
.no-results a { color: var(--green-main); text-decoration: underline; }
.catalogue-note { font-size: .75rem; color: var(--text-muted); margin-top: 1rem; }

/* Cart */
.order-cart-wrap { position: sticky; top: 130px; }
.order-cart {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cart-header {
  background: var(--green-gradient);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title { font-weight: 700; font-size: 1rem; font-family: 'Poppins', sans-serif; }
.cart-count { font-size: .8rem; background: rgba(255,255,255,.2); padding: .2rem .65rem; border-radius: 999px; }
.cart-empty { padding: 2rem 1.25rem; text-align: center; color: var(--text-muted); font-size: .88rem; }
.cart-items { padding: .5rem .5rem 0; max-height: 300px; overflow-y: auto; }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--green-light);
}
.cart-item:last-child { border-bottom: none; }
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-size: .82rem; font-weight: 600; color: var(--text-dark); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-unit { font-size: .7rem; color: var(--text-muted); }
.ci-right { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.ci-price { font-size: .85rem; font-weight: 700; color: var(--green-dark); min-width: 40px; text-align: right; }
.cart-total-wrap { padding: 1rem 1.25rem 1.25rem; border-top: 1.5px solid var(--green-light); }
.cart-subtotal, .cart-delivery {
  display: flex; justify-content: space-between;
  font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem;
}
.free-label { color: var(--green-main); font-weight: 700; }
.cart-total-line {
  display: flex; justify-content: space-between;
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  padding-top: .5rem; border-top: 1.5px dashed var(--border); margin-bottom: .9rem;
}

/* Cart prescription warning */
.cart-rx-warning {
  background: #fff3cd;
  border: 1.5px solid #f5a623;
  border-radius: var(--radius-sm);
  padding: .65rem .85rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  font-size: .8rem;
  color: #7d4e00;
}
.cart-rx-warning span { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }

/* Cart action buttons */
.cart-actions { display: flex; flex-direction: column; gap: .6rem; }
.btn-cart-rx {
  background: #25d366;
  color: #fff;
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: var(--transition);
}
.btn-cart-rx:hover { background: #1ebe5d; color: #fff; }
.btn-cart-order {
  background: var(--green-gradient);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: var(--transition);
}
.btn-cart-order:hover { opacity: .88; color: #fff; }
.btn-cart-clear {
  width: 100%;
  margin-top: .6rem;
  background: none;
  border: 1px solid #e5e7eb;
  color: var(--text-muted);
  font-size: .78rem;
  padding: .4rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cart-clear:hover { border-color: #c0392b; color: #c0392b; }

/* Custom order section */
.custom-order-section { background: var(--white); }
.custom-order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.custom-order-card {
  background: var(--green-xlight);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.custom-order-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.co-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.custom-order-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.custom-order-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.btn-co-wa, .btn-co-call, .btn-co-dir {
  display: inline-block;
  padding: .55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}
.btn-co-wa { background: #25d366; color: #fff; }
.btn-co-wa:hover { background: #1ebe5d; color: #fff; }
.btn-co-call { background: var(--green-gradient); color: #fff; }
.btn-co-call:hover { opacity: .88; color: #fff; }
.btn-co-dir { background: var(--white); border: 1.5px solid var(--green-main); color: var(--green-main); }
.btn-co-dir:hover { background: var(--green-main); color: #fff; }

/* Responsive order page */
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-cart-wrap { position: static; }
  .order-cart { max-width: 100%; }
  .custom-order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .medicine-grid { grid-template-columns: repeat(2, 1fr); }
  .rx-notice-banner { top: 56px; padding: .65rem 1rem; }
}

/* ===================================================
   INSURANCE ENQUIRY MODAL
   =================================================== */
.enq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.enq-overlay.open {
  display: flex;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.enq-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.enq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0;
}
.enq-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 999px;
  margin-bottom: .35rem;
}
.enq-header h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0;
}
.enq-close {
  background: #f3f4f6;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: .5rem;
  transition: var(--transition);
  color: var(--text-muted);
}
.enq-close:hover { background: #e5e7eb; color: var(--text-dark); }

.enq-body { padding: 1rem 1.5rem 1.5rem; }
.enq-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}

.enq-form-group { margin-bottom: .9rem; }
.enq-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.enq-input-row {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.enq-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--green-xlight);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.enq-input-row input,
.enq-input-row select {
  flex: 1;
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
}
.enq-input-row input:focus,
.enq-input-row select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(16,122,60,.1);
}
.enq-form-group textarea {
  width: 100%;
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  outline: none;
  resize: none;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
}
.enq-form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(16,122,60,.1);
}
.enq-err {
  display: block;
  font-size: .75rem;
  color: var(--red-text);
  margin-top: .25rem;
  min-height: .9rem;
}
.enq-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .98rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-top: .25rem;
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.enq-submit-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

@media (max-width: 520px) {
  .enq-modal { max-height: 95vh; }
  .enq-header, .enq-body { padding-left: 1.1rem; padding-right: 1.1rem; }
}
