

:root{  
      --bg:#eef3f7;  
      --surface:#ffffff;  
      --card:#f7fbff;  
      --text:#132034;  
      --muted:#50637a;  
      --brand:#0066d6;  
      --brand2:#00a7c9;  
      --border:rgba(17,35,57,.12);  
      --shadow: 0 18px 42px rgba(9,32,60,.14);  
      --radius:18px;  
      --max:1480px;  
    }  
  
    *{box-sizing:border-box}  
    *, *::before, *::after{font-family:"Manrope", "Segoe UI", Arial, sans-serif}  
    html{scroll-behavior:smooth}  
    body{  
      margin:0;  
      font-family: "Manrope", "Segoe UI", Arial, sans-serif;  
      background:
        radial-gradient(900px 540px at -10% 0%, rgba(0,102,214,.10), transparent 62%),
        radial-gradient(780px 500px at 110% 10%, rgba(0,167,201,.10), transparent 60%),
        linear-gradient(180deg, #f7fbff 0%, #eef3f7 48%, #e7edf4 100%);
      color:var(--text);  
    }  
    a{color:inherit;text-decoration:none}  
    img{max-width:100%;height:auto;display:block}  
    .container{max-width:var(--max); margin:auto; padding:0 18px}  
  
    /* TOPBAR */
    .topbar{  
      position:sticky; top:0; z-index:1000;
      background: rgba(255,255,255,.86);  
      backdrop-filter: blur(10px);  
      border-bottom:1px solid var(--border);  
    }  
    .topbar-inner{  
      display:flex; align-items:center; justify-content:space-between;  
      padding:12px 0;  
      gap:16px;  
    }  
    .topbar-actions{
      display:flex; align-items:center; gap:10px;
    }  
    .brand{  
      display:flex; align-items:center; gap:12px;  
      min-width: 165px;  
    }  
    .logo{  
      height:50px; width:auto;     
    }  
    .brand-name{  
      display:flex; flex-direction:column; line-height:1.1;  
      font-weight:800;  
      letter-spacing:.2px;  
    }  
    .brand-name small{  
      font-weight:600;  
      color:var(--muted);  
      letter-spacing:.25px;  
      margin-top:3px;  
    }  
  
    .nav{  
      display:flex; align-items:center; gap:14px;  
    }  
    .nav a{  
      color:#2c4057;  
      font-weight:650;  
      font-size:14px;  
      padding:10px 10px;  
      border-radius:12px;  
      transition:.2s ease;  
      display:inline-flex;  
      align-items:center;  
      gap:6px;  
    }  
    .nav a img{  
      width:15px;  
      height:15px;  
      display:inline-block;  
      object-fit:contain;  
      filter: brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(646%) hue-rotate(171deg) brightness(92%) contrast(89%);  
    }  
    .nav a:hover img{  
      filter: brightness(0) saturate(100%) invert(23%) sepia(84%) saturate(2318%) hue-rotate(197deg) brightness(88%) contrast(103%);  
    }  
    .nav a:hover{  
      color:#0f2c49;  
      background: rgba(0,102,214,.08);  
    }  
  
    .btn{  
      display:inline-flex; align-items:center; justify-content:center;  
      gap:10px;  
      padding:12px 14px;  
      border-radius:14px;  
      border:1px solid var(--border);  
      font-weight:750;  
      letter-spacing:.2px;  
      transition:.2s ease;  
      cursor:pointer;  
      user-select:none;  
      white-space:nowrap;  
    }  
    .btn-primary{  
      background: linear-gradient(135deg, var(--brand), var(--brand2));  
      color:#ffffff;  
      border:0;  
      box-shadow: 0 14px 34px rgba(0,102,214,.24);  
    }  
    .btn-primary:hover{ transform: translateY(-1px) }  
    .btn-ghost{  
      background: #ffffff;  
      color: var(--text);  
      border-color: rgba(17,35,57,.16);  
    }  
    .btn-ghost:hover{ background: #f7fbff; transform: translateY(-1px) }  
    .btn-hire-us{
      background: #ffffff;
      color: var(--text);
      border-color: rgba(17,35,57,.16);
      box-shadow: 0 14px 30px rgba(9,32,60,.08);
    }
    .btn-hire-us:hover{
      background: #f7fbff;
      transform: translateY(-1px);
    }
  
    .hamburger{  
      display:none;  
      width:44px; height:44px;  
      border-radius:14px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.04);  
      color:var(--text);  
      font-size:18px;  
      align-items:center; justify-content:center;  
    }  
  
    /* HERO */  
    .hero{  
      padding:52px 0 26px;  
    }  
    .hero-grid{    
      align-items:stretch;  
    }  
    .hero-card{
      background: rgba(255,255,255,.34);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:26px;
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.55);
    }
    /* Smaller header appointment button */
    header.topbar .btn{ padding:12px 8px; font-size:12px; gap:8px; border-radius:10px }

    /* rotating background inside hero card */
    .hero-card .hero-bg{
      position:absolute; inset:0; z-index:0; overflow:hidden; border-radius:inherit;
    }
    .hero-card .hero-bg img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      opacity:0;
      transition:opacity .6s ease;
      z-index:0;
    }
    .hero-card .hero-bg img.active{
      opacity:1;
    }
    .hero-card .hero-bg::after{
      content:""; position:absolute; inset:0; background:linear-gradient(rgba(9,24,40,.44), rgba(9,24,40,.38)); z-index:1; pointer-events:none; border-radius:inherit;
    }
    /* ensure hero card content sits above the background */
    .hero-card > *{ position:relative; z-index:2 }
    .pill{  
      display:inline-flex;  
      padding:8px 12px;  
      border-radius:999px;  
      border:1px solid rgba(0,102,214,.22);  
      background: rgba(255,255,255,.78);  
      color: #15436f;  
      font-weight:700;  
      font-size:13px;  
      margin-bottom:14px;  
    }  
    h1{  
      margin:0 0 12px;  
      font-size:42px;  
      letter-spacing:-.6px;  
      line-height:1.1;  
    }  
    .lead{  
      margin:0 0 18px;  
      color:var(--muted);  
      font-size:15.5px;  
      line-height:1.65;  
    }
.hero-card h1,
    .hero-card .lead,
    .hero-card .pill{
      text-shadow: 0 5px 20px rgba(0,0,0,.35);
      color:#f6fbff;
    }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:8px }  
    .hero-actions-mt{ margin-top:16px; }
    .hero-bg-img{
      width:100%; height:100%; object-fit:cover; display:block;
    }  
