/* ==========================================================================
   DYNAMIC EXPRESS SOLUTIONS — Custom Stylesheet
   Palette: Fresh Green (trust/cleanliness) + Energetic Orange (action)
            + Deep Navy (contrast) on bright white
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --navy-light: #f1f5f9;
  --gold: #c69b3f;
  --gold-dark: #a77d2c;
  --gold-light: #faf7f0;
  --ink: #121212;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-warm: #fdfbf7;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.12);
  --container: 1160px;
  --font: "Segoe UI", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-soft); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.center { text-align: center; margin-top: 2.2rem; }
.icon { width: 1.1em; height: 1.1em; vertical-align: -0.18em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-block { width: 100%; text-align: center; }

.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--white); box-shadow: 0 8px 22px rgba(198, 155, 63, 0.3); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(198, 155, 63, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--gold-dark); }

/* ---------- Highlights & Utility Colors ---------- */
.hl-gold { color: var(--gold); }
.hl-navy { color: var(--navy); }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-success { color: #25d366 !important; } /* WhatsApp brand green color */

/* Font Awesome icon spacing when next to text */
.topbar-contact i,
.hero-trust i,
.section-title i,
.section-eyebrow i,
.btn i,
.contact-list i,
.footer-contact i {
  margin-right: 0.45rem;
}

/* Why Choose Us Icons */
.why-icon {
  font-size: 2.3rem;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #e3f9ef;
  font-size: 0.88rem;
  padding: 0.45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-cert { color: #c69b3f; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-contact a { color: #e3f9ef; }
.topbar .divider { margin: 0 0.6rem; opacity: 0.4; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(16, 42, 67, 0.08);
}
.header-inner { display: flex; align-items: center; gap: 1.1rem; padding: 0.7rem 20px; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none !important; }
.brand-logo { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; box-shadow: 0 4px 12px rgba(198,155,63,0.3); }
.brand-name { display: block; font-weight: 800; font-size: 1.12rem; color: var(--navy); line-height: 1.15; }
.brand-name em { font-style: normal; color: var(--gold); }
.brand-tag { display: block; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

.epa-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--navy-light); color: var(--navy-soft);
  border: 2px solid var(--navy);
  padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700; white-space: nowrap;
}
.epa-badge-img {
  height: 20px;
  width: auto;
  border-radius: 4px;
  display: block;
}

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { color: var(--navy); font-weight: 600; text-decoration: none !important; position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 3px;
  background: var(--gold); border-radius: 2px; transition: width 0.2s ease;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 0.55rem 1.2rem; border-radius: 999px; box-shadow: 0 6px 16px rgba(15,23,42,0.18); transition: background .18s; }
.nav-cta:hover { background: var(--navy-soft); }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0b1329 0%, var(--navy) 50%, var(--navy-soft) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,200,80,0.25), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.12), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 6.5rem;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.12; font-weight: 800; margin-bottom: 1.1rem; }
.hero h1 .hl-gold { color: #ffd166; }
.hero h1 .hl-navy { color: #ffffff; }
.hero-sub { font-size: 1.1rem; max-width: 56ch; margin-bottom: 1.8rem; color: #e2e8f0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; font-size: 0.92rem; font-weight: 600; color: #e2e8f0; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255,255,255,0.85);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-stat {
  position: absolute; left: -14px; bottom: 22px;
  background: var(--white); color: var(--navy);
  padding: 0.7rem 1.1rem; border-radius: 12px;
  box-shadow: var(--shadow-lg); font-size: 0.92rem;
  border-left: 5px solid var(--gold);
}
.hero-stat strong { color: var(--gold-dark); font-size: 1.15rem; }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section { padding: 4.5rem 0; }
.section-eyebrow {
  text-align: center; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.82rem; color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.section-title { text-align: center; font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--navy); font-weight: 800; margin-bottom: 0.8rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 62ch; margin: 0 auto 2.6rem; font-size: 1.05rem; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border-top: 5px solid var(--gold);
}
.gallery-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-card figcaption { padding: 1.1rem 1.2rem 1.4rem; }
.gallery-card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 0.3rem; }
.gallery-card p { color: var(--muted); font-size: 0.93rem; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: linear-gradient(180deg, var(--bg-soft), #faf8f5); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .22s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-pest { border-top: 6px solid var(--gold); }
.service-clean { border-top: 6px solid var(--navy); }
.service-icon { font-size: 2.6rem; margin-bottom: 0.6rem; }
.service-card h3 { color: var(--navy); font-size: 1.45rem; margin-bottom: 0.6rem; }
.service-card > p { color: var(--muted); margin-bottom: 1.1rem; }
.service-list { margin-bottom: 1.6rem; }
.service-list li { padding: 0.42rem 0 0.42rem 1.7rem; position: relative; color: var(--ink); border-bottom: 1px dashed #e0e7ee; }
.service-list li:last-child { border-bottom: 0; }
.service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}
.service-pest .service-list li::before { color: var(--gold); }
.service-clean .service-list li::before { color: var(--navy); }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-us { background: var(--bg-warm); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.7rem 1.4rem; text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--navy);
  transition: transform .2s ease;
}
.why-card:hover { transform: translateY(-6px); border-bottom-color: var(--gold); }
.why-emoji { font-size: 2.3rem; display: block; margin-bottom: 0.6rem; }
.why-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

/* ==========================================================================
   LOCATIONS
   ========================================================================== */
.locations { background: var(--bg); }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.location-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: #e6f2ff;
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.location-card:hover { transform: translateY(-6px); }
.location-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.loc-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  background: var(--gold); color: var(--white);
  padding: 0.18rem 0.6rem; border-radius: 999px;
}
.location-card address { margin-bottom: 0.7rem; color: #c3d4e6; }
.location-card a { color: #c69b3f; font-weight: 600; }
.loc-hours { font-size: 0.85rem; color: #9fb3c8; margin-top: 0.4rem; }
.locations-note { text-align: center; margin-top: 2.2rem; font-size: 1.05rem; color: var(--navy); background: var(--navy-light); display: table; padding: 0.8rem 1.6rem; border-radius: 999px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold), #ffa040);
  padding: 3.2rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.cta-banner h2 span { color: #fff3d6; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info .section-eyebrow, .contact-info .section-title { text-align: left; }
.contact-info > p { color: var(--muted); margin-bottom: 1.6rem; }
.contact-list li { padding: 0.55rem 0; font-size: 1.05rem; display: flex; gap: 0.6rem; align-items: center; }
.ci { font-size: 1.2rem; }
.epa-note {
  margin-top: 1.6rem; background: var(--navy-light); border-left: 5px solid var(--navy);
  padding: 1rem 1.2rem; border-radius: 8px; color: var(--navy-soft); font-size: 0.95rem;
}

.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2.2rem 2rem; box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold);
}
.contact-form h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.05rem; display: flex; flex-direction: column; }
.form-field label { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.3rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit; font-size: 1rem;
  padding: 0.72rem 0.9rem;
  border: 2px solid #dde5ec; border-radius: 10px;
  background: #fbfdfe; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(198,155,63,0.15);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid { border-color: #e02424; background: #fff5f5; }
textarea { resize: vertical; }

.form-status { margin-top: 0.9rem; font-weight: 700; text-align: center; min-height: 1.4em; }
.form-status.ok { color: var(--navy-soft); }
.form-status.err { color: #e02424; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy); color: #c3d4e6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 2.2rem;
  padding-top: 3.4rem; padding-bottom: 2.6rem;
}
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-epa { margin-top: 0.9rem; color: #c69b3f; font-weight: 700; }
.footer-col h3 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.9rem; }
.footer-col li { padding: 0.28rem 0; font-size: 0.95rem; }
.footer-col a { color: #c3d4e6; }
.footer-col a:hover { color: #c69b3f; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.1rem 0; font-size: 0.85rem; text-align: center; color: #8fa6bc; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--white) !important;
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 8px 22px rgba(255,122,0,0.45);
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  text-decoration: none !important;
  z-index: 60;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 10.5. INTERACTIVE WORK GALLERY ---------- */
#work-gallery {
  padding: 4.5rem 0;
  background: var(--bg);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.6rem;
}

.gallery-tab {
  background: var(--bg-soft);
  border: 1px solid rgba(198, 155, 63, 0.15);
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s ease;
  outline: none;
}

.gallery-tab:hover, .gallery-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(198, 155, 63, 0.25);
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.work-gallery-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid #e2ece9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 42, 67, 0.95) 0%, rgba(16, 42, 67, 0.5) 60%, rgba(16, 42, 67, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.work-gallery-item:hover .work-gallery-item-overlay {
  opacity: 1;
}

.work-gallery-item:hover img {
  transform: scale(1.08);
}

.work-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 155, 63, 0.25);
}

.work-gallery-item-tag {
  align-self: flex-start;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.work-gallery-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.work-gallery-item-desc {
  font-size: 0.85rem;
  color: #c3d4e6;
  line-height: 1.4;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 42, 67, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: var(--white);
  font-size: 2.8rem;
  cursor: pointer;
  transition: color 0.22s ease;
  z-index: 2010;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  z-index: 2010;
  outline: none;
  user-select: none;
}

.lightbox-arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.8rem;
  }
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
}

