/* =============================================
   CYLENDRA CNG — Main Stylesheet v2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
  --green:       #1d6b35;
  --green-light: #28a745;
  --green-dark:  #155228;
  --navy:        #1a2e4a;
  --navy-dark:   #0f1e30;
  --white:       #ffffff;
  --gray-bg:     #f4f7f4;
  --gray-light:  #e8f0e9;
  --text:        #2c3e50;
  --text-muted:  #6c757d;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --radius:      10px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ── TOP BAR ─────────────────────────────── */
.top-bar {
  background: var(--navy-dark);
  color: #cdd8e3;
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar i { color: var(--green-light); margin-right: 5px; }
.top-bar a { color: #cdd8e3; text-decoration: none; }

/* ── NAVBAR ──────────────────────────────── */
.navbar {
  padding: 10px 0;
  background: #fff !important;
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo { height: 56px; width: auto; }
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy) !important;
  padding: 6px 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--green) !important; }
.navbar-nav .nav-link.active { border-bottom: 2px solid var(--green); }
.btn-book-nav {
  background: var(--green);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-book-nav:hover { background: var(--green-dark) !important; color: #fff !important; }

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(120deg, #0f1e30 0%, #1a2e4a 50%, #1d3a50 100%);
  padding: 0;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background decoration circles */
.hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,107,53,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  padding: 70px 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

.peso-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.0;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 span { color: #5dd68c; }
.hero .hero-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-call {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background .2s, transform .15s;
  border: 2px solid var(--green);
}
.btn-call:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: background .2s, transform .15s;
  border: 2px solid #25d366;
}
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; color: #fff; transform: translateY(-2px); }

.btn-appt-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 11px 20px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all .2s;
  background: transparent;
}
.btn-appt-outline:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* ── HERO RIGHT — CNG CYLINDER ILLUSTRATION ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-card-wrap {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  text-align: center;
  width: 100%;
  max-width: 420px;
}

/* CNG Cylinder SVG-style illustration */
.cng-illustration {
  width: 200px;
  height: 240px;
  margin: 0 auto 24px;
  position: relative;
}

/* Cylinder body */
.cyl-body {
  position: absolute;
  left: 50%; top: 20px;
  transform: translateX(-50%);
  width: 100px; height: 180px;
  background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 30%, #ffffff 50%, #e0e0e0 70%, #b0b0b0 100%);
  border-radius: 50px;
  box-shadow: inset -8px 0 16px rgba(0,0,0,0.2), inset 8px 0 16px rgba(255,255,255,0.4), 0 8px 32px rgba(0,0,0,0.4);
}

/* Green CNG band on cylinder */
.cyl-band {
  position: absolute;
  left: 50%; top: 96px;
  transform: translateX(-50%);
  width: 100px; height: 50px;
  background: linear-gradient(90deg, #155228 0%, #1d6b35 40%, #28a745 60%, #1d6b35 80%, #155228 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyl-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
}

/* Diamond CNG logo on band */
.cyl-diamond {
  position: absolute;
  left: 50%; top: 108px;
  transform: translateX(-50%) rotate(45deg);
  width: 28px; height: 28px;
  border: 2px solid rgba(255,255,255,0.6);
}
.cyl-diamond-inner {
  position: absolute;
  inset: 4px;
  background: rgba(255,255,255,0.15);
}

/* Cylinder top cap */
.cyl-top {
  position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: linear-gradient(180deg, #888 0%, #ccc 100%);
  border-radius: 50%;
}

/* Valve on top */
.cyl-valve {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  background: linear-gradient(180deg, #666 0%, #999 100%);
  border-radius: 4px 4px 0 0;
}

/* Black bands */
.cyl-ring-top {
  position: absolute;
  left: 50%; top: 52px;
  transform: translateX(-50%);
  width: 100px; height: 10px;
  background: #222;
}
.cyl-ring-bot {
  position: absolute;
  left: 50%; top: 152px;
  transform: translateX(-50%);
  width: 100px; height: 10px;
  background: #222;
}

/* Bottom cap */
.cyl-bot {
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%);
  width: 70px; height: 20px;
  background: linear-gradient(180deg, #ccc 0%, #999 100%);
  border-radius: 50%;
}

/* PESO Stamp on hero card */
.peso-stamp {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--green);
  color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  line-height: 1.4;
}
.peso-stamp .star { font-size: 0.7rem; color: #ffd700; display: block; margin-bottom: 1px; }
.peso-stamp .big { font-size: 1.05rem; display: block; }

/* Hero card title */
.hero-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-card-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.hero-mini-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}
.hero-mini-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #5dd68c;
}
.hero-mini-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* ── SERVICE QUICK CARDS (below hero) ──────── */
.quick-services {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-top: 3px solid var(--green);
}
.quick-services .qs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 16px;
  border-right: 1px solid #eee;
  transition: background .2s;
}
.quick-services .qs-item:hover { background: var(--gray-bg); }
.quick-services .qs-item:last-child { border-right: none; }
.quick-services .qs-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.quick-services .qs-text h6 {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quick-services .qs-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: var(--green);
  color: #fff;
  padding: 16px 0;
}
.trust-bar .t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 6px 4px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-bar .col-md:last-child .t-item { border-right: none; }
.trust-bar .t-item i { font-size: 1.4rem; opacity: 0.9; }
.trust-bar .t-item p { margin: 0; font-size: 0.7rem; opacity: 0.8; }
.trust-bar .t-item h6 { margin: 0; font-size: 0.82rem; font-weight: 700; }

/* ── SECTION TITLES ──────────────────────── */
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
}
.section-title h2 span { color: var(--green); }
.section-title p { color: var(--text-muted); font-size: 0.95rem; margin-top: 6px; }
.section-title .divider {
  width: 60px; height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ── SERVICE CARDS ───────────────────────── */
.services { background: var(--gray-bg); padding: 70px 0; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  border-top-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,107,53,0.14);
}
.service-card .s-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 16px;
}
.service-card h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── WHY US BAR ──────────────────────────── */
.why-us { background: var(--navy); padding: 46px 0; }
.why-box { text-align: center; color: #fff; padding: 16px; }
.why-box i {
  font-size: 2rem;
  color: #5dd68c;
  display: block;
  margin-bottom: 10px;
}
.why-box h5 { font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.why-box p { font-size: 0.76rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ── ABOUT SECTION ───────────────────────── */
.about-section { background: #fff; padding: 80px 0; }
.about-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-section h2 span { color: var(--green); }
.features { list-style: none; padding: 0; margin: 16px 0 24px; }
.features li {
  padding: 5px 0 5px 26px;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 800;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  border-bottom: 3px solid var(--green);
}
.stat-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  margin: 0;
}
.stat-box p { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0 0; font-weight: 600; }

.why-cng-box {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid var(--green);
}
.why-cng-box h5 {
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.why-cng-box ul { list-style: none; padding: 0; margin: 0; }
.why-cng-box ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.88rem;
  color: var(--text);
}
.why-cng-box ul li::before {
  content: '✔';
  position: absolute; left: 0;
  color: var(--green);
  font-size: 0.78rem;
}

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 66px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-section p { font-size: 0.97rem; opacity: 0.88; margin-bottom: 26px; }
.btn-light-cta {
  background: #fff;
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-light-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); color: var(--green-dark); }

/* ── APPOINTMENT SECTION ─────────────────── */
.appointment-section { background: var(--gray-bg); padding: 80px 0; }
.appt-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1.5px solid #d0dbd1;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,107,53,0.1);
  outline: none;
}
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 700;
  border: none;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); color: #fff; }

