@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap');

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

:root {
  --navy: #0a0e2a;
  --navy-mid: #111840;
  --navy-light: #1a2455;
  --red: #e02020;
  --red-bright: #ff2d2d;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --gray: #888;
  --light-gray: #e8e8e8;
  --accent: #ffcc00;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,42,0.97);
  border-bottom: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--off-white);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 0.55rem 1.4rem; border: none; border-radius: 2px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-bright); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--white); margin: 5px 0; transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(10,14,42,0.97) 50%, rgba(224,32,32,0.15) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px,
    rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero-badge {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 3px;
  padding: 0.4rem 1.2rem; margin-bottom: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92; letter-spacing: 2px; margin-bottom: 0.3rem;
}
.hero h1 .line-red { color: var(--red); display: block; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 1.5rem;
}
.hero p {
  max-width: 500px; font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,0.75); margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 1rem 2.4rem; border: none; border-radius: 2px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 1rem 2.4rem; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 2px; font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); color: var(--white); }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 3rem;
}
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--red); padding: 1rem 5%;
  display: flex; gap: 3rem; align-items: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.trust-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: #ffffff;
  stroke: #ffffff;
}

/* ---- SECTIONS ---- */
section { padding: 100px 5%; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1; letter-spacing: 1px; margin-bottom: 1.5rem;
}
.section-title span { color: var(--red); }

/* ---- SERVICES ---- */
.services { background: var(--navy-mid); }
.services-intro {
  max-width: 550px; font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,0.65); margin-bottom: 4rem;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }
.service-card {
  background: var(--navy); padding: 2.5rem;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s; cursor: default;
}
.service-card:hover { border-color: var(--red); background: var(--navy-light); }

/* UPDATED: replaces the old single-line font-size rule */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
}
.service-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.6); }

/* ---- PESTS ---- */
.pests { background: var(--navy-mid); }
.pests-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; margin-top: 3rem; }
.pest-tile { background: var(--navy); padding: 2rem 1rem; text-align: center; transition: background 0.2s; }
.pest-tile:hover { background: var(--navy-light); }
.pest-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
.pest-tile span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ---- PROCESS ---- */
.process { background: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 4rem; }
.process-step { padding: 0 2rem; text-align: center; }
.step-circle {
  width: 80px; height: 80px; border: 2px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; background: var(--navy);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--red);
}
.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ---- WHY US ---- */
.why-us { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--red); line-height: 1; min-width: 50px; opacity: 0.5; }
.why-feature h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.4rem; }
.why-feature p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.why-visual { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.cert-item { display: flex; align-items: center; gap: 1.2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cert-item:last-child { border-bottom: none; padding-bottom: 0; }
.cert-badge { width: 56px; height: 56px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.cert-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.2rem; }
.cert-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--red); padding: 80px 5%; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title span { color: var(--navy); }
.testimonials .section-label { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: rgba(0,0,0,0.2); padding: 2rem; border-radius: 2px; }
.testimonial-stars { font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.95rem; }

/* ---- CONTACT ---- */
.contact { background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--red); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail p { font-size: 1.1rem; font-weight: 500; color: var(--white); text-decoration: none; }
.contact-detail a:hover { color: var(--red); }

/* Contact Form */
.contact-form { background: var(--navy); padding: 2.5rem; border: 1px solid rgba(255,255,255,0.08); }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 1px; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.85rem 1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  border-radius: 2px; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wpcf7-submit {
  width: 100%; background: var(--red); color: var(--white);
  padding: 1rem 2.4rem; border: none; border-radius: 2px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.wpcf7-submit:hover { background: var(--red-bright); }

/* ---- FOOTER ---- */
footer.site-footer { background: #05071a; padding: 60px 5% 30px; border-top: 2px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,255); margin: 1rem 0; max-width: 320px; }
.footer-reg { font-size: 0.78rem; color: rgb(180, 180, 180); font-style: italic; }
footer h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
footer ul li a { text-decoration: none; color: rgba(255,255,255,255); font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,255); }

/* ---- FLOATING CTA ---- */
.float-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 0.7rem; background: var(--red); color: var(--white); padding: 0.8rem 1.4rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; box-shadow: 0 4px 20px rgba(224,32,32,0.5); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(224,32,32,0.6); color: var(--white); }
.float-btn.green { background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.float-btn.green:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { animation: fadeUp 0.5s ease forwards; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero p { animation: fadeUp 0.6s 0.3s ease both; }
.hero-btns { animation: fadeUp 0.6s 0.4s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav.site-nav { padding: 0 1rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.2rem; border-bottom: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 5% 60px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* WordPress admin bar fix */
.admin-bar nav.site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav.site-nav { top: 46px; } }

/* ---- HERO GALLERY ---- */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-gallery {
  flex: 1;
  height: 70vh;
  max-height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  border-radius: 4px;
}

.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: galleryScroll 28s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(224, 32, 32, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1);
  transition: filter 0.3s;
}

.gallery-item img:hover {
  filter: brightness(1) saturate(1.2);
}

@keyframes galleryScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; }
  .hero-content { flex: 1; max-width: 100%; }
  .hero-gallery { display: none; }
}