/* ═══════════════════════════════════════════════════════
   BUR DUBAI PEST CONTROL — MASTER STYLESHEET
   Used by every page. One file = site-wide design control.
═══════════════════════════════════════════════════════ */

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.bpc-header {
  background: #0a3d22;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.bpc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.bpc-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.bpc-logo-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #c8a84b; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.bpc-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900; color: #fff;
  letter-spacing: 0.5px; display: block;
  line-height: 1;
}
.bpc-logo-tagline {
  font-size: 10px; color: #c8a84b;
  letter-spacing: 2px; text-transform: uppercase; display: block;
  margin-top: 4px;
}

/* NAV */
.bpc-nav { display: flex; align-items: center; gap: 4px; }
.bpc-nav > a {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500; padding: 8px 16px;
  border-radius: 4px; transition: all 0.2s; white-space: nowrap;
}
.bpc-nav > a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.bpc-nav > a.active { color: #c8a84b; }

/* Dropdown */
.bpc-dropdown { position: relative; }
.bpc-dropdown-toggle {
  color: rgba(255,255,255,0.85);
  font-size: 14px; font-weight: 500; padding: 8px 16px;
  border-radius: 4px; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.bpc-dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
.bpc-dropdown-toggle::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.6);
  transition: transform 0.2s;
}
.bpc-dropdown:hover .bpc-dropdown-toggle::after { transform: rotate(180deg); }
.bpc-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #0a3d22;
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 8px;
  min-width: 420px;
  padding: 12px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.35);
  z-index: 200;
  columns: 2;
  column-gap: 12px;
}
.bpc-dropdown:hover .bpc-dropdown-menu { display: block; }
.bpc-dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  border-radius: 4px;
  break-inside: avoid;
  white-space: nowrap;
  transition: all 0.2s;
}
.bpc-dropdown-menu a:hover { color: #c8a84b; background: rgba(200,168,75,0.1); }

/* CTA */
.bpc-nav-cta {
  background: #c8a84b !important; color: #0a3d22 !important;
  font-weight: 600 !important; padding: 9px 20px !important;
  border-radius: 4px !important; margin-left: 10px;
  white-space: nowrap;
}
.bpc-nav-cta:hover { background: #e0bc5a !important; transform: translateY(-1px); }

/* Hamburger */
.bpc-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none;
}
.bpc-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}