/* SECTION */  
    section{ padding:46px 0 }  
    #services,
    #process,
    #contact{
      background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.12));
      border-top:1px solid rgba(255,255,255,.5);
      border-bottom:1px solid rgba(17,35,57,.08);
    }
    .section-head{  
      display:flex;  
      justify-content:space-between;  
      align-items:flex-end;  
      gap:16px;  
      margin-bottom:18px;  
    }  
    .section-title h2{  
      margin:0;  
      font-size:28px;  
      letter-spacing:-.3px;  
    }  
    .section-title p{  
      margin:8px 0 0;  
      color:var(--muted);  
      line-height:1.6;  
      max-width:720px;  
      font-size:14.8px;  
    }  
  
    /* SERVICES SHOWCASE */
.services-showcase{
  padding:80px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,102,214,.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.services-showcase .section-head{
  text-align:center;
  margin-bottom:36px;
}

.services-showcase .pill{
  display:inline-flex;
  align-items:center;
  padding:10px 22px;
  border-radius:999px;
  background:#eef5ff;
  border:1px solid #cfe0ff;
  color:#0b4fc4;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
  margin-bottom:14px;
}

.services-showcase h2{
  max-width:900px;
  margin:0 auto 12px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.05;
  color:#061733;
  font-weight:900;
}

.services-showcase .section-title p{
  color:#4b5d78;
  font-size:17px;
}

.services-showcase .service-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:34px;
}

.service-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #dce8f7;
  box-shadow:0 18px 45px rgba(15,35,70,.12);
  transition:.3s ease;
  display:flex;
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(15,35,70,.18);
}

.service-media{
  height:230px;
  position:relative;
  overflow:hidden;
}

.service-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.05));
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:9px;
  background:linear-gradient(135deg, #0b3bbd, #158ee8);
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:0 12px 22px rgba(9,32,60,.25);
}

.service-badge img{
  width:17px;
  height:17px;
  filter:brightness(0) invert(1);
}

.service-media.service-slider{
  position:relative;
  overflow:hidden;
  background:#dce8f6;
}

.service-media.service-slider::after{
  z-index:2;
}

.service-media.service-slider > .service-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .75s ease, transform 3.6s ease;
  z-index:0;
}

.service-media.service-slider > .service-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

.service-media.service-slider .service-badge{
  z-index:3;
}

.service-slider-dots{
  position:absolute;
  right:18px;
  bottom:16px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  border-radius:999px;
  background:rgba(5, 18, 39, .42);
  border:1px solid rgba(255, 255, 255, .28);
  backdrop-filter:blur(8px);
  pointer-events:none;
}

.service-slider-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255, 255, 255, .62);
  box-shadow:0 0 0 1px rgba(255, 255, 255, .25);
  transition:width .25s ease, background .25s ease;
}

.service-slider-dot.active{
  width:20px;
  border-radius:999px;
  background:#fff;
}

.service-content{
  padding:0 26px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  flex:1;
}

.service-title{
  display:block;
}

.service-icon{
  width:76px;
  height:76px;
  margin:-38px auto 14px;
  position:relative;
  z-index:3;
  background:linear-gradient(135deg, #0634b8, #149ce7);
  border:1px solid rgba(255,255,255,.78);
  border-radius:50%;
  box-shadow:0 14px 30px rgba(10,65,170,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  filter:none;
}

.service-icon img{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
  filter:brightness(0) invert(1);
  opacity:1;
}

.service-title h3{
  font-size:22px;
  color:#061733;
  margin:0;
  font-weight:900;
}

.service-title h3::after{
  content:"";
  width:54px;
  height:3px;
  background:#125ee8;
  display:block;
  margin:12px auto 0;
  border-radius:20px;
}

.service-content p{
  color:#43546e;
  line-height:1.65;
  margin:18px 0 22px;
  font-size:14px;
}

.service-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px 18px;
  text-align:left;
}

.service-list li{
  color:#334762;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  padding-left:0;
}

.service-list li::before{
  content:"✓";
  width:17px;
  height:17px;
  background:#0c54d8;
  color:#fff;
  border-radius:50%;
  font-size:11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 17px;
}

.service-cta{
  margin-top:auto;
  width:100%;
  min-height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, #052da8, #14ace3);
  color:#fff;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
}

.service-cta img{
  width:18px;
  height:18px;
  filter:brightness(0) invert(1);
}

.service-card::after{
  content:"Same-day service  •  Transparent pricing  •  Safety-first work";
  display:block;
  padding:15px;
  background:#eef5ff;
  color:#334762;
  font-size:13px;
  text-align:center;
  border-top:1px solid #dce8f7;
}

@media(max-width:992px){
  .services-showcase .service-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:640px){
  .services-showcase{
    padding:55px 0;
  }

  .services-showcase .service-grid{
    grid-template-columns:1fr;
  }

  .service-list{
    grid-template-columns:1fr;
  }

  .service-media{
    height:210px;
  }

  .service-slider-dots{
    right:12px;
    bottom:12px;
    gap:5px;
    padding:6px 8px;
  }

  .service-slider-dot{
    width:6px;
    height:6px;
  }

  .service-slider-dot.active{
    width:17px;
  }
}

/* PROCESS */  
    .process{  
      display:grid;  
      grid-template-columns: repeat(4, 1fr);  
      gap:14px;  
    }  
    .step{  
      border:1px solid var(--border);  
      border-radius: 18px;  
      background: rgba(255,255,255,.92);  
      padding:16px;  
      box-shadow: 0 12px 28px rgba(6,36,68,.12);  
    }  
    .step .num{  
      display:inline-flex;  
      width:38px; height:38px;  
      border-radius: 14px;  
      align-items:center; justify-content:center;  
      background: rgba(0,102,214,.10);  
      border:1px solid rgba(0,102,214,.22);  
      font-weight:900;  
      margin-bottom:10px;  
    }  
    .step h4{ margin:0 0 6px; font-size:15.5px }  
    .step p{ margin:0; color:var(--muted); font-size:13.8px; line-height:1.6 }  
  
    /* CONTACT */  
    #contact, #contact * {  
      font-family: "Manrope", "Segoe UI", Arial, sans-serif;  
    }  
    .contact{  
      display:grid;  
      grid-template-columns: 1.1fr .9fr;  
      gap:18px;  
      align-items:start;  
    }  
    .contact-card{  
      border:1px solid var(--border);  
      border-radius: var(--radius);  
      background: rgba(255,255,255,.94);  
      box-shadow: var(--shadow);  
      padding:22px;  
    }  
    form{ display:grid; gap:12px }  
    .row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px }  
    label{ font-size:13px; color:var(--muted); font-weight:700 }  
    input, select, textarea{  
      width:100%;  
      padding:12px 12px;  
      border-radius: 14px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.9);  
      color: var(--text);  
      outline:none;  
      font-size:14.5px;  
    }  
    textarea{ min-height:110px; resize:vertical }  
    input::placeholder, textarea::placeholder{ color: rgba(167,176,192,.75) }  
  
    .contact-side{  
      border:1px solid var(--border);  
      border-radius: var(--radius);  
      background: rgba(255,255,255,.94);  
      box-shadow: var(--shadow);  
      padding:22px;  
      display:grid;  
      gap:12px;  
    }  
    .contact-side-heading{  
      border-bottom:1px solid var(--border);  
      padding-bottom:10px;  
      margin-bottom:10px;  
    }  
    .contact-side-heading h3{  
      margin:0 0 4px;  
      color:#132034;  
      font-size:17px;  
    }  
    .contact-side-heading p{  
      margin:0;  
      color:var(--muted);  
      font-size:13.8px;  
      line-height:1.5;  
    }  
    .contact-matrix{  
      display:grid;  
      grid-template-columns: repeat(3, 1fr);  
      gap:10px;  
      margin-bottom:18px;  
    }  
    .contact-matrix-item{  
      border:1px solid var(--border);  
      border-radius: 14px;  
      background: rgba(0,102,214,.05);  
      padding:10px;  
      text-align:center;  
    }  
    .contact-matrix-item .label{  
      margin:0;  
      color:var(--muted);  
      font-size:12px;  
      text-transform: uppercase;  
      letter-spacing:0.8px;  
    }  
    .contact-matrix-item .value{  
      margin:4px 0 0;  
      color:#132034;  
      font-weight:700;  
      font-size:14px;  
    }  
    .info-box{  
      border:1px solid var(--border);  
      border-radius: 18px;  
      background: rgba(255,255,255,.9);  
      padding:14px;  
    }  
    .info-box b{  
      display:block;  
      margin-bottom:4px;  
      color:#132034;  
      font-size:14px;  
    }  
    .info-box span{  
      color:var(--muted);  
      line-height:1.5;  
      font-size:14px;  
    }  
    .info-box a{  
      color:var(--brand);  
      font-weight:700;  
    }  
    .info-box b{ display:block; margin-bottom:4px }  
    .info-box span{ color:var(--muted); line-height:1.55 }  

    #reviews{
      overflow-x:clip;
    }

    .review-feedback-grid{
      display:grid;
      grid-template-columns:minmax(0,1.45fr) minmax(0,1fr);
      gap:20px;
      margin-top:30px;
      align-items:stretch;
    }

    .review-feedback-grid > *{
      min-width:0;
      max-width:100%;
    }

    .review-slider-box,
    .review-form-box{
      border:1px solid rgba(17,35,57,.10);
      border-radius:24px;
      background:
        linear-gradient(165deg, rgba(255,255,255,.94), rgba(240,248,255,.86) 52%),
        rgba(255,255,255,.90);
      box-shadow:0 18px 38px rgba(7,33,61,.12);
      padding:24px;
    }

    .review-slider-box{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .review-form-box{
      max-height:680px;
      overflow:auto;
      scrollbar-width:thin;
    }

    .review-summary-bar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:14px 16px;
      border:1px solid rgba(0,102,214,.16);
      border-radius:16px;
      background:linear-gradient(120deg, rgba(0,102,214,.12), rgba(0,167,201,.10));
      margin-bottom:18px;
    }

    .review-rating-hero{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .review-rating-number{
      font-size:38px;
      line-height:1;
      font-weight:800;
      letter-spacing:-1px;
      color:#0f2843;
    }

    .review-stars{
      margin:0;
      color:#f38e3e;
      font-size:16px;
      letter-spacing:1px;
      font-weight:700;
    }

    .review-stars-icons{
      display:flex;
      align-items:center;
      gap:6px;
    }

    .star-icon{
      width:16px;
      height:16px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.3));
    }

    .review-rating-meta{
      margin:4px 0 0;
      color:#5a6f86;
      font-size:12px;
    }

    .review-badges{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:8px;
    }

    .review-badge{
      font-size:11px;
      font-weight:700;
      letter-spacing:.3px;
      text-transform:uppercase;
      color:#1a3a5a;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(0,102,214,.20);
      background:rgba(255,255,255,.85);
    }

    .review-headline-row{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:8px;
    }

    .review-box-title{
      margin:0;
      font-size:22px;
      line-height:1.2;
      font-weight:800;
      letter-spacing:-.3px;
      color:#12253d;
    }

    .review-box-desc{
      margin:0 0 16px;
      color:#4f647c;
      line-height:1.65;
      font-size:14px;
    }

    .review-marquee{
      overflow:auto;
      scroll-snap-type:x mandatory;
      scrollbar-width:none;
      -ms-overflow-style:none;
      padding-bottom:4px;
    }

    .review-marquee::-webkit-scrollbar{
      display:none;
    }

    .review-marquee-track{
      display:flex;
      gap:14px;
      width:max-content;
    }

    .review-card{
      width:clamp(280px, 32vw, 330px);
      min-height:230px;
      scroll-snap-align:start;
      border:1px solid rgba(17,35,57,.14);
      border-radius:18px;
      background:linear-gradient(170deg, rgba(255,255,255,.98), rgba(243,249,255,.95));
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .review-card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
    }

    .review-card-user{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .review-avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.28);
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      display:flex;
      align-items:center;
      justify-content:center;
      color:#00121f;
      font-size:13px;
      font-weight:800;
      flex-shrink:0;
    }

    .review-name{
      margin:0;
      color:#1a314d;
      font-size:14px;
      font-weight:700;
    }

    .review-from{
      margin:2px 0 0;
      color:#5f748c;
      font-size:12px;
      line-height:1.4;
    }

    .review-source{
      font-size:11px;
      font-weight:700;
      color:#0f2f4c;
      background:linear-gradient(135deg, #c3efff, #8fd5ff);
      border-radius:999px;
      padding:6px 10px;
      white-space:nowrap;
      flex-shrink:0;
    }

    .review-card-stars{
      display:flex;
      align-items:center;
      gap:5px;
      margin-top:-2px;
    }

    .review-star-icon{
      width:14px;
      height:14px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.26));
    }

    .review-star-icon.is-inactive,
    .recent-star-icon.is-inactive{
      opacity:.34;
      filter:grayscale(70%);
    }

    .review-rating-chip{
      margin-left:6px;
      border-radius:999px;
      border:1px solid rgba(0,102,214,.22);
      background:rgba(255,255,255,.9);
      color:#1d4268;
      font-size:11px;
      font-weight:700;
      letter-spacing:.2px;
      padding:3px 8px;
    }

    .review-text{
      margin:0;
      color:#405873;
      font-size:14px;
      line-height:1.65;
    }

    .review-time{
      margin-top:auto;
      padding-top:10px;
      border-top:1px solid rgba(17,35,57,.10);
      color:#627a93;
      font-size:12px;
    }

    .review-nav{
      display:flex;
      gap:8px;
      flex-shrink:0;
      margin-left:auto;
    }

    .review-arrow{
      width:38px;
      height:38px;
      border:1px solid rgba(17,35,57,.14);
      border-radius:12px;
      background:rgba(255,255,255,.88);
      color:#1a3e63;
      font-size:18px;
      line-height:1;
      cursor:pointer;
      transition:.2s ease;
    }

    .review-arrow:hover{
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#ffffff;
      border-color:transparent;
    }

    .review-dots{
      display:flex;
      justify-content:center;
      gap:8px;
      margin-top:4px;
    }

    .review-dot{
      width:7px;
      height:7px;
      border:none;
      padding:0;
      cursor:pointer;
      border-radius:50%;
      background:rgba(17,35,57,.30);
      transition:.2s ease;
    }

    .review-dot.active{
      width:24px;
      border-radius:999px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
    }

    .review-note{
      margin:12px 0 0;
      color:#9bb0d3;
      font-size:12px;
      line-height:1.6;
      text-align:center;
    }

    .review-form-title{
      margin:0;
      font-size:20px;
      line-height:1.2;
      color:#132034;
      letter-spacing:-.2px;
    }

    .review-form-subtitle{
      margin:8px 0 16px;
      color:#a7b0c0;
      font-size:14px;
      line-height:1.6;
    }

    .review-form{
      display:grid;
      gap:14px;
    }

    .review-form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .review-form-group{
      display:flex;
      flex-direction:column;
      gap:6px;
    }

    .review-form label{
      font-size:12px;
      font-weight:700;
      color:#29445f;
    }

    .review-form input,
    .review-form select,
    .review-form textarea{
      width:100%;
      min-width:0;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(17,35,57,.14);
      color:#132034;
      border-radius:12px;
      padding:12px;
      font-size:14px;
      transition:.2s ease;
      outline:none;
    }

    .review-form textarea{
      min-height:126px;
      resize:vertical;
    }

    .review-form input:focus,
    .review-form select:focus,
    .review-form textarea:focus{
      border-color:rgba(0,102,214,.65);
      box-shadow:0 0 0 3px rgba(0,102,214,.14);
    }

    .review-stars-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .review-star-option{
      position:relative;
    }

    .review-star-option input{
      position:absolute;
      opacity:0;
      pointer-events:none;
    }

    .review-star-option label{
      display:inline-flex;
      align-items:center;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.03);
      color:#d6e2fb;
      font-size:12px;
      cursor:pointer;
      transition:.2s ease;
    }

    .review-star-option input:checked + label,
    .review-star-option label:hover{
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      border-color:transparent;
    }

    .review-checkbox{
      display:flex;
      align-items:flex-start;
      gap:9px;
      color:#b7c8e8;
      font-size:12px;
      line-height:1.6;
    }

    .review-checkbox input{
      width:auto;
      margin-top:2px;
      accent-color:#00d4ff;
    }

    .review-submit{
      min-height:48px;
      border:none;
      border-radius:12px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      font-size:15px;
      font-weight:800;
      cursor:pointer;
      transition:.2s ease;
      box-shadow:0 12px 24px rgba(30,140,255,.25);
    }

    .review-submit:hover{
      transform:translateY(-1px);
    }

    .review-form-note{
      color:#607991;
      font-size:12px;
      line-height:1.5;
      margin-top:8px;
    }

    .review-form-success{
      margin:8px 0 0;
      color:#8de8ff;
      font-size:13px;
      font-weight:700;
    }

    .recent-reviews-section{
      margin-top:32px;
      text-align:center;
    }

    .recent-reviews-title{
      margin:0;
      font-size:25px;
      color:#132034;
      letter-spacing:-.2px;
    }

    .recent-reviews-desc{
      margin:8px 0 0;
      color:#607991;
      font-size:14px;
    }

    .recent-reviews-grid{
      margin-top:20px;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:14px;
    }

    .recent-review-card{
      border:1px solid rgba(17,35,57,.14);
      border-radius:18px;
      background:linear-gradient(170deg, rgba(255,255,255,.98), rgba(243,249,255,.95));
      padding:16px;
      text-align:left;
      display:flex;
      flex-direction:column;
      gap:10px;
      box-shadow:0 12px 30px rgba(6,36,68,.11);
    }

    .recent-review-card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
    }

    .recent-review-card-user{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }

    .recent-review-avatar{
      width:38px;
      height:38px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#00121f;
      font-size:12px;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .recent-review-name{
      margin:0;
      font-size:14px;
      color:#1a314d;
      font-weight:700;
    }

    .recent-review-from{
      margin:2px 0 0;
      font-size:12px;
      color:#5f748c;
    }

    .recent-review-source{
      font-size:11px;
      background:rgba(0,212,255,.18);
      color:#8de8ff;
      border:1px solid rgba(0,212,255,.40);
      padding:5px 8px;
      border-radius:999px;
      white-space:nowrap;
      font-weight:700;
    }

    .recent-review-stars{
      display:flex;
      align-items:center;
      gap:5px;
      margin:0;
    }

    .recent-star-icon{
      width:13px;
      height:13px;
      object-fit:contain;
      filter:brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(4156%) hue-rotate(337deg) brightness(98%) contrast(94%) drop-shadow(0 2px 4px rgba(0,0,0,.24));
    }

    .recent-review-text{
      margin:0;
      color:#405873;
      font-size:13px;
      line-height:1.6;
    }

    .recent-review-time{
      margin-top:auto;
      color:#627a93;
      font-size:11px;
      padding-top:8px;
      border-top:1px solid rgba(17,35,57,.10);
    }

    @media (max-width:1100px){
      .review-feedback-grid{
        grid-template-columns:1fr;
      }
      .recent-reviews-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:767px){
      .review-feedback-grid{
        margin-top:22px;
        gap:14px;
      }

      .review-slider-box,
      .review-form-box{
        padding:16px;
        border-radius:18px;
      }

      .review-form-box{
        max-height:none;
        overflow:visible;
      }

      .review-summary-bar{
        flex-direction:column;
        align-items:flex-start;
        padding:12px;
        gap:12px;
      }

      .review-rating-hero{
        width:100%;
        align-items:flex-start;
      }

      .review-rating-number{
        font-size:32px;
      }

      .review-badges{
        justify-content:flex-start;
        width:100%;
        gap:6px;
      }

      .review-badge{
        font-size:10px;
        padding:6px 9px;
      }

      .review-headline-row{
        flex-direction:column;
        gap:10px;
        margin-bottom:10px;
      }

      .review-nav{
        width:100%;
        justify-content:flex-end;
      }

      .review-arrow{
        width:42px;
        height:42px;
      }

      .review-marquee{
        margin-inline:-2px;
      }

      .review-marquee-track{
        width:100%;
        gap:10px;
      }

      .review-form-row{
        grid-template-columns:1fr;
      }

      .review-card{
        width:100%;
        min-width:100%;
        max-width:100%;
        flex:0 0 100%;
        box-sizing:border-box;
        padding:14px;
      }

      .review-card-top,
      .recent-review-card-top{
        gap:8px;
      }

      .review-source,
      .recent-review-source{
        max-width:46%;
        overflow:hidden;
        text-overflow:ellipsis;
      }

      .review-form input,
      .review-form select,
      .review-form textarea{
        font-size:16px;
      }

      .review-form-note{
        margin-top:2px;
      }

      .review-submit{
        width:100%;
      }

      .recent-reviews-grid{
        grid-template-columns:1fr;
        gap:12px;
      }

      .recent-review-card{
        padding:14px;
      }

      .recent-reviews-title{
        font-size:22px;
      }

      .review-box-title{
        font-size:20px;
      }

      .service-icon{
        width:58px;
        height:58px;
        flex-basis:58px;
        margin:-29px auto 12px;
      }

      .service-icon img{
        width:27px;
        height:27px;
      }
    }

    @media (max-width:420px){
      .service-icon{
        width:52px;
        height:52px;
        flex-basis:52px;
        margin:-26px auto 10px;
      }

      .service-icon img{
        width:24px;
        height:24px;
      }

      .review-slider-box,
      .review-form-box{
        padding:14px;
      }

      .review-card{
        width:100%;
        min-width:100%;
        max-width:100%;
      }

      .review-avatar,
      .recent-review-avatar{
        width:34px;
        height:34px;
        font-size:11px;
      }

      .review-name,
      .recent-review-name{
        font-size:13px;
      }
    }

    /* FOOTER */  
    footer{  
      border-top:1px solid var(--border);  
      background: linear-gradient(180deg, rgba(240,247,255,.9), rgba(230,240,250,.95));  
      padding:42px 0 18px;  
      margin-top:26px;  
    }  
    .footer-grid{  
      display:grid;  
      grid-template-columns: repeat(4, minmax(180px, 1fr));  
      gap:16px;  
      align-items:start;  
      padding:0px 0;  
    }  
    .footer-card{  
      background: rgba(255,255,255,.76);  
      border-radius: var(--radius);  
      padding:18px;  
    }  
    .footer-about-card{  
      display:flex;  
      flex-direction:column;  
      gap:12px;  
    }  
    .footer-logo{  
      display:flex;  
      align-items:center;  
      gap:10px;  
      margin-bottom:6px;  
    }  
    .footer-logo span{  
      font-weight:900;  
      font-size:18px;  
      color:#132034;  
    }  
    .footer-title{  
      font-weight:800;  
      margin:0 0 10px;  
      letter-spacing:-.2px;  
      color:#132034;  
      font-size:15px;  
    }  
    .footer-text{  
      margin:0 0 16px;  
      color:var(--muted);  
      line-height:1.6;  
      font-size:14.5px;  
    }  
    .footer-anchors{  
      display:flex;  
      gap:8px;  
      flex-wrap:wrap;  
    }  
    .btn-secondary{  
      border:1px solid var(--border);  
      color:var(--text);  
      background: rgba(255,255,255,.05);  
    }  
    .footer-link-list, .contact-details{  
      list-style:none;  
      padding:0;  
      margin:0;  
      display:grid;  
      gap:8px;  
    }  
    .footer-link-list li a{  
      color:var(--muted);  
      text-decoration:none;  
      font-size:14px;  
    }  
    .footer-link-list li a:hover{  
      color:var(--text);  
    }  
    .contact-details li{  
      color:var(--muted);  
      font-size:14px;  
      line-height:1.6;  
    }  
    .contact-details a{  
      color:var(--brand);  
      text-decoration:none;  
    }  
    .social-icons{  
      display:flex;  
      gap:10px;  
      margin-top:10px;  
    }  
    .social-icons a{  
      display:inline-flex;  
      align-items:center;  
      justify-content:center;  
      width:34px;  
      height:34px;  
      border-radius:8px;  
      border:1px solid var(--border);  
      background: rgba(255,255,255,.9);  
    }  
    .footer-text{  
      margin:0;  
      color:var(--muted);  
      line-height:1.65;  
      font-size:14.5px;  
    }  
    .footer-links{  
      display:grid;  
      gap:10px;  
      margin-top:10px;  
    }  
    .footer-links a{  
      color:var(--muted);  
      padding:8px 10px;  
      border-radius: 12px;  
      background: rgba(255,255,255,.02);  
      border:1px solid rgba(255,255,255,.05);  
      transition:.2s ease;  
    }  
    .footer-links a:hover{ color:var(--text); background: rgba(255,255,255,.06) }  
    /* Professional footer additions */
    .footer-logo{ display:flex; gap:12px; align-items:center }
    .footer-logo img{ height:44px; width:auto; border-radius:0 }
    .footer-about{ color:var(--muted); line-height:1.6 }
    .footer .social-icons{ display:flex; gap:10px; margin-top:8px }
    .social-icons a{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,.9); color:var(--text); text-decoration:none }
    .social-icons img{ width:16px; height:16px; object-fit:contain; display:block }
    .contact-list{ color:var(--muted); line-height:1.6 }
    .footer-cta{ margin-top:12px }
  
    .footer-bottom{  
      margin-top:18px;  
      padding-top:14px;  
      border-top:1px solid var(--border);  
      display:flex;  
      justify-content:space-between;  
      align-items:center;  
      flex-wrap:wrap;  
      gap:10px;  
      color:var(--muted);  
      font-size:13.5px;  
    }  

    /* Soft entrance motion for a more polished first impression */
    .hero-card,
    .card,
    .step,
    .contact-card,
    .review-slider-box,
    .review-form-box,
    .footer-card{
      animation:fadeUp .55s ease both;
    }

    .card:nth-child(2),
    .step:nth-child(2){ animation-delay:.06s; }
    .card:nth-child(3),
    .step:nth-child(3){ animation-delay:.12s; }
    .card:nth-child(4),
    .step:nth-child(4){ animation-delay:.18s; }

    @keyframes fadeUp{
      from{ opacity:0; transform:translateY(14px); }
      to{ opacity:1; transform:translateY(0); }
    }
    .footer-legal-links{  
      display:flex;  
      align-items:center;  
      gap:14px;  
      flex-wrap:wrap;  
    }  
    .footer-legal-links a{  
      color:var(--muted);  
      text-decoration:none;  
      font-size:13.5px;  
    }  
    .footer-legal-links a:hover{  
      color:var(--text);  
    }  
  
    /* RESPONSIVE */  
    @media (max-width: 980px){
      .container{ padding:0 14px }
      .topbar-inner{ padding:10px 0 }
      .brand{ min-width:140px }
      .logo{ height:50px }
      .hero-grid{ grid-template-columns: 1fr }
      .grid{ grid-template-columns: repeat(2, 1fr) }
.process{ grid-template-columns: repeat(2, 1fr) }
      .contact{ grid-template-columns: 1fr }
      .footer-grid{ grid-template-columns: 1fr 1fr }
    }
    @media (max-width: 680px){
      .logo{ height:50px }

      h1{ font-size:30px }
      .hero{ padding:32px 0 16px; }
      section{ padding:32px 0; }
      .hero-card{ padding:18px }
.grid{ grid-template-columns: 1fr }
.process{ grid-template-columns: 1fr }
      .nav{ display:none }
      .hamburger{ display:inline-flex }
      .nav.mobile{
        display:grid;
        position:absolute;
        top:64px;
        right:12px;
        left:12px;
        background: rgba(255,255,255,.98);
        border:1px solid var(--border);
        border-radius: 14px;
        padding:8px;
        box-shadow: var(--shadow);
      }
      .nav.mobile a{ padding:10px 12px; font-size:15px }
      .hero-actions a{ flex:1; min-width:0; justify-content:center }
      .footer-grid{ grid-template-columns: 1fr 1fr }
      .footer-bottom{ flex-direction:column; gap:6px; align-items:center; text-align:center }
    }
    @media (max-width: 480px){
      .brand{ min-width:120px; flex-shrink:0; }
      .logo{ height:50px }
      .topbar-inner{ gap:6px; padding:8px 0 }
      header.topbar .btn{ padding:8px 4px; font-size:11px; gap:4px; border-radius:12px }
      .hamburger{ width:36px; height:36px; }
      h1{ font-size:24px }
.pill{ font-size:12px; padding:6px 10px }
      .footer-grid{ grid-template-columns: 1fr }
    }

/* Reliable visible service-card icons */
.service-icon::before{
  display:none !important;
  content:none !important;
}

.service-icon img{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  width:34px !important;
  height:34px !important;
  object-fit:contain !important;
  filter:brightness(0) invert(1) !important;
  position:relative;
  z-index:10;
}

@media(max-width:600px){
  .service-icon img{
    width:27px !important;
    height:27px !important;
  }
}

@media(max-width:420px){
  .service-icon img{
    width:24px !important;
    height:24px !important;
  }
}

/* Electrical page hero, Google icons, and centered service heading */
.service-icon .service-google-icon{
  width:36px !important;
  height:36px !important;
  color:#fff !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex:0 0 36px !important;
  font-family:"Material Symbols Rounded" !important;
  font-size:36px !important;
  font-style:normal !important;
  font-weight:600 !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
  white-space:nowrap !important;
  direction:ltr !important;
  font-feature-settings:"liga" !important;
  -webkit-font-feature-settings:"liga" !important;
  font-variation-settings:"FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24 !important;
  -webkit-font-smoothing:antialiased !important;
  text-rendering:optimizeLegibility !important;
}

.hero{
  padding:22px 0 28px;
}

.hero-card{
  min-height:460px;
  padding:48px;
  border-radius:18px;
  display:flex;
  align-items:center;
  box-shadow:0 24px 64px rgba(7,28,58,.18);
}

