/* ============================================================
   TECHNO STAR PEST CONTROL — style.css
   Brand: Navy #1a3a8a | Orange #f07800 | White #fff
   Fonts: Bebas Neue (headings) | DM Sans (body)
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --navy:    #1a3a8a;
  --navy2:   #0b1f3a;
  --navy3:   #0e2444;
  --orange:  #f07800;
  --orange2: #ff9022;
  --cream:   #f4f6fb;
  --lightbg: #eef3ff;
  --white:   #ffffff;
  --text:    #0b1f3a;
  --muted:   #4a5a7a;
  --border:  #cdd8ee;
  --green:   #22c55e;
  --shadow:  0 12px 40px rgba(11,31,58,0.1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
}
.h2-white { color: #fff; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.section-label-navy { color: var(--navy); }
.intro-p { font-size: 0.975rem; color: var(--muted); max-width: 550px; line-height: 1.8; margin-bottom: 3rem; }
.intro-p-w { color: rgba(255,255,255,0.5); }

/* ── BUTTONS ── */
.btn-orange {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange); color: #fff;
  padding: 0.875rem 2.25rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(240,120,0,0.35);
}
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,120,0,0.45); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.85);
  padding: 0.875rem 2.25rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
  background: #fff; color: var(--navy);
  padding: 0.9rem 2.3rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── SECTION PADDING ── */
.section { padding: 6rem 6%; }
.section-dark { background: var(--navy2); }
.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-lightbg { background: var(--lightbg); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.889);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 70px;
  border-bottom: 1px solid rgba(240,120,0,0.18);
  transition: transform 0.3s ease;
}
.nav-logo { display: flex; align-items: center;margin-top: 10px;}
.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  /* logo has black bg — make it visible on dark nav */
  background: transparent;
  /* border-radius: 6px;
  padding: 2px 6px; */
  /* background: rgba(255,255,255,0.08); */
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(17, 17, 17, 0.858); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 7px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange2) !important; transform: translateY(-1px) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  background: var(--navy2);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 75% 45%, rgba(26,58,138,0.6) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 75%, rgba(240,120,0,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.028;
  background-image:
    linear-gradient(rgba(240,120,0,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,120,0,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,120,0,0.12);
  border: 1px solid rgba(240,120,0,0.3);
  color: var(--orange);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1.0; color: #fff; margin-bottom: 1.5rem; letter-spacing: 1px;
}
.hero-h1 .accent { color: var(--orange); display: block; }
.hero-p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 500px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── ROTATING RING ── */
.hero-ring-wrap {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 440px; height: 440px;
}
.ring-spinner {
  width: 440px; height: 440px;
  position: absolute; top: 0; left: 0;
  animation: spinCW 32s linear infinite;
}
.ring-spinner::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(240,120,0,0.38);
}
.ring-spinner::after {
  content: ''; position: absolute; inset: 44px; border-radius: 50%;
  border: 1px dashed rgba(240,120,0,0.18);
}
.ring-bug {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(11,31,58,0.9);
  border: 1.5px solid rgba(240,120,0,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  animation: spinCCW 32s linear infinite;
  transition: background 0.25s, border-color 0.25s; cursor: default;
}
.ring-bug:hover { background: var(--orange); border-color: var(--orange); }
.ring-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,138,0.55) 0%, transparent 70%);
  pointer-events: none;
}
.ring-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 10; width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 10px rgba(240,120,0,0.08), 0 0 50px rgba(240,120,0,0.22);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.ring-center .shield-ico { font-size: 3rem; line-height: 1; }
.ring-center .shield-lbl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.68rem; letter-spacing: 2.5px; color: var(--orange); text-align: center; line-height: 1.3;
}
@keyframes spinCW  { to { transform: rotate(360deg);  } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
@keyframes riseIn  { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════
   STATS / COUNTERS STRIP
══════════════════════════════════════ */
#stats {
  background: var(--navy);
  padding: 3.5rem 6%;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(240,120,0,0.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem; color: var(--orange);
  line-height: 1; letter-spacing: 1px; display: block;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.35rem; letter-spacing: 0.5px; }



.space{
  height: 5px;
}


/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar { background: var(--navy); padding: 12px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(240,120,0,0.2); border-bottom: 1px solid rgba(240,120,0,0.2); }
.ticker-inner {
  display: inline-block;
  animation: tickMove 35s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.ticker-inner span { margin: 0 2.5rem; }
.ticker-inner span::before { content: '✦ '; color: var(--orange); opacity: 0.8; }
@keyframes tickMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   PEST SERVICES
══════════════════════════════════════ */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}
.pest-card {
  display: block; text-decoration: none; color: inherit;
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 1.75rem 1.25rem 1.5rem; text-align: center;
  background: var(--white); cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pest-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: 0 14px 36px rgba(26,58,138,0.13); }
.pest-card:hover .p-ico { background: var(--orange); }
.p-ico {
  width: 54px; height: 54px; border-radius: 13px;
  background: var(--lightbg); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; transition: background 0.25s;
}
.pest-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.4; }

/* ══════════════════════════════════════
   CLIENTS
══════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 1.3rem;
}
.client-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.8rem 1.65rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.client-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.cc-ico {
  width: 50px; height: 50px; border-radius: 11px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.client-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.client-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.cc-pill {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--navy); background: var(--lightbg); padding: 4px 10px; border-radius: 50px;
}

/* ══════════════════════════════════════
   TRUSTED CLIENTS
══════════════════════════════════════ */
.clients-section{
padding:70px 6%;
background:#fff;
text-align:center;
}

.clients-title{
font-size:28px;
margin-bottom:40px;
color:#0b1f3a;
}

.logo-slider{
overflow:hidden;
width:100%;
mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track{
display:flex;
align-items:center;
gap:60px;
animation:scroll 40s linear infinite;
width:max-content;
}

.logo-track img{
height:110px;
width:150px;
object-fit:contain;
}

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,120,0,0.12); border-radius: 12px;
  transition: background 0.25s, border-color 0.25s;
}
.why-item:hover { background: rgba(240,120,0,0.07); border-color: rgba(240,120,0,0.32); }
.wi-chk {
  width: 33px; height: 33px; border-radius: 8px;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; flex-shrink: 0;
}
.why-item h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.65; }
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wstat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,120,0,0.14); border-radius: 14px;
  padding: 1.75rem 1.5rem; transition: border-color 0.25s, background 0.25s;
}
.wstat:hover { background: rgba(240,120,0,0.07); border-color: rgba(240,120,0,0.32); }
.wstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--orange); line-height: 1; letter-spacing: 1px;
}
.wstat-l { font-size: 0.8rem; color: rgba(255,255,255,0.38); margin-top: 0.4rem; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-top: 3rem;
}
.process-row::before {
  content: ''; position: absolute;
  top: 33px; left: calc(10% + 24px); right: calc(10% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 18px);
}
.proc-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.proc-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--orange);
  color: var(--navy); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 1px;
  transition: background 0.25s, color 0.25s;
}
.proc-step:hover .proc-num { background: var(--orange); color: #fff; }
.proc-step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.5px; margin-bottom: 0.45rem; color: var(--text); }
.proc-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; margin-top: 3rem; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 2rem; position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.t-stars { color: var(--orange); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card blockquote { font-size: 0.9rem; color: #4a5568; line-height: 1.8; font-style: italic; }
.t-person { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.5rem; }
.t-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800;
}
.t-nm { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.t-role { font-size: 0.73rem; color: var(--muted); margin-top: 1px; }
.t-qmark { position: absolute; top: 1.1rem; right: 1.5rem; font-size: 3.5rem; color: var(--lightbg); font-family: Georgia, serif; line-height: 1; user-select: none; }

/* ══════════════════════════════════════
   LOCATIONS WE SERVED
══════════════════════════════════════ */
.locations-section{
padding:70px 6%;
background:#f6f8fb;
}

.locations-title{
font-size:2rem;
font-weight:700;
color:#0b1f3a;
text-align:center;
margin-bottom:10px;
}

.locations-subtitle{
text-align:center;
color:#666;
margin-bottom:40px;
}

.locations-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:15px;
}

.location-card{
background:white;
padding:14px 18px;
border-radius:8px;
text-align:center;
font-weight:600;
color:#0b1f3a;
border:1px solid #e3e6ed;
transition:0.3s;
}

.location-card:hover{
background:#0b1f3a;
color:white;
transform:translateY(-4px);
}

/* ══════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════ */
#contact { background: var(--navy2); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: 1px; color: var(--orange); margin-bottom: 1.2rem;
}
.contact-info p { font-size: 0.92rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 2rem; }
.cinfo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.cinfo-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(240,120,0,0.12); border: 1px solid rgba(240,120,0,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.cinfo-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.cinfo-text strong { color: #fff; display: block; font-size: 0.82rem; margin-bottom: 1px; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.7rem; color: var(--orange); }

/* Form card */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,120,0,0.18);
  border-radius: 18px;
  padding: 2.5rem 2.25rem;
  backdrop-filter: blur(12px);
}
.form-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px; color: #fff; margin-bottom: 0.4rem;
}
.form-card p { font-size: 0.82rem; color: rgba(255,255,255,0.38); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: #fff; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group select option { background: var(--navy2); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange); background: rgba(240,120,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 0.9rem 2rem; border-radius: 8px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 1rem; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(240,120,0,0.4);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,120,0,0.5); }

/* ══════════════════════════════════════
   LOCATION
══════════════════════════════════════ */
.loc-layout { display: grid; grid-template-columns: 1fr 1.65fr; gap: 3.5rem; align-items: start; margin-top: 3rem; }
.loc-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; margin-bottom: 2rem; }
.loc-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.loc-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--lightbg); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.loc-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.loc-val { font-size: 0.925rem; font-weight: 600; line-height: 1.5; }
.loc-div { height: 1px; background: var(--border); margin: 1.5rem 0; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: #fff;
  padding: 0.8rem 1.75rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { background: #1dba5a; transform: translateY(-2px); }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow); height: 430px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
#cta {
  background: var(--navy);
  text-align: center; padding: 6rem 6%; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 75% at 50% 50%, rgba(240,120,0,0.14) 0%, transparent 65%);
}
#cta h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 0.85rem; }
#cta p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; position: relative; z-index: 1; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.phone-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s;
}
.phone-badge:hover { background: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--navy3); padding: 4.5rem 6% 3rem; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3.5rem; }
.f-logo { margin-bottom: 1.2rem; }
.f-logo img {
  height: 110px; width: auto; object-fit: contain;
  background: rgba(255, 255, 255, 0.648); 
  border-radius: 6px; padding: 3px 8px;
}
.brand-p { font-size: 0.83rem; color: rgba(255,255,255,0.3); line-height: 1.8; max-width: 250px; }
.f-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.f-col ul a { color: rgba(255,255,255,0.38); font-size: 0.84rem; transition: color 0.2s; }
.f-col ul a:hover { color: var(--orange); }
.footer-bar {
  background: var(--navy2); padding: 1.1rem 6%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.22);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bar a { color: var(--orange); }

