/* =========================================================
   LR Malabanan Plumbing Services — brand theme
   Yellow / black / gold, matching the live site's identity
   ========================================================= */

:root {
  --jat-yellow: #F7C600;
  --jat-yellow-dark: #DDAF00;
  --jat-orange: #F2A71B;
  --jat-black: #0A0A0A;
  --jat-charcoal: #171717;
  --jat-ink: #1a1a1a;
  --jat-gray-bg: #F5F5F5;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; color-scheme: light; }

body {
  font-family: var(--font-body);
  color: var(--jat-ink);
  background: #fff;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--jat-orange);
}

/* ---------- Buttons ---------- */
.btn-jat-primary {
  background: var(--jat-yellow);
  border-color: var(--jat-yellow);
  color: #111;
  font-weight: 700;
}
.btn-jat-primary:hover, .btn-jat-primary:focus {
  background: var(--jat-yellow-dark);
  border-color: var(--jat-yellow-dark);
  color: #111;
}
.btn-jat-outline {
  border: 2px solid #fff;
  background: #fff;
  color: #111;
  font-weight: 700;
}
.btn-jat-outline:hover {
  background: var(--jat-gray-bg);
  color: #111;
}
.btn-call {
  background: var(--jat-black);
  border-color: var(--jat-black);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
}
.btn-call:hover { background: #000; border-color:#000; color:#fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--jat-black);
  color: #ddd;
  font-size: 0.85rem;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--jat-yellow); }
.call-pill {
  background: var(--jat-black);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.call-pill:hover { background: #000; color: var(--jat-yellow); }

/* ---------- Navbar ---------- */
.navbar-jat {
  background: var(--jat-yellow) !important;
}
.navbar-jat .nav-link {
  color: #111;
  font-weight: 600;
}
.navbar-jat .nav-link:hover,
.navbar-jat .nav-link:focus { color: #000; text-decoration: underline; text-underline-offset: 4px; }
.navbar-jat .navbar-brand { line-height: 1; }
.navbar-jat .navbar-toggler {
  border-color: #111;
}
.navbar-jat .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,17,17,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-jat .dropdown-menu { max-height: 60vh; overflow-y: auto; }

.brand-mark {
  background: var(--jat-black);
  color: var(--jat-yellow);
  padding: 0.4rem 0.7rem;
  border-radius: 0.35rem;
  display: inline-block;
  line-height: 1.05;
}
.brand-mark strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.brand-mark span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 600;
}
.navbar-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .brand-mark strong { font-size: 0.9rem; }
  .navbar-logo { height: 38px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(90deg, rgba(0,0,0,.72) 10%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%),
              url('../images/hero/hero-plumbing.jpg') center 30% / cover no-repeat;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
}
.hero .badge-live {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.35);
}
.hero h1 { color: #fff; font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.15; }
.hero .lead { font-size: clamp(1rem, 2.4vw, 1.25rem); }
.hero .hero-highlight {
  color: var(--jat-yellow);
  display: block;
}
@media (max-width: 767.98px) {
  .hero {
    padding: 3rem 0 2.5rem;
    background-image: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.55) 100%),
                       url('../images/hero/hero-plumbing.jpg');
    background-position: 72% 35%;
  }
}
.hero-mascot {
  max-width: 100%;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.45));
}

/* ---------- Sections ---------- */
section { scroll-margin-top: 100px; }
.section-pad { padding: 5rem 0; }
.bg-navy { background: var(--jat-black); color: #fff; }
.bg-navy .eyebrow { color: var(--jat-yellow); }
.bg-teal-soft { background: var(--jat-gray-bg); }

/* ---------- Service cards ---------- */
.service-card {
  border: none;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  height: 100%;
}
.bg-navy .service-card {
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.service-icon {
  width: 46px; height: 46px;
  object-fit: contain;
}
.service-icon-glyph {
  display: inline-block;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--jat-yellow);
}
.service-card h5 { color: var(--jat-orange); font-weight: 700; }

/* ---------- Why choose us ---------- */
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--jat-orange);
  min-width: 2.2rem;
}

/* ---------- Reviews (Google-style) ---------- */
.review-summary {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  background: #fff;
}
.review-summary .stars-lg { color: var(--jat-yellow); font-size: 1.4rem; letter-spacing: 3px; }
.review-summary .excellent {
  font-weight: 800;
  letter-spacing: 0.04em;
}
.review-card {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  height: 100%;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--jat-black);
  color: var(--jat-yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-stars { color: var(--jat-yellow); letter-spacing: 2px; }
.review-meta-time { font-size: 0.78rem; color: #888; }

/* ---------- Our Work gallery ---------- */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  display: block;
}

/* ---------- Areas we cover ---------- */
.area-pill {
  display: inline-block;
  margin: 0.15rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e2e2;
  font-size: 0.88rem;
  color: var(--jat-ink);
}

/* ---------- FAQ ---------- */
.faq-wrap {
  background: var(--jat-gray-bg);
  border-radius: 1.25rem;
  padding: 2rem;
}
.faq-title { color: var(--jat-orange); }
.accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
}
.accordion-button {
  background: transparent;
  font-weight: 700;
  color: var(--jat-ink);
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--jat-ink);
}
.accordion-body { background: #fff; border-radius: 0.5rem; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 15px 45px rgba(0,0,0,.35);
  color: var(--jat-ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--jat-yellow);
  box-shadow: 0 0 0 .2rem rgba(247,198,0,.25);
}
.form-label {
  color: var(--jat-ink);
  font-weight: 600;
}
.modal-content {
  color: var(--jat-ink);
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: var(--jat-black);
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ---------- Footer ---------- */
.footer-jat {
  background: var(--jat-black);
  color: #cfcfcf;
}
.footer-jat a { color: #cfcfcf; text-decoration: none; }
.footer-jat a:hover { color: var(--jat-yellow); }
.footer-jat h6 { color: var(--jat-yellow); }

/* honeypot field must stay invisible to humans, open to bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }
