/* ==========================================================================
   ZYVORA LLC — Pest Control — Core Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* ---- Color tokens ---- */
  --navy-deep:   #0B1C29;
  --navy:        #10283C;
  --navy-soft:   #1B3A52;
  --green:       #2E7D4F;
  --green-dark:  #1E5C3A;
  --green-soft:  #E4F0E6;
  --amber:       #E8A33D;
  --amber-dark:  #C4832A;
  --bg:          #F6F8F5;
  --bg-alt:      #EDF2ED;
  --white:       #FFFFFF;
  --text:        #16232C;
  --text-muted:  #55636B;
  --border:      #DEE6E0;

  /* ---- Type ---- */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ---- Layout ---- */
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11,28,41,0.06);
  --shadow-md: 0 10px 30px rgba(11,28,41,0.10);
  --shadow-lg: 0 20px 50px rgba(11,28,41,0.16);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--navy-deep);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; color: var(--text-muted); }
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 88px 0; }
@media (max-width: 768px){ section{ padding: 56px 0; } }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight:700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background: var(--green);
  display:inline-block;
}

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ font-size: 17px; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight:700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary{
  background: transparent;
  color: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-secondary:hover{ background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.btn-amber{
  background: var(--amber);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-amber:hover{ background: var(--amber-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light{
  background: var(--white);
  color: var(--navy-deep);
}
.btn-light:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block{ width:100%; }

/* ==========================================================================
   Header
   ========================================================================== */
#site-header{ position: sticky; top:0; z-index: 999; }
.topbar{
  background: var(--navy-deep);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
  gap: 16px;
}
.topbar-item{ display:flex; align-items:center; gap:7px; }
.topbar-item svg{ width:14px; height:14px; color: var(--amber); flex-shrink:0; }
.topbar-links{ display:flex; gap:20px; }
.topbar a:hover{ color: var(--amber); }

.navbar{
  background: rgba(246,248,245,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 46px; width:auto; }

.nav-links{ display:flex; align-items:center; gap: 6px; }
.nav-links a{
  font-family: var(--font-body);
  font-weight:600;
  font-size: 15px;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ background: var(--green-soft); color: var(--green-dark); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.call-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--green);
  color:#fff;
  font-weight:700;
  font-size:15px;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.call-btn:hover{ background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.call-btn .ring{
  width:34px; height:34px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.call-btn svg{ width:16px; height:16px; }
.call-btn .call-text{ display:flex; flex-direction:column; line-height:1.15; }
.call-btn .call-text small{ font-weight:500; font-size:11px; opacity:.85; text-transform:uppercase; letter-spacing:.06em; }

.nav-toggle{
  display:none;
  width: 46px; height:46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-toggle svg{ width:22px; height:22px; color: var(--navy-deep); }

@media (max-width: 980px){
  .nav-links{
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--white);
    flex-direction:column;
    align-items:stretch;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:14px 10px; border-radius: 10px; }
  .nav-toggle{ display:flex; }
  .call-btn .call-text{ display:none; }
  .call-btn{ padding:12px; }
  .topbar-links{ display:none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 62%, var(--navy) 100%);
  color: #fff;
}
.hero-ring{
  position:absolute;
  width: 640px; height:640px;
  border-radius:50%;
  border: 1.5px solid rgba(255,255,255,.08);
  top: -220px; right: -160px;
  pointer-events:none;
}
.hero-ring::before{
  content:"";
  position:absolute; inset: 70px;
  border-radius:50%;
  border: 1.5px solid rgba(255,255,255,.08);
}
.hero-ring::after{
  content:"";
  position:absolute; inset: 140px;
  border-radius:50%;
  border: 1.5px solid rgba(232,163,61,.25);
}
.hero .container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items:center;
  padding-top: 88px;
  padding-bottom: 96px;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--amber);
  background: rgba(232,163,61,.12);
  border: 1px solid rgba(232,163,61,.35);
  padding:7px 16px; border-radius:999px;
  margin-bottom:22px;
}
.hero h1{
  color:#fff;
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 20px;
}
.hero h1 em{
  font-style:normal;
  color: var(--amber);
}
.hero p.lead{
  color: rgba(255,255,255,.78);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 40px; }
.hero-feats{
  display:grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
}
.hero-feat{ display:flex; align-items:center; gap:10px; }
.hero-feat .icn{
  width:38px; height:38px; border-radius:10px;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hero-feat .icn svg{ width:19px; height:19px; color: var(--amber); }
.hero-feat span{ font-size:13.5px; font-weight:600; color: rgba(255,255,255,.85); }

.hero-media{ position:relative; }
.hero-media .frame{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4;
}
.hero-media .frame img{ width:100%; height:100%; object-fit:cover; }
.hero-media .badge{
  position:absolute;
  left: -22px; bottom: 34px;
  background: #fff;
  color: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  max-width: 240px;
}
.hero-media .badge .dot{
  width:44px; height:44px; border-radius:50%;
  background: var(--green-soft);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hero-media .badge .dot svg{ width:22px; height:22px; color: var(--green-dark); }
.hero-media .badge strong{ display:block; font-family: var(--font-display); font-size:14px; }
.hero-media .badge span{ font-size:12px; color: var(--text-muted); }

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; padding-top:48px; }
  .hero-media{ order:-1; }
  .hero-feats{ grid-template-columns: repeat(2,auto); }
  .hero-media .badge{ left: 16px; }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color:#fff;
  padding: 70px 0 66px;
  position:relative;
  overflow:hidden;
}
.page-header .hero-ring{ top:-260px; right:-220px; }
.page-header .container{ position:relative; z-index:2; }
.page-header .eyebrow{ background: rgba(232,163,61,.12); color: var(--amber); border:1px solid rgba(232,163,61,.35); }
.page-header .eyebrow::before{ background: var(--amber); }
.page-header h1{ color:#fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-header p{ color: rgba(255,255,255,.75); max-width: 620px; font-size:16.5px; margin:0; }
.breadcrumb{ display:flex; gap:8px; font-size:13px; color: rgba(255,255,255,.55); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--amber); }

/* ==========================================================================
   Cards / Services
   ========================================================================== */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-3{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.svc-card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-icon{
  width:58px; height:58px;
  border-radius: 16px;
  background: var(--green-soft);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.svc-icon svg{ width:28px; height:28px; color: var(--green-dark); }
.svc-card h3{ font-size:19px; margin-bottom:10px; }
.svc-card p{ font-size:14.5px; margin-bottom:16px; }
.svc-card .svc-link{ font-weight:700; font-size:13.5px; color: var(--green-dark); display:inline-flex; align-items:center; gap:6px; }
.svc-card .svc-link svg{ width:14px; height:14px; transition: transform .18s ease; }
.svc-card:hover .svc-link svg{ transform: translateX(4px); }

/* Detailed service block (services.html) */
.svc-detail{
  display:grid;
  grid-template-columns: 84px 1fr;
  gap:24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child{ border-bottom:none; }
.svc-detail .svc-icon{ margin-bottom:0; }
.svc-detail h3{ font-size:21px; margin-bottom:8px; }
.svc-detail p{ font-size:15px; margin-bottom:12px; max-width: 680px;}
.svc-detail .tag-row{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:12.5px; font-weight:600;
  background: var(--bg-alt);
  color: var(--navy);
  padding: 6px 12px;
  border-radius:999px;
  border: 1px solid var(--border);
}
@media (max-width: 640px){ .svc-detail{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Process / Why us
   ========================================================================== */
.process{ counter-reset: step; }
.process-item{
  display:flex;
  gap:20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.process-item:last-child{ border-bottom:none; }
.process-num{
  font-family: var(--font-display);
  font-weight:800;
  font-size:15px;
  color: var(--green-dark);
  background: var(--green-soft);
  width:44px; height:44px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.process-item h4{ font-size:17px; margin-bottom:6px; }
.process-item p{ font-size:14.5px; margin:0; }

/* Value / feature blocks */
.feature-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.feature-card .svc-icon{ background: rgba(232,163,61,.14); }
.feature-card .svc-icon svg{ color: var(--amber-dark); }
.feature-card h3{ font-size:18px; }
.feature-card p{ font-size:14.5px; margin:0; }

/* ==========================================================================
   Split section (image + text)
   ========================================================================== */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.split.reverse .split-media{ order:2; }
@media (max-width: 980px){
  .split{ grid-template-columns:1fr; gap:36px; }
  .split.reverse .split-media{ order:-1; }
}
.split-media{ position:relative; }
.split-media img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width:100%;
  aspect-ratio: 3/2;
  object-fit:cover;
}
.split-media .ring-deco{
  position:absolute; width:180px; height:180px;
  border: 1.5px solid var(--green);
  border-radius:50%;
  opacity:.3;
  bottom:-40px; left:-40px;
  z-index:-1;
}
.check-list{ margin: 20px 0 30px; }
.check-list li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:15px; color: var(--text);
  padding: 9px 0;
}
.check-list li svg{ width:20px; height:20px; color: var(--green); flex-shrink:0; margin-top:1px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: linear-gradient(120deg, var(--navy-deep), var(--green-dark) 140%);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:"";
  position:absolute; width:320px; height:320px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.12);
  right:-100px; top:-120px;
}
.cta-band h2{ color:#fff; font-size: clamp(24px,3vw,32px); margin-bottom:8px; }
.cta-band p{ color: rgba(255,255,255,.78); margin:0; font-size:15.5px; }
.cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:2; }
@media (max-width: 820px){
  .cta-band{ flex-direction:column; align-items:flex-start; padding: 38px 28px; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  text-align:left;
}
.contact-card .svc-icon{ background: var(--green-soft); margin-bottom: 20px; }
.contact-card h3{ font-size:17px; margin-bottom:8px; }
.contact-card p{ font-size:14.5px; margin-bottom:4px; }
.contact-card a.contact-value{
  font-family: var(--font-display);
  font-weight:700;
  font-size:17px;
  color: var(--navy-deep);
  display:inline-block;
  margin-top:6px;
}
.contact-card a.contact-value:hover{ color: var(--green-dark); }

.hours-table{ width:100%; border-collapse: collapse; }
.hours-table td{ padding: 10px 0; font-size:14.5px; border-bottom:1px dashed var(--border); }
.hours-table td:last-child{ text-align:right; font-weight:600; color: var(--navy); }
.hours-table tr:last-child td{ border-bottom:none; }

.contact-banner{
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 44px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.contact-banner h3{ color:#fff; font-size:22px; margin-bottom:6px; }
.contact-banner p{ color:rgba(255,255,255,.72); margin:0; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-content{ max-width: 820px; }
.legal-content h2{ font-size:22px; margin-top:40px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ font-size:15.5px; color: var(--text-muted); }
.legal-content ul{ margin: 0 0 1em; padding-left:0; }
.legal-content li{ display:flex; gap:10px; padding: 6px 0; }
.legal-content li::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background: var(--green);
  margin-top: 9px;
  flex-shrink:0;
}
.legal-meta{
  display:flex; gap:24px; flex-wrap:wrap;
  font-size:13.5px; color: var(--text-muted);
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom:1px solid var(--border);
}
.legal-meta strong{ color: var(--navy); }
.legal-toc{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-bottom: 40px;
}
.legal-toc h4{ font-size:14px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.legal-toc ol{ margin:0; padding-left: 20px; color: var(--green-dark); }
.legal-toc li{ padding:5px 0; font-size:14.5px; color: var(--navy); }
.legal-toc a:hover{ color: var(--green-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
#site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.68); }
.footer-top{ padding: 64px 0 40px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

.footer-brand-badge{
  display:inline-flex;
  background:#fff;
  border-radius: 14px;
  padding: 10px 16px;
  margin-bottom: 18px;
}
.footer-brand-badge img{ height:40px; width:auto; }
.footer-col h4{
  color:#fff;
  font-family: var(--font-display);
  font-size:15px;
  letter-spacing:.03em;
  margin-bottom: 18px;
}
.footer-col p{ color: rgba(255,255,255,.6); font-size:14px; }
.footer-col ul li{ padding: 6px 0; }
.footer-col ul li a{ color: rgba(255,255,255,.68); font-size:14.5px; transition: color .15s ease, padding-left .15s ease; }
.footer-col ul li a:hover{ color: var(--amber); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; padding:7px 0; color: rgba(255,255,255,.68); }
.footer-contact svg{ width:17px; height:17px; color: var(--amber); flex-shrink:0; margin-top:3px; }
.footer-payments{ margin-top:20px; }
.pay-label{
  display:block;
  font-size:12px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom:10px;
}
.pay-badges{ display:flex; gap:8px; flex-wrap:wrap; }
.pay-badge{ width:44px; height:auto; border-radius:5px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  font-size: 13.5px;
}
.footer-bottom .container{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; flex-wrap:wrap;
}
.footer-bottom-links{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-bottom-links a:hover{ color: var(--amber); }

/* ==========================================================================
   Misc / utility
   ========================================================================== */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.full-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-md);
}
.full-media img{ width:100%; }

.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

.badge-strip{
  display:flex; flex-wrap:wrap; gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
}
.badge-strip span{
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; color:var(--navy);
  padding: 6px 14px;
}
.badge-strip svg{ width:16px; height:16px; color: var(--green); }
.badge-strip .sep{ width:1px; background: var(--border); }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior:auto; }
}