/* Mobile nav */
.bpc-mobile-nav {
  display: none; background: #071e12;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bpc-mobile-nav a {
  display: block; color: rgba(255,255,255,0.8);
  font-size: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bpc-mobile-nav .section-head {
  color: #c8a84b; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 24px 6px; font-weight: 600;
  background: rgba(200,168,75,0.05);
}
.bpc-mobile-nav .sub { padding-left: 32px; font-size: 13px; color: rgba(255,255,255,0.65); }
.bpc-mobile-nav a:hover { color: #c8a84b; background: rgba(200,168,75,0.07); }

@media (max-width: 900px) {
  .bpc-nav { display: none; }
  .bpc-hamburger { display: flex; }
  .bpc-mobile-nav.open { display: block; }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0a3d22 0%, #1a7a4a 50%, #0f5233 100%);
  color: #fff; padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.15) 0%, transparent 60%);
  animation: bpcpulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bpcpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(200,168,75,0.2);
  border: 1px solid #c8a84b; color: #c8a84b;
  padding: 6px 18px; border-radius: 30px; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
  font-weight: 600;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: #c8a84b; }
.hero p {
  font-size: 1.1rem; opacity: 0.85; max-width: 640px;
  margin: 0 auto 36px; font-weight: 300; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-gold {
  background: #c8a84b; color: #0a3d22; padding: 14px 32px;
  border-radius: 4px; font-weight: 600; font-size: 15px;
  display: inline-block; transition: all 0.3s;
  border: 2px solid #c8a84b;
}
.btn-gold:hover { background: #e0bc5a; border-color: #e0bc5a; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: #fff; padding: 14px 32px;
  border-radius: 4px; font-weight: 500; font-size: 15px;
  display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-dark {
  background: #0a3d22; color: #fff; padding: 16px 40px;
  border-radius: 4px; font-weight: 600; font-size: 16px;
  display: inline-block; transition: all 0.3s;
  border: 2px solid #0a3d22;
}
.btn-dark:hover { background: #1a7a4a; border-color: #1a7a4a; transform: translateY(-2px); }

/* TRUST BAR */
.trust { background: #0f5233; display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px; color: #fff; font-size: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }

/* STATS */
.stats { background: #e8f5ee; padding: 60px 24px; text-align: center; }
.stats-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; max-width: 900px; margin: 0 auto; }
.stat h3 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #1a7a4a; font-weight: 900; }
.stat p { color: #666; font-size: 14px; margin-top: 6px; }

/* SECTION SHARED */
.bsec { padding: 80px 24px; }
.bsec-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  text-align: center; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: #c8a84b; font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center; margin-bottom: 16px; color: #1a1a1a;
  font-weight: 900; line-height: 1.25;
}
.section-subtitle {
  text-align: center; color: #666; font-size: 1.05rem;
  max-width: 680px; margin: 0 auto 48px;
}

/* SERVICES GRID */
.services { background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px; max-width: 1100px; margin: 0 auto;
}
.svc-card {
  border: 1px solid #e8e8e8; border-radius: 10px; padding: 32px 20px;
  text-align: center; transition: all 0.3s;
  color: #1a1a1a; display: block; background: #fff;
}
.svc-card:hover { border-color: #1a7a4a; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,122,74,0.12); }
.svc-emoji { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.svc-card h4 { font-size: 15px; font-weight: 600; }

/* WHY / FEATURE */
.why { background: linear-gradient(135deg, #0a3d22, #1a7a4a); color: #fff; }
.why .section-title { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.why-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 32px 24px; transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #c8a84b; font-weight: 900; line-height: 1; }
.why-card h4 { font-size: 17px; font-weight: 700; margin: 12px 0 10px; }
.why-card p { font-size: 14px; opacity: 0.85; line-height: 1.7; }

/* AREAS */
.areas { background: #fafafa; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 980px; margin: 0 auto; }
.chip {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 30px;
  padding: 8px 20px; font-size: 14px;
  color: #1a1a1a; transition: all 0.25s; display: inline-block;
}
.chip:hover { background: #1a7a4a; color: #fff; border-color: #1a7a4a; }

/* REVIEWS */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.review-card { background: #e8f5ee; border-radius: 10px; padding: 28px; border-left: 4px solid #1a7a4a; }
.stars { color: #c8a84b; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; line-height: 1.8; color: #333; margin-bottom: 14px; }
.reviewer { font-weight: 700; font-size: 14px; color: #0f5233; }

/* CTA SECTION */
.cta { background: #c8a84b; padding: 70px 24px; text-align: center; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,2.6rem); color: #0a3d22; margin-bottom: 14px; font-weight: 900; }
.cta p { color: #0f5233; font-size: 1.05rem; margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════
   ARTICLE / CONTENT PAGE (Service/Location pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0a3d22 0%, #1a7a4a 100%);
  color: #fff; padding: 70px 24px 60px; text-align: center;
}
.breadcrumb {
  max-width: 1100px; margin: 0 auto 20px;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: #c8a84b; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  margin-bottom: 16px; line-height: 1.2;
}
.page-hero h1 span { color: #c8a84b; }
.page-hero p {
  font-size: 1.05rem; max-width: 680px; margin: 0 auto;
  opacity: 0.9; line-height: 1.7;
}
.page-hero-cta {
  margin-top: 28px; display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* Article body */
.article-body {
  max-width: 820px; margin: 0 auto; padding: 70px 24px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0a3d22; font-weight: 900;
  margin: 44px 0 16px; line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.25rem; color: #1a7a4a; font-weight: 700;
  margin: 28px 0 12px;
}
.article-body p { margin-bottom: 16px; color: #333; font-size: 16px; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; color: #333; }
.article-body li { margin-bottom: 8px; line-height: 1.7; }
.article-body strong { color: #0a3d22; font-weight: 700; }
.article-body a { color: #1a7a4a; text-decoration: underline; font-weight: 500; }
.article-body a:hover { color: #c8a84b; }

/* Callout box */
.callout {
  background: #e8f5ee; border-left: 4px solid #1a7a4a;
  padding: 20px 24px; border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.callout-gold { background: #fdf6e3; border-left-color: #c8a84b; }
.callout p:last-child { margin-bottom: 0; }

/* FAQ */
.faq-section { background: #fafafa; padding: 70px 24px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid #e5e5e5; border-radius: 8px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 24px; font-weight: 600; color: #0a3d22;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-size: 15px;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 24px; color: #c8a84b;
  font-weight: 300; transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; color: #444; line-height: 1.7; font-size: 15px; }

/* Info table */
.info-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-table th {
  background: #0a3d22; color: #fff; padding: 14px 18px;
  text-align: left; font-weight: 600; font-size: 14px;
}
.info-table td {
  padding: 14px 18px; border-top: 1px solid #eee; font-size: 14px;
}
.info-table tr:hover td { background: #fafafa; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.bpc-footer { background: #071e12; color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
.bpc-footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.bpc-footer-col h4 {
  color: #c8a84b; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.bpc-footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 13px; padding: 5px 0;
  transition: color 0.2s;
}
.bpc-footer-col a:hover { color: #c8a84b; }
.bpc-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px;
}
.bpc-footer-about { font-size: 13px; line-height: 1.7; margin-bottom: 16px; max-width: 320px; }
.bpc-footer-contact { font-size: 13px; line-height: 1.9; }
.bpc-footer-contact span { color: #c8a84b; font-weight: 600; }
.bpc-footer-copy {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px; max-width: 1200px; margin: 0 auto;
}

@media(max-width:768px){
  .bpc-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-item{padding:12px 14px;font-size:13px}
  .stat h3{font-size:2.2rem}
  .stats-grid{gap:28px}
  .bsec { padding: 60px 20px; }
  .article-body { padding: 50px 20px; }
  .page-hero { padding: 50px 20px 40px; }
}
@media(max-width:500px){
  .bpc-footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   LEAD POPUP MODAL
═══════════════════════════════════════════════════════ */
.lead-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 61, 34, 0.75);
  display: none; align-items: center; justify-content: center;
  z-index: 9998; padding: 20px;
  backdrop-filter: blur(4px);
}
.lead-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lead-popup {
  background: #fff;
  width: 100%; max-width: 440px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: slideUp 0.3s ease;
  max-height: 95vh;
  overflow-y: auto;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lead-header {
  background: linear-gradient(135deg, #0a3d22, #1a7a4a);
  color: #fff;
  padding: 28px 28px 24px;
  text-align: center;
  position: relative;
}
.lead-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 900; margin-bottom: 6px;
}
.lead-header p {
  font-size: 13px; opacity: 0.85; line-height: 1.5;
}
.lead-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; width: 30px; height: 30px;
  border-radius: 50%; cursor: pointer;
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lead-close:hover { background: rgba(255,255,255,0.3); }

.lead-body { padding: 24px 28px 28px; }
.lead-field { margin-bottom: 14px; }
.lead-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: #0a3d22; margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.lead-field input,
.lead-field select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 6px;
  font-size: 14px; font-family: inherit;
  background: #fafafa; color: #1a1a1a;
  transition: all 0.2s;
}
.lead-field input:focus,
.lead-field select:focus {
  outline: none; border-color: #1a7a4a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,122,74,0.1);
}
.lead-hp { display: none !important; } /* honeypot */

.lead-submit {
  width: 100%; padding: 13px;
  background: #c8a84b; color: #0a3d22;
  border: none; border-radius: 6px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  margin-top: 6px;
  font-family: inherit;
}
.lead-submit:hover:not(:disabled) { background: #e0bc5a; transform: translateY(-1px); }
.lead-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.lead-status {
  margin-top: 12px; font-size: 13px;
  text-align: center; min-height: 18px;
}

.lead-disclaimer {
  font-size: 11px; color: #888;
  text-align: center; margin-top: 14px;
  line-height: 1.5;
}

/* Floating WhatsApp — hidden by default since site is form-only.
   To re-enable later, just add WhatsApp number to button data-lead */
.wa-float {
  display: none;
}