/* ── PAGE HEADER (inner pages) ───────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-header p { color: rgba(255,255,255,0.7); font-size: 0.97rem; margin: 0; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: #cdd8e3;
  padding: 50px 0 28px;
}
.footer-brand h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer-brand p { font-size: 0.83rem; margin-top: 6px; opacity: 0.7; line-height: 1.6; }
.footer-links h6 {
  color: #5dd68c;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  color: #cdd8e3;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color .2s;
}
.footer-links ul li a:hover { color: #5dd68c; }
.footer-contact p {
  font-size: 0.84rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #cdd8e3;
}
.footer-contact i { color: #5dd68c; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 36px;
  padding-top: 18px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ── WHATSAPP FLOAT ──────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.55);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { transform: scale(1.12); color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,0.7); }

/* ── CONTACT PAGE ────────────────────────── */
.contact-info-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
}
.contact-info-card h3 { font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-item .ci-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item h6 { font-weight: 700; font-size: 0.8rem; color: var(--text-muted); margin: 0 0 2px; text-transform: uppercase; }
.contact-item p { font-size: 0.9rem; color: var(--text); margin: 0; }

/* ── ABOUT PAGE ──────────────────────────── */
.mission-vision-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green);
}
.mission-vision-card h3 { font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.mission-vision-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── ADMIN ───────────────────────────────── */
.admin-header {
  background: var(--navy-dark);
  color: #fff;
  padding: 14px 0;
}
.admin-header h5 { margin: 0; font-weight: 700; font-size: 1rem; }
.admin-sidebar { background: var(--navy); min-height: 100vh; padding: 20px 0; }
.admin-sidebar a {
  display: block;
  color: rgba(255,255,255,0.72);
  padding: 11px 22px;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-left-color: #5dd68c;
}
.admin-sidebar i { width: 20px; margin-right: 8px; }
.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.admin-card h5 { font-weight: 700; color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; }
.admin-card h2 { font-size: 2.1rem; font-weight: 900; color: var(--navy); margin: 4px 0; }
.table th { background: var(--gray-bg); font-weight: 700; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }
.badge-pending   { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1e7dd; color: #0a5237; }
.badge-done      { background: #cfe2ff; color: #084298; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-card-wrap { max-width: 340px; }
  .cng-illustration { width: 160px; height: 200px; }
  .cyl-body { width: 80px; height: 148px; }
  .cyl-band { width: 80px; top: 78px; height: 40px; }
  .cyl-ring-top { width: 80px; top: 42px; }
  .cyl-ring-bot { width: 80px; top: 124px; }
  .cyl-top { width: 56px; }
  .cyl-bot { width: 56px; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 44px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-visual { margin-top: 28px; }
  .quick-services .qs-item { border-right: none; border-bottom: 1px solid #eee; }
  .trust-bar .t-item { border-right: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .top-bar { display: none; }
  .hero-buttons { gap: 8px; }
  .btn-call, .btn-whatsapp, .btn-appt-outline { font-size: 0.82rem; padding: 10px 14px; }
}

/* ═══════════════════════════════════════════════
   HERO — BACKGROUND IMAGE VERSION
   ═══════════════════════════════════════════════ */

.hero {
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #f0f4f0;
  padding: 0;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  position: relative;
}

/* Subtle white fade on left so text is readable over light bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 30%,
    rgba(255,255,255,0.65) 55%,
    rgba(255,255,255,0.0) 75%
  );
  pointer-events: none;
  z-index: 1;
}
.hero::after { display: none; }

.hero-inner {
  padding: 60px 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ── HERO LEFT TEXT ────────────────────────── */
.hero-left-col { padding-right: 30px; }

.hero-peso-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.hero-title .line-navy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.0;
  display: block;
}
.hero-title .line-green {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1.0;
  display: block;
}

/* Green underline after "SERVICES" */
.hero-title .line-navy:last-child {
  padding-bottom: 14px;
  border-bottom: 3px solid var(--green);
  margin-bottom: 4px;
  display: inline-block;
}

.hero-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 26px;
  line-height: 1.7;
}

/* ── CTA BUTTONS ───────────────────────────── */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all .2s;
}
.hbtn-call {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}
.hbtn-call:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-2px); }