/* ══════════════════════════════════════
   CHATBOT
══════════════════════════════════════ */
#chatBtn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; font-size: 1.6rem;
  box-shadow: 0 6px 28px rgba(240,120,0,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: chatPop 0.5s 1.5s ease both;
}
@keyframes chatPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
#chatBtn:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(240,120,0,0.6); }
.chat-notif {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

#chatBox {
  position: fixed; bottom: 102px; right: 28px; z-index: 8999;
  width: 350px; height: 500px;
  background: var(--navy2);
  border: 1px solid rgba(240,120,0,0.22);
  border-radius: 18px;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: scale(0.9) translateY(20px);
  opacity: 0; pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: bottom right;
  overflow: hidden;
}
#chatBox.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.chat-header {
  background: linear-gradient(135deg, var(--navy), #1a3a8a);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(240,120,0,0.2);
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.chat-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.chat-status { font-size: 0.7rem; color: #4ade80; display: flex; align-items: center; gap: 4px; }
.chat-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chat-close-btn {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.2rem; cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.chat-close-btn:hover { color: #fff; }

#chatBody {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  scrollbar-width: thin; scrollbar-color: rgba(240,120,0,0.3) transparent;
}
#chatBody::-webkit-scrollbar { width: 4px; }
#chatBody::-webkit-scrollbar-thumb { background: rgba(240,120,0,0.3); border-radius: 2px; }

.cmsg { display: flex; }
.cmsg.bot { justify-content: flex-start; }
.cmsg.user { justify-content: flex-end; }
.cbubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.84rem; line-height: 1.6;
}
.cmsg.bot .cbubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-radius: 4px 12px 12px 12px;
}
.cmsg.user .cbubble {
  background: var(--orange);
  color: #fff;
  border-radius: 12px 4px 12px 12px;
}

.cquick { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 0 0.25rem; }
.cqbtn {
  background: rgba(240,120,0,0.12);
  border: 1px solid rgba(240,120,0,0.35);
  color: var(--orange); font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: 50px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cqbtn:hover { background: var(--orange); color: #fff; }

.chat-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 0.5rem; align-items: center;
}
#chatUserInput {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.6rem 0.9rem;
  color: #fff; font-size: 0.85rem; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
}
#chatUserInput::placeholder { color: rgba(255,255,255,0.3); }
#chatUserInput:focus { border-color: var(--orange); }
#chatSend {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
#chatSend:hover { background: var(--orange2); transform: scale(1.08); }

/* WhatsApp bar inside chatbot */
.chat-whatsapp-bar {
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(37,211,102,0.08);
}
.chat-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.chat-wa-btn:hover {
  background: #1dba5a;
  transform: translateY(-1px);
}
/* ══════════════════════════════════════
   ABOUT US
══════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

/* LEFT SIDE */
.about-visual {
  position: relative;
}

.about-img-card {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b1f3a, #1a3a8a);
  padding: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

/* IMAGE */
.about-img-inner {
  position: relative;
}

.about-img-photo {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 18px;
}

.about-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s;
}

/* Hover effect */
.about-img-photo img:hover {
  transform: scale(1.05);
}

/* Glow blob */
.about-img-blob {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,0,0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* BADGE */
.about-badge-founded {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f07800;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-align: center;
}

.abf-year {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

.abf-label {
  font-size: 0.7rem;
  color: #fff;
}

/* CERTIFICATIONS */
.about-cert-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.about-cert {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
}

/* RIGHT SIDE */
.about-lead {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-body {
  font-size: 0.9rem;
  color: #666;
}

/* PILLARS */
.about-pillars {
  margin-top: 20px;
}

.about-pillar {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
}

.ap-icon {
  background: #0b1f3a;
  color: white;
  padding: 10px;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width: 1024px){
  .about-layout{
    grid-template-columns:1fr;
  }

  .about-img-photo{
    height:350px;
  }
}

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.show { display: block; }

/* ══════════════════════════════════════
   RESPONSIVE — LAPTOP (max 1280px)
══════════════════════════════════════ */
@media (max-width: 1280px) {
  .hero-ring-wrap { right: 2%; }
  .section { padding: 5rem 5%; }
  #stats { padding: 3rem 5%; }
  footer { padding: 4rem 5% 2.5rem; gap: 2.5rem; }
  nav { padding: 0 5%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hide ring on tablet */
  .hero-ring-wrap { display: none; }

  /* Hero full width */
  #hero { padding: 7rem 5% 4rem; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .hero-p { max-width: 100%; }

  /* Stats 2x2 grid */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Pest grid 3 cols */
  .pest-grid { grid-template-columns: repeat(3, 1fr); }

  /* Clients grid 2 cols */
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us stack */
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-stat-grid { grid-template-columns: repeat(4, 1fr); }

  /* Process 3+2 */
  .process-row { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-row::before { display: none; }

  /* Testimonials 2 cols */
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact stack */
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  /* Location stack */
  .loc-layout { grid-template-columns: 1fr; }
  .map-wrap { height: 320px; }

  /* Footer 2x2 */
  footer { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  footer > div:first-child { grid-column: 1 / -1; }

  /* Section padding */
  .section { padding: 4.5rem 5%; }
  #stats { padding: 2.5rem 5%; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV HAMBURGER ── */
  nav { padding: 0 4%; height: 62px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: min(300px, 80vw);
    background: var(--navy2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    border-left: 1px solid rgba(240,120,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: rgba(240,120,0,0.1); color: var(--orange); }
  .nav-cta {
    margin-top: 1rem !important;
    background: var(--orange) !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 8px !important;
    border-bottom: none !important;
  }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06); border: none;
    border-radius: 8px; cursor: pointer; padding: 8px; gap: 4px;
    z-index: 1000;
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ── HERO ── */
  #hero { padding: 6rem 4% 3.5rem; text-align: center; }
  .hero-eyebrow { font-size: 0.65rem; padding: 5px 12px; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-p { font-size: 0.9rem; margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-ctas a { width: 100%; max-width: 320px; justify-content: center; text-align: center; }

  /* ── STATS ── */
  #stats { padding: 2rem 4%; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 1.5rem 0.75rem; }
  .stat-icon { font-size: 1.5rem; }
  .counter-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.72rem; }

  /* ── SECTION ── */
  .section { padding: 3.5rem 4%; }
  h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .intro-p { font-size: 0.9rem; margin-bottom: 2rem; }

  /* ── TICKER ── */
  .ticker-inner { font-size: 0.8rem; }

  /* ── PEST GRID ── */
  .pest-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pest-card { padding: 1.25rem 0.75rem 1rem; }
  .p-ico { width: 44px; height: 44px; font-size: 1.35rem; }
  .pest-card h3 { font-size: 0.78rem; }

  /* ── CLIENTS ── */
  .clients-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── WHY US ── */
  .why-stat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-items { gap: 0.75rem; }
  .why-item { padding: 1rem 1.1rem; }
  .wstat { padding: 1.25rem 1rem; }
  .wstat-n { font-size: 2.4rem; }

  /* ── PROCESS ── */
  .process-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .proc-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .proc-num { width: 54px; height: 54px; font-size: 1.1rem; flex-shrink: 0; margin: 0; }

  /* ── TESTIMONIALS ── */
  .testi-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── CONTACT FORM ── */
  .form-card { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cinfo-row { gap: 0.75rem; }

  /* ── LOCATION ── */
  .loc-layout { gap: 2rem; }
  .map-wrap { height: 260px; }
  .loc-info h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }

  /* ── CTA ── */
  #cta { padding: 4rem 4%; }
  .cta-row { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-row a { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

  /* ── FOOTER ── */
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 4% 2rem; }
  footer > div:first-child { grid-column: 1; }
  .footer-bar { flex-direction: column; text-align: center; padding: 1rem 4%; gap: 0.4rem; }

  /* ── CHATBOT ── */
  #chatBox { width: calc(100vw - 24px); right: 12px; bottom: 86px; height: 460px; }
  #chatBtn { right: 16px; bottom: 16px; width: 54px; height: 54px; font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 420px)
══════════════════════════════════════ */
@media (max-width: 420px) {
  nav { padding: 0 3.5%; }
  .section { padding: 3rem 3.5%; }
  #hero { padding: 5.5rem 3.5% 3rem; }
  #stats { padding: 1.5rem 3.5%; }
  .pest-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .counter-num { font-size: 2rem; }
  footer { padding: 2.5rem 3.5% 1.5rem; }
  .hero-h1 { font-size: 2.2rem; }
  .why-stat-grid { grid-template-columns: 1fr; }
  #chatBox { width: calc(100vw - 16px); right: 8px; }
}