.hero-card .hero-bg::after{
  background:
    linear-gradient(90deg, rgba(5,18,39,.84) 0%, rgba(5,18,39,.62) 42%, rgba(5,18,39,.18) 72%, rgba(5,18,39,.42) 100%),
    linear-gradient(180deg, rgba(5,18,39,.16), rgba(5,18,39,.28));
}

.hero-card .hero-bg img{
  object-position:center center;
}

.hero-content{
  width:min(780px, 58%);
  min-width:0;
}

.hero-card .pill{
  padding:10px 17px;
  background:rgba(255,255,255,.20);
  border-color:rgba(255,255,255,.38);
  color:#fff;
  backdrop-filter:blur(10px);
}

.hero-card h1{
  max-width:760px;
  font-size:clamp(36px, 4.4vw, 64px);
  line-height:1.03;
  letter-spacing:0;
  margin-bottom:18px;
}

.hero-card .lead{
  max-width:670px;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.94);
}

.hero-card .hero-actions{
  margin-top:22px;
  gap:14px;
}

.hero-card .hero-actions .btn{
  min-height:50px;
  border-radius:12px;
  padding:0 22px;
}

.hero-card .hero-actions .btn-ghost{
  color:#061733;
  border:0;
  box-shadow:0 14px 30px rgba(4,16,34,.18);
}

