@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --accent: #ff5e00;
  --accent2: #ffb347;
  --green: #25d366;
  --white: #ffffff;
  --off: #f7f8fc;
  --gray: #6b7a99;
  --border: #e4e8f0;
  --text: #1a2340;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1,h2,h3,h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo .logo-badge {
  background: var(--accent);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  display: block;
}

.nav-links li a:hover { color: var(--navy); background: var(--off); }
.nav-links li a.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

.nav-cta:hover { background: #e04a00 !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 999;
}
.dropdown:hover .dropdown-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: .15s;
}
.dropdown-menu a:hover { background: var(--off); color: var(--accent); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Admin lock */
#admin-lock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  font-size: 16px;
  text-decoration: none;
  transition: .2s;
}
#admin-lock-btn:hover { background: var(--navy) !important; border-color: var(--navy) !important; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1e4d9b 100%);
  color: white;
  padding: 90px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,94,0,.12);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,179,71,.08);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,94,0,.18);
  border: 1px solid rgba(255,94,0,.4);
  color: #ffb347;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: white;
}

.hero h1 span { color: var(--accent2); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .2s;
  box-shadow: 0 4px 20px rgba(255,94,0,.4);
}

.btn-primary:hover { background: #e04a00; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: .2s;
}

.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* Hero form card */
.hero-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.hero-form-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-form-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.hf-group { margin-bottom: 14px; }

.hf-group input,
.hf-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off);
  outline: none;
  transition: .2s;
}

.hf-group input:focus,
.hf-group select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,94,0,.1);
}

.hf-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  transition: .2s;
  margin-top: 4px;
}

.hf-submit:hover { background: #e04a00; }

.hf-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 18px 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 500;
}

.trust-item .icon { font-size: 16px; }
.trust-item strong { color: white; }

/* ── SECTION LAYOUTS ──────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-label { margin-left: auto; margin-right: auto; }

/* ── SERVICES GRID ────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s;
}

.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,94,0,.1), rgba(255,179,71,.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.svc-price-note { font-size: 12px; color: var(--gray); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 16px;
  transition: .2s;
}

.svc-link:hover { gap: 10px; }

/* ── TERMITE PRICING TABLE ────────────────────────────────────────────────── */
.pricing-table-wrap {
  background: var(--off);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-top: 48px;
}

.pricing-table-head {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-table-head h3 { color: white; font-size: 1.1rem; }
.pricing-table-head span { color: rgba(255,255,255,.6); font-size: 13px; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: rgba(10,22,40,.04);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255,94,0,.03); }

.price-badge {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* ── LOCATIONS GRID ───────────────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.loc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: .2s;
}

.loc-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,94,0,.04);
  transform: translateY(-2px);
}

.loc-icon { font-size: 16px; flex-shrink: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  color: rgba(255,94,0,.12);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--navy); font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 40px auto 0; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: .2s;
}

.faq-item:hover { border-color: rgba(255,94,0,.3); }

.faq-q {
  width: 100%;
  background: white;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  transition: .2s;
}

.faq-q:hover { background: var(--off); }
.faq-q.open { background: rgba(255,94,0,.04); color: var(--accent); }

.faq-icon {
  font-size: 20px;
  color: var(--accent);
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  background: white;
}

.faq-a.open { display: block; }

/* ── CTA BANNER ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,94,0,.15);
}

.cta-banner h2 { font-size: 2rem; color: white; margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 32px; position: relative; font-size: 1.05rem; }

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .2s;
}
.btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb-inner a { color: var(--blue); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* ── PAGE HERO (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,94,0,.1);
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; margin: 0 auto 24px; position: relative; z-index: 1; font-weight: 300; }

/* ── INLINE BOOKING FORM ──────────────────────────────────────────────────── */
.booking-section {
  background: var(--navy);
  padding: 56px 24px;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.booking-text h2 { color: white; font-size: 2rem; margin-bottom: 12px; }
.booking-text p { color: rgba(255,255,255,.65); font-size: 1rem; font-weight: 300; }

.booking-form {
  background: white;
  border-radius: 16px;
  padding: 32px;
}

.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.bf-group { margin-bottom: 14px; }
.bf-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }

.bf-group input,
.bf-group select,
.bf-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--off);
  outline: none;
  transition: .2s;
}

.bf-group input:focus,
.bf-group select:focus,
.bf-group textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,94,0,.1);
}

.bf-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  transition: .2s;
  margin-top: 4px;
}

.bf-submit:hover { background: #e04a00; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: white;
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { font-family: 'Syne',sans-serif; font-weight:800; font-size:1.2rem; color:white; margin-bottom:12px; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.5); line-height:1.8; margin-bottom:20px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--accent2); }

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: .2s; }
.footer-links li a:hover { color: var(--accent2); padding-left: 4px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }

/* ── MOBILE STICKY BAR ────────────────────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-bar-inner {
  display: flex;
}

.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.sticky-bar a:first-child { background: var(--accent); }
.sticky-bar a:last-child { background: var(--green); }

/* ── CONTENT ARTICLE ──────────────────────────────────────────────────────── */
.article-body {
  line-height: 1.9;
  color: #374151;
  font-size: 15px;
}

.article-body h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.article-body h3 {
  font-size: 1.15rem;
  color: var(--blue);
  margin: 28px 0 12px;
}

.article-body p { margin-bottom: 16px; }

.highlight-box {
  background: rgba(255,94,0,.06);
  border: 1px solid rgba(255,94,0,.2);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
}

/* ── UTILS ────────────────────────────────────────────────────────────────── */
.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.gap-top { margin-top: 48px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.success-msg {
  display: none;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: #166534;
  margin-top: 12px;
  font-weight: 500;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 460px; }
  .booking-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  #admin-lock-li a {
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--off);
    border: 1px solid var(--border);
    font-size: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 14px 16px; font-size: 15px; border-radius: 10px; }
  .nav-links li a:hover { background: var(--off); }
  /* Disable hover-based dropdown on mobile — touch triggers hover which breaks layout */
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--off); border-radius: 8px; margin-top: 4px; display: none; grid-template-columns: 1fr; }
  .dropdown.open .dropdown-menu { display: flex !important; flex-direction: column !important; }
  .dropdown-menu a { padding: 11px 16px !important; font-size: 14px; border-bottom: 1px solid var(--border); }
  .hero { padding: 56px 24px 48px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-form-card { display: none; }
  .section { padding: 56px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sticky-bar { display: block; }
  body { padding-bottom: 52px; }
  .bf-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; }
  .cta-banner h2 { font-size: 1.5rem; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}

/* ── SERVICE IMAGE CARDS — mobile responsive ─────────────────────────── */
@media (max-width: 768px) {
  .seo-grid { grid-template-columns: 1fr !important; }
  #pest-control-services-delhi-guide .seo-grid,
  #about-rc-pest-control .seo-grid { gap: 28px !important; }
  #about-rc-pest-control > .container > div[style*="grid-template-columns:repeat(4"],
  #pest-control-services-delhi-guide > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  #about-rc-pest-control > .container > div[style*="grid-template-columns:repeat(4"],
  #pest-control-services-delhi-guide > .container > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}