.lightbox-content-wrapper {
  max-width: 85%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.lightbox-content {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.5;
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   IPM METHODOLOGY SECTION
   ========================================================================== */
.ipm {
  background: var(--bg);
  position: relative;
  border-top: 1px solid #e2ece9;
  border-bottom: 1px solid #e2ece9;
}

.ipm-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.ipm-content .section-eyebrow, .ipm-content h2 {
  text-align: left;
}

.ipm-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.ipm-lead {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-soft);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--navy);
  padding-left: 1rem;
}

.ipm-text {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.ipm-quote {
  margin-top: 1.8rem;
  background: var(--bg-soft);
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.ipm-quote blockquote {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  border: 0;
  padding: 0;
  margin: 0;
}

/* IPM Visual Card */
.ipm-steps-card {
  background: var(--bg-soft);
  border: 1px solid rgba(198, 155, 63, 0.15);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
}

.ipm-steps-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--navy-light);
  padding-bottom: 0.6rem;
}

.ipm-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ipm-steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(198, 155, 63, 0.25);
}

.step-info h4 {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.step-info p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 3.2rem; padding-bottom: 5.4rem; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .epa-badge { display: none; } /* shown in topbar + hero trust list on tablets */
  .ipm-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    box-shadow: 0 16px 30px rgba(16,42,67,0.14);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .site-nav.open { max-height: 420px; }
  .site-nav a { padding: 0.95rem 22px; border-top: 1px solid #eef2f6; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { border-radius: 0; margin: 0; text-align: center; box-shadow: none; }
  .services-grid, .locations-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 2.2rem; }
  .cta-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-contact { display: none; }
  .brand-tag { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stat { left: 8px; bottom: 10px; padding: 0.5rem 0.8rem; font-size: 0.82rem; }
  .section { padding: 3.2rem 0; }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  background: linear-gradient(180deg, var(--bg-warm), #ffffff);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--gold);
  padding: 1.6rem 1.3rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-height: 220px;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--navy);
}

.review-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(198,155,63,0.95));
  color: var(--white);
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review-name {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.review-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}

/* Reviews responsive */
@media (max-width: 1020px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

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