.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.hero-proof span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:14px;
  font-weight:750;
  line-height:1;
  backdrop-filter:blur(10px);
}

.hero-proof .material-symbols-rounded{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:#fff;
  line-height:1;
}

.hero-note{
  margin-top:18px !important;
  margin-bottom:0 !important;
}

.services-showcase .section-head{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.services-showcase .section-title{
  width:100%;
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.services-showcase .section-title .pill{
  margin-left:auto;
  margin-right:auto;
}

.services-showcase .section-title p{
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

@media(max-width:980px){
  .hero{
    padding:16px 0 24px;
  }

  .hero-card{
    min-height:420px;
    padding:34px;
  }

  .hero-content{
    width:min(720px, 78%);
  }
}

@media(max-width:680px){
  .hero-card{
    min-height:520px;
    padding:24px;
    align-items:flex-end;
  }

  .hero-card .hero-bg::after{
    background:linear-gradient(180deg, rgba(5,18,39,.32) 0%, rgba(5,18,39,.78) 58%, rgba(5,18,39,.90) 100%);
  }

  .hero-content{
    width:100%;
  }

  .hero-card .lead{
    font-size:15px;
  }

  .hero-card .hero-actions .btn{
    min-height:46px;
    padding:0 14px;
  }

  .hero-proof{
    gap:8px;
  }

  .hero-proof span{
    font-size:12.5px;
    min-height:32px;
    padding:7px 10px;
  }

  .service-icon .service-google-icon{
    width:29px !important;
    height:29px !important;
    flex-basis:29px !important;
    font-size:29px !important;
  }
}

.service-list li::before{
  content:"\\2713" !important;
}

.service-card::after{
  content:"Same-day service  \\2022  Transparent pricing  \\2022  Safety-first work" !important;
}

/* Electrical page full-bleed hero with contained content */
.topbar{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:linear-gradient(180deg, rgba(5,17,35,.64), rgba(5,17,35,.16));
  border-bottom:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.topbar .container{
  max-width:var(--max);
  width:100%;
  padding:0 18px;
}

.brand{
  min-width:190px;
}

.nav a{
  color:rgba(255,255,255,.9);
  background:transparent;
}

.nav a img{
  filter:brightness(0) invert(1);
  opacity:.88;
}

.nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.14);
}

.nav a:hover img{
  filter:brightness(0) invert(1);
  opacity:1;
}

.hamburger{
  color:#fff;
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.12);
}

#home.hero{
  min-height:100vh;
  padding:0;
  margin-top:0;
  display:flex;
  align-items:stretch;
  position:relative;
  overflow:hidden;
  background:#061326;
}

