  :root {
    --red: #FF3131;
    --black: #000000;
    --white: #FFFFFF;
    --grey: #F8F9FA;
    --green: #25D366;
    --dark-grey: #6c757d;
    --text: #1a1a1a;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); overflow-x: hidden; }
  h1,h2,h3,h4 { font-family: 'Lexend', sans-serif; }

  /* ===== NAV ===== */
  #navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
    height: auto; display: flex; align-items: center; justify-content: center;
    padding: 16px 40px; transition: all 0.3s ease; background: transparent;
  }
  .nav-inner {
    max-width: 1200px; width: 100%; display: flex; align-items: center;
    justify-content: space-between; background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 60px; padding: 10px 10px 10px 28px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
  }
  #navbar.scrolled .nav-inner {
    box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.98);
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo svg { height: 45px; width: auto; }
  .nav-menu { display: flex; gap: 32px; list-style: none; }
  .nav-menu a { text-decoration: none; font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); transition: color 0.2s; }
  .nav-menu a:hover { color: var(--red); }
  .nav-wa-btn {
    background: var(--green); color: white; border: none; padding: 12px 24px;
    border-radius: 50px; font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 14px;
    cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: transform 0.2s;
  }
  .nav-wa-btn:hover { transform: scale(1.05); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
  .hamburger span { display: block; width: 25px; height: 2px; background: var(--text); transition: all 0.3s; }
  .mobile-menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: white; z-index: 99999; flex-direction: column; align-items: center;
    justify-content: center; gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 22px; color: var(--text); text-decoration: none; }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-close {
    position: absolute; top: 24px; right: 28px; font-size: 28px; cursor: pointer;
    background: #f0f0f0; border: none; color: var(--text); border-radius: 50%;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    line-height: 1; font-weight: 400;
  }

  /* ===== HERO ===== */
  #hero {
    background: #0a0a0a; min-height: 100vh; display: flex; align-items: center;
    padding: 140px 40px 80px; position: relative; overflow: hidden;
  }
  .hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .hero-shape {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
    animation: hero-float 8s ease-in-out infinite;
  }
  .hero-shape-1 {
    width: 600px; height: 600px; background: var(--red);
    top: -200px; right: -100px; animation-delay: 0s;
  }
  .hero-shape-2 {
    width: 400px; height: 400px; background: #ff7043;
    bottom: -100px; right: 200px; animation-delay: -3s; opacity: 0.1;
  }
  .hero-shape-3 {
    width: 300px; height: 300px; background: #ff3131;
    top: 50%; left: 30%; animation-delay: -5s; opacity: 0.07;
  }
  @keyframes hero-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; z-index: 2;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; width: 100%; position: relative; z-index: 3; }
  .hero-content { flex: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,49,49,0.15); color: #ff6b6b;
    border: 1px solid rgba(255,49,49,0.35); border-radius: 50px;
    padding: 7px 18px; font-size: 13px; font-weight: 600; margin-bottom: 28px;
    font-family: 'Lexend', sans-serif; letter-spacing: 0.5px;
    animation: hero-fade-up 0.6s ease both;
  }
  .hero-badge::before { content: '✓'; font-weight: 700; }
  .hero-content h1 {
    font-size: 64px; font-weight: 800; line-height: 1.05; color: #ffffff;
    margin-bottom: 24px; letter-spacing: -1px;
    animation: hero-fade-up 0.6s ease 0.1s both;
  }
  .hero-content h1 span { color: var(--red); }
  .hero-content h1 em {
    font-style: normal; position: relative; display: inline-block;
  }
  .hero-content h1 em::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px;
    background: var(--red); border-radius: 2px; opacity: 0.7;
  }
  .hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 40px;
    line-height: 1.7; max-width: 500px;
    animation: hero-fade-up 0.6s ease 0.2s both;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: hero-fade-up 0.6s ease 0.3s both; }
  .btn-red {
    background: var(--red); color: white; padding: 16px 32px; border-radius: 50px;
    font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 16px; text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(255,49,49,0.4);
  }
  .btn-red:hover { background: #e52828; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,49,49,0.5); }
  .btn-green {
    background: var(--green); color: white; padding: 16px 32px; border-radius: 50px;
    font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 16px; text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.3);
  }
  .btn-green:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,0.4); }
  .hero-stats { display: flex; gap: 0; margin-top: 52px; animation: hero-fade-up 0.6s ease 0.4s both; }
  .stat { text-align: left; padding-right: 36px; margin-right: 36px; border-right: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child { border-right: none; margin-right: 0; }
  .stat-num { font-family: 'Lexend', sans-serif; font-size: 30px; font-weight: 800; color: white; line-height: 1; }
  .stat-num span { color: var(--red); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  .hero-image { flex: 1; display: flex; justify-content: flex-end; z-index: 1; animation: hero-fade-up 0.7s ease 0.15s both; }
  .hero-visual-panel {
    width: 480px; height: 520px; position: relative; flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .hero-visual-panel { width: 100%; height: 340px; }
    .hero-float-1 { left: 10px; bottom: 20px; font-size: 11px; padding: 8px 12px; }
    .muni-badge { bottom: 16px; left: 16px; padding: 8px 14px 8px 10px; }
    .muni-badge-text strong { font-size: 12px; }
    .muni-badge-text span { font-size: 9px; }
    .muni-badge-icon { width: 30px; height: 30px; font-size: 15px; }
  }
  .hero-card-main {
    position: absolute; top: 0; left: 0; right: 0; bottom: 60px;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  }
  .hero-card-main img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .hero-card-main::after {
    content: ''; position: absolute; inset: 0; border-radius: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 60%, transparent 100%);
    pointer-events: none;
  }
  .muni-badge {
    position: absolute; bottom: 24px; left: 24px; z-index: 5;
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.96); border-radius: 50px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    font-family: 'Lexend', sans-serif;
  }
  .muni-badge-icon {
    width: 36px; height: 36px; background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .muni-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
  .muni-badge-text strong { font-size: 13px; font-weight: 700; color: var(--text); }
  .muni-badge-text span { font-size: 10px; color: var(--dark-grey); font-weight: 500; letter-spacing: 0.3px; }
  .hero-float-badge {
    position: absolute; background: white; border-radius: 50px;
    padding: 10px 16px; display: flex; align-items: center; gap: 8px;
    font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); white-space: nowrap; z-index: 10;
    animation: badge-bob 4s ease-in-out infinite;
  }
  .hero-float-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  .hero-float-1 { bottom: 40px; left: -20px; animation-delay: 0s; }
  .hero-float-2 { top: 30px; right: -20px; animation-delay: -2s; background: var(--red); color: white; }
  .hero-float-2 .badge-dot { background: white; box-shadow: none; }
  @keyframes badge-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-img-placeholder { display: none; }
  .hero-bg-pattern { display: none; }

  /* ===== TRUST BAR ===== */
  #trust {
    background: var(--red); padding: 28px 40px; text-align: center;
    box-shadow: 0 4px 30px rgba(255,49,49,0.35);
  }
  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: nowrap;
  }
  .trust-item {
    display: flex; flex-direction: row; align-items: center; gap: 10px;
    padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.25);
    flex: 1; justify-content: center; min-width: 0;
  }
  .trust-item:last-of-type { border-right: none; }
  .trust-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
  .trust-label { color: white; font-size: 13px; font-weight: 700; font-family: 'Lexend', sans-serif; white-space: nowrap; }
  .trust-rating {
    display: flex; flex-direction: row; align-items: center; gap: 10px;
    padding: 8px 0 8px 24px; border-left: 1px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
  }
  .trust-rating .stars { color: #FFD700; font-size: 16px; line-height: 1; white-space: nowrap; }
  .trust-rating-text { display: flex; flex-direction: column; align-items: flex-start; }
  .trust-rating .rating-num { color: white; font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 16px; line-height: 1; white-space: nowrap; }
  .trust-rating .rating-sub { color: rgba(255,255,255,0.8); font-family: 'Lexend', sans-serif; font-size: 11px; font-weight: 600; margin-top: 2px; white-space: nowrap; }

  /* ===== SECTION COMMON ===== */
  section { padding: 100px 40px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag { color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-family: 'Lexend', sans-serif; margin-bottom: 12px; }
  .section-heading { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
  .section-sub { font-size: 17px; color: var(--dark-grey); max-width: 560px; line-height: 1.7; }
  .centered { text-align: center; }
  .centered .section-sub { margin: 0 auto; }

  /* ===== PESTS SECTION ===== */
  #pests { background: var(--white); }
  .pests-grid {
    display: grid; grid-template-columns: repeat(9, 1fr);
    gap: 16px; margin-top: 60px;
  }
  @media (max-width: 1100px) {
    .pests-grid { grid-template-columns: repeat(6, 1fr); }
  }
  .pest-card {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 18px 8px; border-radius: 16px; border: 2px solid #f0f0f0;
    cursor: pointer; transition: all 0.25s; background: white; min-width: 0;
  }
  .pest-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(255,49,49,0.12); }
  .pest-emoji { font-size: 36px; line-height: 1; }
  .pest-name { font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 12px; color: var(--text); text-align: center; }

  /* ===== OFFER ===== */
  #offer {
    background: var(--black); padding: 80px 40px;
    border-top: 2px solid var(--red); border-bottom: 2px solid var(--red);
  }
  .offer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  .offer-badge { background: var(--red); color: white; font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; display: inline-block; margin-bottom: 24px; }
  .offer-inner h2 { font-size: 38px; font-weight: 800; color: white; line-height: 1.3; margin-bottom: 12px; }
  .offer-inner h2 span { color: var(--red); }
  .offer-sub { color: #aaa; font-size: 16px; margin-bottom: 36px; }
  .offer-inner .btn-green { display: inline-flex; font-size: 18px; padding: 18px 40px; }

  /* ===== SERVICES ===== */
  #services { background: var(--grey); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
  .service-card {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.25s, box-shadow 0.25s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
  .card-img {
    height: 200px; position: relative; overflow: hidden;
    background: #1a1a1a;
  }
  .card-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
  }
  .service-card:hover .card-img img { transform: scale(1.06); }
  .card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
  }
  .card-badge {
    position: absolute; top: 14px; left: 14px;
    font-family: 'Lexend', sans-serif; font-weight: 700;
    font-size: 10px; letter-spacing: 1px; padding: 4px 12px;
    border-radius: 50px; z-index: 2;
  }
  .badge-popular { background: var(--red); color: white; }
  .badge-demand  { background: #ff8c00; color: white; }
  .badge-recommended { background: #0ea5e9; color: white; }
  .card-body { padding: 20px; }
  .card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .card-body p { font-size: 13px; color: var(--dark-grey); line-height: 1.6; margin-bottom: 18px; }
  .card-btns { display: flex; gap: 8px; }
  .card-btn-call, .card-btn-wa {
    flex: 1; text-align: center; padding: 11px 8px; border-radius: 50px;
    font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 13px; text-decoration: none;
    transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .card-btn-call { background: var(--red); color: white; }
  .card-btn-call:hover { background: var(--black); }
  .card-btn-wa { background: var(--green); color: white; }
  .card-btn-wa:hover { transform: scale(1.05); }

  /* ===== WHY ===== */
  #why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
  .why-card { text-align: center; padding: 40px 24px; border-radius: 20px; border: 2px solid #f0f0f0; transition: border-color 0.2s; }
  .why-card:hover { border-color: var(--red); }
  .why-icon { width: 72px; height: 72px; background: rgba(255,49,49,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; }
  .why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
  .why-card p { font-size: 15px; color: var(--dark-grey); line-height: 1.7; }

  /* ===== REVIEWS ===== */
  #reviews { background: var(--grey); }
  .reviews-cta-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--red); font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 14px;
    text-decoration: none; margin-top: 16px; transition: gap 0.2s;
  }
  .reviews-cta-link:hover { gap: 12px; }
  .reviews-stars { color: #F4B400; font-size: 18px; letter-spacing: 2px; }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 52px;
  }
  .review-card {
    background: white; border-radius: 20px; padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .review-header { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--red);
    color: white; font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .review-meta { flex: 1; }
  .review-name { font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); }
  .review-location { font-size: 12px; color: var(--dark-grey); margin-top: 2px; }
  .review-stars { color: #F4B400; font-size: 15px; letter-spacing: 1px; flex-shrink: 0; }
  .review-text { font-size: 14px; color: #444; line-height: 1.75; flex: 1; }
  .review-service {
    display: inline-block; background: rgba(255,49,49,0.08); color: var(--red);
    font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 11px;
    letter-spacing: 0.5px; padding: 5px 12px; border-radius: 50px;
    align-self: flex-start;
  }
  @media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* ===== AREAS ===== */
  #areas { background: var(--black); padding: 100px 40px; position: relative; overflow: hidden; }
  .areas-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
  #areas .section-heading { color: white; }
  #areas .section-tag { color: var(--red); }
  #areas .section-sub { color: #aaa; }
  .areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
  .area-chip {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 12px 16px; border-radius: 12px; font-size: 13px;
    font-family: 'Lexend', sans-serif; font-weight: 500; transition: all 0.2s;
    display: flex; align-items: center; gap: 8px;
  }
  .area-chip:hover { background: var(--red); border-color: var(--red); }
  .area-chip::before { content: '📍'; font-size: 14px; }
  .areas-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,49,49,0.06) 0%, transparent 60%);
  }

  /* ===== FAQ ===== */
  #faq { background: var(--white); }
  .faq-list { max-width: 800px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 16px; }
  .faq-item { border: 2px solid #f0f0f0; border-radius: 16px; overflow: hidden; transition: border-color 0.2s; }
  .faq-item.open { border-color: var(--red); }
  .faq-q {
    padding: 22px 24px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 16px;
    user-select: none;
  }
  .faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-toggle { background: var(--red); color: white; transform: rotate(45deg); }
  .faq-a { padding: 0 24px 0; max-height: 0; overflow: hidden; transition: all 0.3s ease; font-size: 15px; color: var(--dark-grey); line-height: 1.7; }
  .faq-item.open .faq-a { padding: 0 24px 22px; max-height: 400px; }

  /* ===== CTA ===== */
  #cta { background: var(--red); padding: 100px 40px; text-align: center; }
  #cta h2 { font-size: 48px; font-weight: 800; color: white; max-width: 700px; margin: 0 auto 16px; line-height: 1.2; }
  #cta p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 48px; }
  .cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--red); padding: 20px 44px; border-radius: 50px;
    font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 17px; text-decoration: none;
    animation: pulse 2s infinite; transition: background 0.2s;
  }
  .btn-white:hover { background: var(--black); color: white; animation: none; }
  .btn-outline-white {
    background: transparent; color: white; border: 2px solid white; padding: 20px 44px;
    border-radius: 50px; font-family: 'Lexend', sans-serif; font-weight: 700;
    font-size: 17px; text-decoration: none; animation: pulse 2s infinite 0.5s; transition: all 0.2s;
  }
  .btn-outline-white:hover { background: white; color: var(--red); animation: none; }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  }

  /* ===== FOOTER ===== */
  footer { background: var(--black); padding: 64px 40px 32px; }
  .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { color: white; font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: white; text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--red); }
  .footer-address { color: white; font-size: 14px; line-height: 1.9; }
  .footer-address strong { color: white; }
  .social-links { display: flex; gap: 12px; margin-top: 20px; }
  .social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: background 0.2s; }
  .social-link:hover { background: var(--red); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-copy { color: white; font-size: 13px; }
  .footer-approved { background: rgba(255,49,49,0.15); color: var(--red); font-family: 'Lexend', sans-serif; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 50px; }

  /* ===== FLOATING BAR ===== */
  .floating-bar {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998;
    background: white; padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    gap: 10px;
  }
  .floating-bar a { flex: 1; text-align: center; padding: 14px; border-radius: 50px; font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 14px; text-decoration: none; }
  .fb-call { background: var(--red); color: white; }
  .fb-wa { background: var(--green); color: white; }

  /* ===== SKELETON ===== */
  .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
  }
  @keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .pests-grid { grid-template-columns: repeat(6, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    #trust { padding: 0; }
    .trust-inner { flex-wrap: wrap; align-items: stretch; }
    .trust-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 14px 20px; justify-content: center; }
    .trust-rating { flex: 1 1 100%; border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding: 14px 20px; justify-content: center; }
  }
  @media (max-width: 768px) {
    #navbar { padding: 12px 16px; }
    .nav-inner { padding: 8px 8px 8px 20px; }
    .nav-menu, .nav-wa-btn { display: none; }
    .hamburger { display: flex; }
    #hero { padding: 120px 20px 60px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 36px; }
    .hero-content h1 { font-size: 36px; letter-spacing: -0.5px; }
    .hero-sub { font-size: 16px; margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-image { display: flex; width: 100%; justify-content: center; }
    .hero-visual-panel { width: 100%; max-width: 480px; height: 300px; }
    .hero-stats { justify-content: center; gap: 0; }
    .stat { padding-right: 20px; margin-right: 20px; text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    section { padding: 60px 20px; }
    .section-heading { font-size: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .card-body { text-align: center; }
    .card-btns { justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .social-links { justify-content: center; }
    .footer-col ul { align-items: center; }
    .footer-address { text-align: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
    #cta h2 { font-size: 30px; }
    .floating-bar { display: flex; }
    body { padding-bottom: 80px; }
    .trust-inner { flex-direction: column; align-items: stretch; gap: 0; }
    .trust-item { flex: none; width: 100%; padding: 12px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); justify-content: center; }
    .trust-item:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.2); }
    .trust-rating { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding: 14px 20px; width: 100%; justify-content: center; }
    .trust-label { font-size: 13px; }
    #trust { padding: 0; }
    .pests-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .pests-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
  }