.hbtn-wa {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}
.hbtn-wa:hover { background: #1ebe5a; border-color: #1ebe5a; color: #fff; transform: translateY(-2px); }

.hbtn-appt {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.hbtn-appt:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ── HERO TRUST ICON ROW ───────────────────── */
.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.htr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-width: 68px;
}
.htr-item i {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(29,107,53,0.1);
  border: 1.5px solid rgba(29,107,53,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}
.htr-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── RESPONSIVE HERO ───────────────────────── */
@media (max-width: 991px) {
  .hero {
    background-position: right center;
    min-height: 480px;
  }
  .hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.95) 45%,
      rgba(255,255,255,0.4) 75%,
      rgba(255,255,255,0.0) 100%
    );
  }
  .hero-title .line-navy,
  .hero-title .line-green { font-size: 2.6rem; }
}
@media (max-width: 767px) {
  .hero {
    background-position: 80% center;
    min-height: auto;
  }
  .hero::before {
    background: rgba(255,255,255,0.92);
  }
  .hero-inner { padding: 40px 0; }
  .hero-title .line-navy,
  .hero-title .line-green { font-size: 2rem; }
  .hero-btns { gap: 8px; }
  .hbtn { font-size: 0.82rem; padding: 9px 14px; }
  .hero-trust-row { gap: 12px; }
  .htr-item i { width: 40px; height: 40px; font-size: 1rem; }
}