#home.hero > .container{
  max-width:none;
  width:100%;
  padding:0;
}

#home .hero-grid,
#home .hero-card{
  min-height:100vh;
  width:100%;
}

#home .hero-card{
  border:0;
  border-radius:0;
  padding:clamp(120px, 13vh, 172px) 0 clamp(82px, 10vh, 132px);
  box-shadow:none;
  background:transparent;
  display:flex;
  align-items:center;
  isolation:isolate;
}

#home .hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(780px 520px at 18% 38%, rgba(0,102,214,.32), transparent 64%),
    linear-gradient(90deg, rgba(2,13,31,.92) 0%, rgba(3,16,38,.78) 38%, rgba(3,16,38,.28) 67%, rgba(3,16,38,.58) 100%);
}

#home .hero-card .hero-bg{
  border-radius:0;
}

#home .hero-card .hero-bg img{
  object-position:center;
  transform:scale(1.04);
  transition:opacity .8s ease, transform 7s ease;
}

#home .hero-card .hero-bg img.active{
  transform:scale(1);
}

#home .hero-card .hero-bg::after{
  background:
    linear-gradient(180deg, rgba(3,12,28,.14) 0%, rgba(3,12,28,.2) 58%, rgba(3,12,28,.84) 100%),
    linear-gradient(90deg, rgba(3,12,28,.9) 0%, rgba(3,12,28,.68) 42%, rgba(3,12,28,.18) 76%);
}

#home .hero-content{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, 760px) minmax(310px, 430px);
  align-items:center;
  justify-content:space-between;
  gap:clamp(32px, 5.4vw, 92px);
}

#home .hero-content::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  bottom:2px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg, #28b7ff, #ffffff, rgba(255,255,255,.12));
  box-shadow:0 0 30px rgba(40,183,255,.45);
}

#home .hero-copy{
  max-width:760px;
}

#home .hero-card .pill{
  margin-bottom:18px;
  background:rgba(255,255,255,.15);
  border-color:rgba(255,255,255,.28);
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22);
}

#home .hero-card h1{
  font-size:clamp(42px, 5.2vw, 84px);
  max-width:900px;
  line-height:.98;
  margin-bottom:22px;
  text-shadow:0 18px 42px rgba(0,0,0,.36);
}

#home .hero-card .lead{
  max-width:690px;
  font-size:clamp(16px, 1.25vw, 20px);
  line-height:1.75;
  color:rgba(255,255,255,.9);
  text-shadow:0 10px 28px rgba(0,0,0,.34);
}

#home .hero-actions{
  margin-top:30px;
}

#home .hero-actions .btn{
  min-height:54px;
  padding:0 26px;
  border-radius:14px;
}

#home .hero-actions .btn-primary{
  box-shadow:0 18px 42px rgba(0,102,214,.36);
}

#home .hero-actions .btn-ghost{
  background:rgba(255,255,255,.94);
  color:#061733;
}

#home .hero-proof{
  max-width:760px;
  margin-top:30px;
  gap:12px;
}

#home .hero-proof span{
  min-height:40px;
  padding:10px 14px;
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.26);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16);
}

#home .hero-proof img,
#home .hero-proof .material-symbols-rounded{
  color:#fff;
  filter:brightness(0) invert(1);
}

#home .hero-note{
  margin-top:24px !important;
  font-size:15px;
  color:rgba(255,255,255,.78) !important;
}

#home .hero-service-panel{
  width:100%;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(4,18,42,.36);
  box-shadow:0 30px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  color:#fff;
}

#home .hero-panel-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

#home .hero-panel-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:18px;
  background:linear-gradient(135deg, #123eb7, #28abe3);
  box-shadow:0 18px 38px rgba(0,102,214,.36);
}

#home .hero-panel-icon img,
#home .hero-panel-grid img{
  width:22px;
  height:22px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

#home .hero-panel-head p{
  margin:0 0 3px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

#home .hero-panel-head strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.2;
}

#home .hero-panel-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

#home .hero-panel-grid span{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight:800;
  font-size:14px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}

#home .hero-panel-footer{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:18px;
}

#home .hero-panel-footer div{
  min-height:74px;
  padding:14px;
  border-radius:18px;
  background:rgba(5,17,35,.36);
  border:1px solid rgba(255,255,255,.14);
}

#home .hero-panel-footer b{
  display:block;
  margin-bottom:4px;
  font-size:26px;
  line-height:1;
  color:#fff;
}

#home .hero-panel-footer span{
  display:block;
  color:rgba(255,255,255,.75);
  font-size:13px;
  font-weight:750;
  line-height:1.3;
}

@media(max-width:980px){
  .topbar .container{
    padding:0 18px;
  }

  .brand{
    min-width:150px;
  }

  #home .hero-card{
    padding:120px 0 72px;
  }

  #home .hero-content{
    max-width:900px;
    padding:0 18px;
    grid-template-columns:1fr;
    gap:24px;
  }

  #home .hero-service-panel{
    max-width:620px;
  }
}

@media(max-width:680px){
  .topbar{
    background:linear-gradient(180deg, rgba(5,17,35,.82), rgba(5,17,35,.34));
  }

  .nav.mobile{
    background:rgba(255,255,255,.98);
  }

  .nav.mobile a{
    color:#2c4057;
  }

  .nav.mobile a img{
    filter:brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(646%) hue-rotate(171deg) brightness(92%) contrast(89%);
  }

  #home.hero,
  #home .hero-grid,
  #home .hero-card{
    min-height:100svh;
  }

  #home .hero-card{
    padding:112px 0 48px;
    align-items:flex-end;
  }

  #home .hero-card::before{
    background:
      linear-gradient(180deg, rgba(4,14,31,.20) 0%, rgba(4,14,31,.58) 42%, rgba(4,14,31,.94) 100%),
      radial-gradient(520px 380px at 22% 74%, rgba(0,102,214,.34), transparent 70%);
  }

  #home .hero-card .hero-bg::after{
    background:linear-gradient(180deg, rgba(3,12,28,.18) 0%, rgba(3,12,28,.62) 48%, rgba(3,12,28,.94) 100%);
  }

  #home .hero-content{
    width:100%;
    padding:0 18px;
    display:block;
  }

  #home .hero-content::before{
    left:18px;
    top:-18px;
    bottom:auto;
    width:74px;
    height:4px;
  }

  #home .hero-card h1{
    font-size:clamp(34px, 10vw, 48px);
    line-height:1.03;
  }

  #home .hero-card .lead{
    font-size:15px;
    line-height:1.65;
  }

  #home .hero-actions{
    margin-top:22px;
  }

  #home .hero-actions .btn{
    min-height:48px;
    padding:0 14px;
  }

  #home .hero-proof{
    margin-top:20px;
  }

  #home .hero-proof span{
    min-height:34px;
    padding:8px 10px;
  }

  #home .hero-note,
  #home .hero-service-panel{
    display:none;
  }
}

@media(max-width:420px){
  #home .hero-card{
    padding-left:0;
    padding-right:0;
  }

  #home .hero-card .pill{
    font-size:12px;
  }

  #home .hero-proof{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
}

/* Draw service-list checks without unicode escapes */
.service-list li{
  position:relative;
  display:block;
  min-height:20px;
  padding-left:27px;
  line-height:1.45;
}

.service-list li::before{
  content:"" !important;
  position:absolute;
  left:0;
  top:50%;
  width:17px;
  height:17px;
  background:#0c54d8;
  border-radius:50%;
  transform:translateY(-50%);
}

.service-list li::after{
  content:"";
  position:absolute;
  left:6px;
  top:50%;
  width:5px;
  height:9px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translateY(-58%) rotate(45deg);
}

.service-card::after{
  content:"Same-day service | Transparent pricing | Safety-first work" !important;
}

/* Match the working CCTV service-circle icon structure */
.service-icon .service-material-icon{
  width:36px !important;
  height:36px !important;
  display:block !important;
  object-fit:contain !important;
  filter:brightness(0) invert(1) !important;
  opacity:1 !important;
  visibility:visible !important;
  flex:0 0 36px !important;
  position:relative;
  z-index:12;
}

@media(max-width:600px){
  .service-icon .service-material-icon{
    width:27px !important;
    height:27px !important;
    flex-basis:27px !important;
  }
}

@media(max-width:420px){
  .service-icon .service-material-icon{
    width:24px !important;
    height:24px !important;
    flex-basis:24px !important;
  }
}

/* Premium floating navbar */
header.topbar{
  position:absolute !important;
  top:0;
  left:0;
  right:0;
  z-index:1200;
  padding:14px 0 0;
  background:transparent !important;
  border-bottom:0 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  pointer-events:none;
}

header.topbar .container{
  width:100%;
  max-width:var(--max);
  padding:0 18px;
}

header.topbar .topbar-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:72px;
  padding:10px 12px 10px 14px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(7,25,54,.84), rgba(9,37,77,.54)),
    rgba(255,255,255,.08);
  box-shadow:0 22px 60px rgba(1,11,28,.28), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter:blur(18px) saturate(1.25);
  -webkit-backdrop-filter:blur(18px) saturate(1.25);
  overflow:visible;
  pointer-events:auto;
}

header.topbar .topbar-inner::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  opacity:.8;
}

header.topbar .brand{
  min-width:210px;
  gap:10px;
}

header.topbar .logo{
  height:52px;
  width:auto;
  padding:6px 10px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

header.topbar .nav{
  display:flex;
  align-items:center;
  gap:4px;
  padding:6px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.08);
}

header.topbar .nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:40px;
  padding:10px 12px;
  border-radius:14px;
  color:rgba(255,255,255,.9);
  font-size:13.5px;
  font-weight:800;
  letter-spacing:0;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

header.topbar .nav a img{
  width:16px;
  height:16px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.86;
  transition:opacity .2s ease, transform .2s ease;
}

header.topbar .nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

header.topbar .nav a:hover img{
  opacity:1;
  transform:scale(1.06);
}

header.topbar .topbar-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

header.topbar .topbar-actions .btn{
  min-height:48px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  background:linear-gradient(135deg, #1478ff, #20bfd4);
  color:#fff;
  font-size:12.5px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 16px 34px rgba(0,102,214,.34);
}

header.topbar .topbar-actions .btn:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 40px rgba(0,102,214,.42);
}

header.topbar .hamburger{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:22px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}

@media(max-width:1080px){
  header.topbar .brand{
    min-width:auto;
  }

  header.topbar .logo{
    height:48px;
    max-width:190px;
  }

  header.topbar .nav a{
    padding:10px 9px;
    font-size:13px;
  }

  header.topbar .topbar-actions .btn{
    padding:0 14px;
  }
}

@media(max-width:860px){
  header.topbar{
    padding-top:10px;
  }

  header.topbar .topbar-inner{
    min-height:64px;
    border-radius:20px;
    padding:8px 10px;
  }

  header.topbar .logo{
    height:46px;
    max-width:170px;
  }

  header.topbar .nav{
    display:none;
  }

  header.topbar .hamburger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  header.topbar .nav.mobile{
    display:grid;
    position:absolute;
    top:calc(100% + 10px);
    left:10px;
    right:10px;
    z-index:1250;
    gap:6px;
    padding:10px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:20px;
    background:linear-gradient(135deg, rgba(7,25,54,.96), rgba(9,37,77,.92));
    box-shadow:0 24px 60px rgba(1,11,28,.34);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  header.topbar .nav.mobile a{
    justify-content:flex-start;
    min-height:46px;
    padding:12px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:14px;
  }

  header.topbar .nav.mobile a img{
    filter:brightness(0) invert(1);
    opacity:.9;
  }
}

@media(max-width:520px){
  header.topbar .container{
    padding:0 10px;
  }

  header.topbar .topbar-inner{
    gap:8px;
  }

  header.topbar .logo{
    height:42px;
    max-width:148px;
    padding:5px 8px;
    border-radius:0;
  }

  header.topbar .topbar-actions{
    gap:7px;
  }

  header.topbar .topbar-actions .btn{
    min-height:42px;
    padding:0 10px;
    font-size:10.5px;
    border-radius:13px;
  }

  header.topbar .hamburger{
    width:42px;
    height:42px;
    border-radius:13px;
  }
}

