:root{
      --bg:#0b0b0c;
      --card: rgba(255,255,255,0.06);
      --border: rgba(255,255,255,0.14);
      --text: rgba(255,255,255,0.92);
      --muted: rgba(255,255,255,0.70);
      --brand: #F7931E; /* logo orange */
      --brand2:#1f2937;
      --radius:18px;
      --max: 1060px;
      --shadow: 0 18px 55px rgba(0,0,0,0.45);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color:var(--text);
      background:
        radial-gradient(900px 520px at 10% 0%, rgba(247,147,30,0.25), transparent 60%),
        radial-gradient(900px 520px at 90% 10%, rgba(255,255,255,0.08), transparent 60%),
        var(--bg);
      
      line-height:1.55;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}

    /* Header */
    header{
      position:sticky; top:0; z-index:20;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background:rgba(11,11,12,0.7);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0; gap:12px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 240px;
    }
    .brand img{height:85px; width:auto; display:block; }
    .brand .name{font-weight:950; letter-spacing:0.2px}
    .brand .tag{font-size:12px; color:rgba(255,255,255,0.66); font-weight:800; letter-spacing:.9px; margin-top:2px}
    .navlinks{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
    .navlinks a{font-size:14px; color:var(--muted); font-weight:800}
    .navlinks a:hover{color:var(--text)}

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 14px; border-radius:14px;
      border:1px solid transparent;
      font-weight:900; cursor:pointer; user-select:none;
      transition:transform .12s ease, opacity .12s ease, background .12s ease, border-color .12s ease;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:linear-gradient(135deg, var(--brand), #ffbd6b);
      color:#1a1207;
      box-shadow:0 14px 30px rgba(247,147,30,0.18);
    }
    .btn-primary:hover{opacity:.95}
    .btn-ghost{
      background:rgba(255,255,255,0.06);
      border-color:var(--border);
      color:var(--text);
    }
    .btn-ghost:hover{background:rgba(255,255,255,0.085)}

    /* Hero */
    .hero{padding:54px 0 22px}
    .grid{display:grid; grid-template-columns: 1.15fr 0.85fr; gap:18px; align-items:stretch}
    .pill{
      display:inline-flex; gap:10px; align-items:center;
      padding:8px 12px; border-radius:999px;
      background:rgba(255,255,255,0.06);
      border:1px solid var(--border);
      color:var(--muted); font-size:14px;
    }
    .dot{width:8px; height:8px; border-radius:999px; background:var(--brand); box-shadow:0 0 0 4px rgba(247,147,30,0.18)}
    h1{
      font-size: clamp(34px, 5vw, 56px);
      line-height:1.03;
      letter-spacing:-1px;
      margin:14px 0 12px;
    }
    .lead{color:var(--muted); font-size:18px; margin:0 0 16px; max-width:62ch}
    .actions{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 12px}
    .micro{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-size:14px; margin-top:8px}
    .micro b{color:var(--text)}

    .card{
      background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
      border:1px solid rgba(255,255,255,0.12);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .card::before{
      content:"";
      position:absolute; inset:-70px -70px auto auto;
      width:260px; height:260px;
      background:radial-gradient(circle at 30% 30%, rgba(247,147,30,0.35), transparent 62%);
      transform:rotate(15deg);
      pointer-events:none;
    }
    .card h2{margin:0 0 6px; position:relative; z-index:1; font-size:20px}
    .card p{margin:0 0 14px; position:relative; z-index:1; color:var(--muted); font-size:14px}

    /* Form */
    form{display:grid; gap:10px; position:relative; z-index:1}
    label{font-size:13px; color:var(--muted); font-weight:800}
    input, textarea, select{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,0.14);
      background:rgba(255,255,255,0.06);
      color:var(--text);
      outline:none;
    }
    input::placeholder, textarea::placeholder{color:rgba(255,255,255,0.45)}
    textarea{min-height:92px; resize:vertical}
    .row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
    .fine{font-size:12px; color:rgba(255,255,255,0.55)}
    .success{
      display:none; margin-top:10px;
      padding:12px 12px; border-radius:14px;
      border:1px solid rgba(247,147,30,0.35);
      background:rgba(247,147,30,0.10);
      color:rgba(255,255,255,0.92);
      font-weight:800;
    }

    /* Sections */
    section{padding:38px 0}
    .section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:14px}
    .section-title h3{margin:0; font-size:22px; letter-spacing:-0.2px}
    .section-title .sub{margin:0; color:var(--muted); max-width:70ch}

    .grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .tile{
      padding:16px; border-radius:18px;
      background:rgba(0,0,0,0.18);
      border:1px solid rgba(255,255,255,0.10);
    }
    .tile h4{margin:0 0 6px; font-size:16px}
    .tile p{margin:0; color:var(--muted); font-size:14px}

    .faq details{
      border:1px solid rgba(255,255,255,0.10);
      background:rgba(0,0,0,0.18);
      border-radius:16px;
      padding:12px 14px;
    }
    .faq details + details{margin-top:10px}
    .faq summary{cursor:pointer; font-weight:900}
    .faq p{margin:8px 0 0; color:var(--muted); font-size:14px}

    footer{
      padding:26px 0 40px;
      border-top:1px solid rgba(255,255,255,0.08);
      color:var(--muted); font-size:14px;
    }

    @media (max-width: 920px){
      .grid{grid-template-columns:1fr}
      .navlinks{display:none}
    }
    @media (max-width: 560px){
      .row{grid-template-columns:1fr}
      .grid3{grid-template-columns:1fr}
      .btn{width:100%}
    }
  
    /* Gallery */
    .gallery{
      display:grid;
      grid-template-columns: repeat(6, 1fr);
      gap:10px;
    }
    .g-item{
      border:1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.20);
      border-radius:16px;
      overflow:hidden;
      padding:0;
      cursor:pointer;
      transition: transform .12s ease, border-color .12s ease, background .12s ease;
    }
    .g-item:hover{ transform: translateY(-1px); border-color: rgba(247,147,30,0.35); background: rgba(0,0,0,0.28); }
    .g-item img{ width:100%; height:100%; display:block; aspect-ratio:1/1; object-fit:cover; }

    .lightbox{
      position:fixed; inset:0; z-index:60;
      display:none;
    }
    .lightbox.open{ display:block; }
    .lb-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,0.72); }
    .lb-panel{
      position:relative;
      max-width:min(980px, 92vw);
      max-height: 86vh;
      margin: 7vh auto 0;
      border-radius: 18px;
      border:1px solid rgba(255,255,255,0.14);
      background: rgba(10,10,11,0.92);
      box-shadow: 0 30px 90px rgba(0,0,0,0.65);
      overflow:hidden;
    }
    .lb-panel img{ width:100%; height:auto; display:block; max-height:86vh; object-fit:contain; background:#000; }
    .lb-close{
      position:absolute; top:10px; right:10px;
      width:40px; height:40px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.92);
      font-size:18px; font-weight:900;
      cursor:pointer;
    }
    .lb-close:hover{ background: rgba(255,255,255,0.12); }

    @media (max-width: 920px){
      .gallery{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 560px){
      .gallery{ grid-template-columns: repeat(2, 1fr); }
    }

  
    .google-badge{
      text-align:center;
      background: linear-gradient(135deg, #F7931E, #ffbd6b);
      color:#1a1207;
      font-weight:900;
      padding:10px 15px;
      font-size:14px;
      letter-spacing:.3px;
    }
    .google-badge a{
      color:inherit;
      text-decoration:none;
    }
    .google-badge:hover{
      opacity:.95;
    }


    /* Premium Pricing */
    .pricing-wrap{ margin-top:6px; }
    .pricing-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .price-card{
      position:relative;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.14);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
      box-shadow: 0 18px 55px rgba(0,0,0,0.40);
      padding: 18px;
      overflow:hidden;
    }
    .price-card::before{
      content:"";
      position:absolute; inset:-80px -80px auto auto;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(247,147,30,0.28), transparent 62%);
      transform: rotate(15deg);
      pointer-events:none;
    }
    .price-card.popular{
      border-color: rgba(247,147,30,0.55);
      box-shadow: 0 22px 70px rgba(247,147,30,0.10), 0 18px 55px rgba(0,0,0,0.45);
    }
    .ribbon{
      position:absolute;
      top:14px; right:-42px;
      transform: rotate(12deg);
      background: linear-gradient(135deg, #F7931E, #ffbd6b);
      color:#1a1207;
      font-weight: 950;
      font-size: 12px;
      padding: 8px 52px;
      border-radius: 999px;
      box-shadow: 0 14px 30px rgba(247,147,30,0.18);
      z-index:2;
    }
    .pc-top{ position:relative; z-index:1; }
    .pc-title{ font-weight: 950; font-size: 16px; letter-spacing: .2px; }
    .pc-price{ display:flex; align-items:baseline; gap:8px; margin-top:8px; }
    .pc-amount{ font-size: 40px; font-weight: 980; letter-spacing:-0.8px; color: #F7931E; }
    .pc-unit{ color: rgba(255,255,255,0.72); font-weight: 800; }

    .pc-features{ position:relative; z-index:1; margin-top:10px; display:grid; gap:8px; }
    .pc-feature{ color: rgba(255,255,255,0.80); font-size: 14px; background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.10); padding: 10px 12px; border-radius: 14px; }

    .pc-actions{ position:relative; z-index:1; display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .pc-actions .btn{ flex: 1 1 160px; }

    .pricing-note{
      margin-top:14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.22);
      padding: 14px 16px;
      text-align:center;
    }
    .pn-title{ font-weight: 950; font-size: 16px; }
    .pn-text{ color: rgba(255,255,255,0.80); margin-top:6px; }

    .specials{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .special-card{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.18);
      padding: 14px 14px;
    }
    .sp-title{ font-weight: 950; }
    .sp-price{ margin-top:6px; color: rgba(255,255,255,0.82); }
    .sp-price b{ color:#F7931E; }

    @media (max-width: 920px){
      .pricing-grid{ grid-template-columns: 1fr; }
      .specials{ grid-template-columns: 1fr; }
      .ribbon{ right:-34px; }
    }

    /* Professional trust/review bar */
    .review-strip{
      margin-top:26px;
      border-radius:24px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.12);
      background:
        radial-gradient(420px 180px at 0% 0%, rgba(247,147,30,0.16), transparent 68%),
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
      box-shadow:0 24px 70px rgba(0,0,0,0.42);
      position:relative;
    }
    .review-strip::before{
      content:"";
      position:absolute;
      inset:0;
      border-top:5px solid var(--brand);
      pointer-events:none;
    }
    .review-strip-top{ display:none; }
    .review-strip-inner{
      display:grid;
      grid-template-columns: 1.25fr repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
      padding:22px;
    }
    .review-strip-lead{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:8px;
      color:#fff;
      font-weight:950;
      font-size: clamp(19px, 1.65vw, 26px);
      line-height:1.08;
      letter-spacing:-0.55px;
      max-width:13ch;
    }
    .review-strip-lead::after{
      content:"Trusted ratings for London, ON moving services";
      color:rgba(255,255,255,0.62);
      font-size:12px;
      line-height:1.35;
      font-weight:800;
      letter-spacing:0;
      max-width:24ch;
    }
    .review-item{
      display:grid;
      grid-template-columns:auto 1fr;
      align-items:center;
      gap:12px;
      min-width:0;
      padding:14px;
      border-radius:18px;
      background:rgba(0,0,0,0.24);
      border:1px solid rgba(255,255,255,0.10);
      box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .review-icon{
      width:46px;
      height:46px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      color:#fff;
      box-shadow:0 10px 22px rgba(0,0,0,0.20);
      font-size:0;
      position:relative;
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.10);
    }
    .review-icon::before{
      font-size:22px;
      line-height:1;
      color:#ffbd6b;
    }
    
    .review-icon.google{
      background:
        conic-gradient(
          #4285F4 0deg 90deg,
          #34A853 90deg 180deg,
          #FBBC05 180deg 270deg,
          #EA4335 270deg 360deg
        );
      position:relative;
      overflow:hidden;
    }
    .review-icon.google span{
      display:none;
    }
    .review-icon.google::after{
      content:"";
      position:absolute;
      inset:6px;
      border-radius:999px;
      background:#111;
    }
    .review-icon.google::before{
      content:"★";
      position:relative;
      z-index:2;
      color:#fff;
      font-size:18px;
      font-weight:900;
    }

    .review-icon.facebook{
      background:#1877F2;
      font-family:Arial, sans-serif;
    }
    .review-icon.facebook::before{
      content:"f";
      color:#fff;
      font-size:29px;
      font-weight:950;
      font-family:Arial, sans-serif;
    }
    .review-icon.homestars{
      clip-path:none;
      border-radius:14px;
      background:rgba(34,197,94,0.16);
      border-color:rgba(34,197,94,0.34);
    }
    .review-icon.homestars::before{
      content:"★";
      color:#22c55e;
      font-size:30px;
    }
    .review-icon.bbb{
      background:rgba(56,189,248,0.16);
      border-color:rgba(56,189,248,0.34);
      font-size:0;
      letter-spacing:0;
    }
    .review-icon.bbb::before{
      content:"✓";
      color:#38bdf8;
      font-size:28px;
      font-weight:950;
    }
    .review-score{
      font-size:22px;
      line-height:1;
      font-weight:950;
      color:#fff;
      margin-bottom:5px;
      white-space:nowrap;
      letter-spacing:-0.25px;
    }
    .review-note{
      font-size:12px;
      line-height:1.25;
      color:rgba(255,255,255,0.72);
      font-weight:800;
    }
    @media (max-width: 1100px){
      .review-strip-inner{
        grid-template-columns: 1fr 1fr;
      }
      .review-strip-lead{
        grid-column:1 / -1;
        max-width:100%;
      }
      .review-strip-lead::after{
        max-width:100%;
      }
    }
    @media (max-width: 640px){
      .review-strip{
        margin-top:18px;
        border-radius:20px;
      }
      .review-strip-inner{
        grid-template-columns:1fr;
        gap:10px;
        padding:16px;
      }
      .review-strip-lead{
        font-size:20px;
      }
      .review-item{
        padding:12px;
      }
      .review-icon{
        width:42px;
        height:42px;
      }
      .review-score{
        font-size:18px;
      }
      .review-note{
        font-size:11px;
      }
    }




    /* Premium services grid */
    .services-premium{
      display:grid;
      grid-template-columns: 1.05fr 1.55fr;
      gap:20px;
      align-items:start;
    }
    .services-premium-head h3{
      margin:0;
      font-size: clamp(30px, 3.2vw, 54px);
      letter-spacing:-1px;
      line-height:1.02;
    }
    .services-premium-head .sub{
      margin-top:10px;
      max-width:58ch;
      font-size: clamp(18px, 1.5vw, 22px);
      color:var(--muted);
    }
    .services-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:16px;
    }
    .service-card{
      position:relative;
      min-height:290px;
      border-radius:24px;
      overflow:hidden;
      background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border:1px solid rgba(255,255,255,0.10);
      box-shadow:var(--shadow);
      display:flex;
      align-items:flex-end;
    }
    .service-card.featured{
      border-color:rgba(247,147,30,0.55);
      box-shadow:0 18px 55px rgba(247,147,30,0.10), var(--shadow);
    }
    .service-card img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .service-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.82) 100%);
      pointer-events:none;
    }
    .service-card.empty-look::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.16));
      z-index:1;
    }
    .service-label{
      position:relative;
      z-index:2;
      width:100%;
      padding:18px 18px 20px;
      font-size:20px;
      line-height:1.18;
      font-weight:950;
      text-align:center;
      text-shadow:0 3px 14px rgba(0,0,0,0.45);
    }
    @media (max-width: 1200px){
      .services-premium{ grid-template-columns:1fr; }
      .services-grid{ grid-template-columns:repeat(2, 1fr); }
    }
    @media (max-width: 640px){
      .services-grid{ grid-template-columns:1fr; gap:12px; }
      .service-card{ min-height:240px; border-radius:20px; }
      .service-label{ font-size:18px; padding:14px 14px 16px; }
      .services-premium-head .sub{ font-size:16px; }
    }


@media (max-width: 640px){

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card{
    min-height: 140px;
    border-radius: 14px;
  }

  .service-card img{
    object-fit: cover;
  }

  .service-label{
    font-size: 14px;
    padding: 10px;
    line-height: 1.2;
  }

  #services .container{
    padding-top: 10px;
  }

  .services-premium-head h3{
    font-size: 26px;
  }

  .services-premium-head .sub{
    font-size: 14px;
    line-height: 1.3;
  }
}


    /* Premium hero carousel */
    .premium-carousel{
      position:relative;
      height:300px;
      margin-top:20px;
      border-radius:24px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.16);
      background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
      box-shadow:0 24px 70px rgba(0,0,0,0.48), 0 0 0 1px rgba(247,147,30,0.08) inset;
      isolation:isolate;
    }
    .premium-carousel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(360px 160px at 20% 0%, rgba(247,147,30,0.28), transparent 70%),
        linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.45));
      z-index:2;
      pointer-events:none;
    }
    .premium-carousel::after{
      content:"";
      position:absolute;
      inset:10px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,0.14);
      z-index:3;
      pointer-events:none;
    }
    .carousel-track,
    .carousel-slide{
      position:absolute;
      inset:0;
    }
    .carousel-slide{
      opacity:0;
      transform:scale(1.035);
      transition:opacity .55s ease, transform .8s ease;
    }
    .carousel-slide.active{
      opacity:1;
      transform:scale(1);
      z-index:1;
    }
    .carousel-slide img{
      width:100%;
      height:100%;
      display:block;
      object-fit:cover;
      object-position:center;
      filter:saturate(1.06) contrast(1.04);
    }
    .carousel-caption{
      position:absolute;
      left:18px;
      right:78px;
      bottom:18px;
      z-index:4;
      display:grid;
      gap:4px;
      max-width:390px;
      padding:14px 16px;
      border-radius:18px;
      background:linear-gradient(180deg, rgba(0,0,0,0.58), rgba(0,0,0,0.36));
      border:1px solid rgba(255,255,255,0.14);
      box-shadow:0 14px 35px rgba(0,0,0,0.35);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
    }
    .carousel-kicker{
      color:var(--brand);
      font-size:12px;
      font-weight:950;
      letter-spacing:.3px;
      text-transform:uppercase;
    }
    .carousel-caption strong{
      color:#fff;
      font-size:18px;
      line-height:1.12;
      letter-spacing:-.2px;
    }
    .carousel-btn{
      position:absolute;
      top:50%;
      z-index:5;
      transform:translateY(-50%);
      width:38px;
      height:38px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.18);
      background:rgba(0,0,0,0.38);
      color:#fff;
      font-size:28px;
      line-height:1;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 26px rgba(0,0,0,0.35);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
      transition:background .15s ease, transform .15s ease, border-color .15s ease;
    }
    .carousel-btn:hover{
      background:rgba(247,147,30,0.92);
      color:#1a1207;
      border-color:rgba(247,147,30,0.8);
      transform:translateY(-50%) scale(1.04);
    }
    .carousel-prev{ left:14px; }
    .carousel-next{ right:14px; }
    .carousel-dots{
      position:absolute;
      right:20px;
      bottom:20px;
      z-index:5;
      display:flex;
      gap:7px;
      padding:7px 8px;
      border-radius:999px;
      background:rgba(0,0,0,0.34);
      border:1px solid rgba(255,255,255,0.12);
      backdrop-filter:blur(8px);
      -webkit-backdrop-filter:blur(8px);
    }
    .carousel-dot{
      width:8px;
      height:8px;
      border-radius:999px;
      border:0;
      padding:0;
      background:rgba(255,255,255,0.46);
      cursor:pointer;
      transition:width .18s ease, background .18s ease;
    }
    .carousel-dot.active{
      width:24px;
      background:var(--brand);
    }
    @media (max-width: 640px){
      .premium-carousel{ height:240px; border-radius:20px; }
      .carousel-caption{ left:14px; right:56px; bottom:14px; padding:12px; }
      .carousel-caption strong{ font-size:15px; }
      .carousel-btn{ width:32px; height:32px; font-size:23px; }
      .carousel-prev{ left:10px; }
      .carousel-next{ right:10px; }
      .carousel-dots{ right:14px; bottom:14px; }
    }


/* Final carousel image visibility + speed fix */
.premium-carousel .carousel-track{
  position:absolute !important;
  inset:0 !important;
  height:100% !important;
}
.premium-carousel .carousel-slide{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  display:block !important;
  opacity:0 !important;
  visibility:hidden !important;
  z-index:0 !important;
  transform:scale(1.035);
  transition:opacity .35s ease, transform .55s ease, visibility .35s ease;
}
.premium-carousel .carousel-slide.active{
  opacity:1 !important;
  visibility:visible !important;
  z-index:2 !important;
  transform:scale(1);
}
.premium-carousel .carousel-slide img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
  object-position:center !important;
}


/* Mobile only: remove circled hero area */
@media (max-width: 640px){
  .hero .actions,
  .hero .micro,
  .hero .premium-carousel{
    display:none !important;
  }
}


    /* Hero quote form: stretch right card to match the left slideshow boundary */
    .hero .grid{
      align-items:stretch;
    }
    .hero .grid > .card{
      align-self:stretch;
      height:100%;
    }
    #quote form .btn-primary{
      margin-top:10px;
    }



    /* Quote form height: align bottom with the left slideshow */
    #quote{
      min-height:auto !important;
      height:auto;
      display:flex;
      flex-direction:column;
    }
    #quote form{
      flex:1;
      display:flex;
      flex-direction:column;
    }
    #quote textarea{
      min-height:105px !important;
      flex:1;
      resize:vertical;
    }
    #quote .fine{
      margin-top:10px;
    }
    #quote form .btn-primary{
      margin-top:10px;
    }
    @media (max-width: 920px){
      #quote{
        height:auto !important;
        min-height:auto !important;
      }
      #quote textarea{
        min-height:140px !important;
      }
    }


/* SEO Local Section */
.seo-local-section{
  position:relative;
  padding:46px 0 28px;
  overflow:hidden;
}
.seo-local-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(247,147,30,0.10), transparent 72%),
    radial-gradient(520px 240px at 100% 100%, rgba(247,147,30,0.06), transparent 72%);
  pointer-events:none;
}
.seo-local-grid{
  position:relative;
  z-index:1;
}
.seo-local-content{
  max-width:100%;
  margin:0 auto;
  padding:30px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(247,147,30,0.14), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow:0 20px 60px rgba(0,0,0,0.32);
}
.seo-kicker{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(247,147,30,0.12);
  border:1px solid rgba(247,147,30,0.30);
  color:#ffb347;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.6px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.seo-local-content h2{
  margin:0 0 16px;
  color:#fff;
  font-size:clamp(28px,3vw,42px);
  line-height:1.08;
  letter-spacing:-1px;
  font-weight:950;
}
.seo-local-content p{
  margin:0 0 14px;
  color:rgba(255,255,255,0.76);
  font-size:15px;
  line-height:1.7;
  font-weight:500;
}
.seo-feature-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:24px;
}
.seo-feature-item{
  padding:16px 18px;
  border-radius:16px;
  background:rgba(0,0,0,0.24);
  border:1px solid rgba(255,255,255,0.08);
  color:#fff;
  font-size:14px;
  font-weight:800;
}
@media (max-width:900px){
  .seo-local-section{padding:70px 0;}
  .seo-local-content{padding:28px;}
  .seo-feature-list{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .seo-local-content h2{font-size:34px;}
  .seo-local-content p{
    font-size:15px;
    line-height:1.7;
  }
  .seo-feature-list{grid-template-columns:1fr;}
}



/* Categorized collapsible FAQ */
.faq-pro{
  display:grid;
  gap:18px;
}
.faq-category-pro{
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(320px 140px at 0% 0%, rgba(247,147,30,0.10), transparent 72%),
    rgba(0,0,0,0.18);
}
.faq-category-pro h4{
  margin:0 0 14px;
  color:#fff;
  font-size:18px;
  font-weight:950;
}
.faq-category-pro details{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.20);
  border-radius:16px;
  padding:0;
  overflow:hidden;
}
.faq-category-pro details + details{
  margin-top:10px;
}
.faq-category-pro summary{
  cursor:pointer;
  list-style:none;
  padding:14px 16px;
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.faq-category-pro summary::-webkit-details-marker{
  display:none;
}
.faq-category-pro summary::after{
  content:"+";
  color:var(--brand);
  font-size:22px;
  line-height:1;
  font-weight:950;
}
.faq-category-pro details[open] summary::after{
  content:"–";
}
.faq-category-pro details[open] summary{
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.faq-category-pro p{
  margin:0;
  padding:14px 16px 16px;
  color:rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.75;
}
@media (max-width:640px){
  .faq-category-pro{
    padding:16px;
    border-radius:18px;
  }
  .faq-category-pro summary{
    font-size:14px;
  }
}


/* Areas We Serve Section */
.areas-section{
  padding:82px 0;
  position:relative;
  overflow:hidden;
}
.areas-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 8% 12%, rgba(247,147,30,0.14), transparent 70%),
    radial-gradient(520px 260px at 92% 88%, rgba(255,255,255,0.06), transparent 70%);
  pointer-events:none;
}
.areas-card{
  position:relative;
  z-index:1;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(0,0,0,0.20);
  box-shadow:0 26px 80px rgba(0,0,0,0.38);
  overflow:hidden;
}
.areas-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:linear-gradient(90deg, var(--brand), #ffbd6b);
}
.areas-inner{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:28px;
  padding:38px;
  align-items:center;
}
.areas-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(247,147,30,0.12);
  border:1px solid rgba(247,147,30,0.28);
  color:#ffb347;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:18px;
}
.areas-copy h2{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(34px,4vw,52px);
  line-height:1.04;
  letter-spacing:-1.3px;
  font-weight:950;
}
.areas-copy p{
  margin:0 0 22px;
  color:rgba(255,255,255,0.74);
  font-size:16px;
  line-height:1.75;
}
.areas-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}
.areas-stat{
  padding:14px 12px;
  border-radius:16px;
  background:rgba(0,0,0,0.24);
  border:1px solid rgba(255,255,255,0.09);
}
.areas-stat strong{
  display:block;
  color:#fff;
  font-size:22px;
  line-height:1;
  font-weight:950;
}
.areas-stat span{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,0.64);
  font-size:12px;
  font-weight:800;
}
.areas-map{
  position:relative;
  min-height:390px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 50% 50%, rgba(247,147,30,0.18), transparent 36%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.34));
  overflow:hidden;
}
.areas-map::before,
.areas-map::after{
  content:"";
  position:absolute;
  inset:42px;
  border:1px dashed rgba(255,255,255,0.14);
  border-radius:999px;
}
.areas-map::after{
  inset:92px;
  border-color:rgba(247,147,30,0.22);
}
.area-pin{
  position:absolute;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(0,0,0,0.56);
  border:1px solid rgba(255,255,255,0.14);
  color:#fff;
  font-size:13px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(0,0,0,0.30);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  white-space:nowrap;
}
.area-pin::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--brand);
  box-shadow:0 0 0 5px rgba(247,147,30,0.16);
}
.area-pin.main{
  padding:13px 16px;
  background:linear-gradient(135deg, var(--brand), #ffbd6b);
  color:#1a1207;
  border-color:rgba(247,147,30,0.55);
  font-size:15px;
}
.area-pin.main::before{
  background:#1a1207;
  box-shadow:0 0 0 5px rgba(26,18,7,0.14);
}
.area-pin.london{left:50%;top:48%;transform:translate(-50%,-50%);}
.area-pin.woodstock{left:13%;top:35%;}
.area-pin.stthomas{left:18%;bottom:22%;}
.area-pin.strathroy{right:12%;top:32%;}
.area-pin.ingersoll{left:36%;top:14%;}
.area-pin.komoka{right:16%;bottom:22%;}
.area-pin.surrounding{left:42%;bottom:10%;}
.areas-service-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.areas-service-list span{
  display:inline-flex;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.82);
  font-size:13px;
  font-weight:850;
}

.area-pin.aylmer{left:22%;top:58%;}
.area-pin.stratford{right:22%;top:14%;}
.area-pin.clinton{right:8%;top:8%;}
.area-pin.exeter{right:24%;top:24%;}
.area-pin.lucan{right:18%;top:42%;}
.area-pin.grandbend{right:2%;top:26%;}
.area-pin.goderich{right:1%;top:2%;}
.area-pin.sarnia{right:-2%;top:52%;}
.area-pin.dutton{left:8%;bottom:12%;}
.area-pin.westlorne{left:18%;bottom:6%;}
.area-pin.tillsonburg{left:30%;top:4%;}
.area-pin.kitchener{right:32%;top:2%;}
.area-pin.waterloo{right:28%;top:10%;}
.area-pin.cambridge{right:34%;top:18%;}

@media (max-width:920px){
  .areas-inner{
    grid-template-columns:1fr;
    padding:28px;
  }
  .areas-map{
    min-height:340px;
  }
}
@media (max-width:640px){
  .areas-section{
    padding:64px 0;
  }
  .areas-inner{
    padding:22px;
  }
  .areas-stats{
    grid-template-columns:1fr;
  }
  .areas-map{
    min-height:auto;
    display:grid;
    gap:10px;
    padding:18px;
  }
  .areas-map::before,
  .areas-map::after{
    display:none;
  }
  .area-pin,
  .area-pin.main{
    position:static;
    transform:none !important;
    justify-content:flex-start;
    width:100%;
  }
}


/* SEO-focused Why Us section */
.why-pro-section{
  padding:84px 0;
  position:relative;
  overflow:hidden;
}
.why-pro-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 10% 0%, rgba(247,147,30,0.13), transparent 70%),
    radial-gradient(520px 260px at 90% 100%, rgba(255,255,255,0.06), transparent 70%);
  pointer-events:none;
}
.why-pro-head{
  position:relative;
  z-index:1;
  max-width:820px;
  margin:0 auto 30px;
  text-align:center;
}
.why-pro-kicker{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(247,147,30,0.12);
  border:1px solid rgba(247,147,30,0.28);
  color:#ffb347;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:16px;
}
.why-pro-head h2{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(34px,4vw,52px);
  line-height:1.04;
  letter-spacing:-1.3px;
  font-weight:950;
}
.why-pro-head p{
  margin:0;
  color:rgba(255,255,255,0.74);
  font-size:16px;
  line-height:1.75;
}
.why-pro-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.why-pro-card{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow:0 20px 60px rgba(0,0,0,0.30);
  padding:24px;
  overflow:hidden;
  position:relative;
}
.why-pro-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg, var(--brand), #ffbd6b);
  opacity:.9;
}
.why-pro-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(247,147,30,0.13);
  border:1px solid rgba(247,147,30,0.28);
  color:#ffb347;
  font-size:23px;
  margin-bottom:16px;
}
.why-pro-card h3{
  margin:0 0 10px;
  color:#fff;
  font-size:20px;
  line-height:1.2;
  font-weight:950;
}
.why-pro-card p{
  margin:0;
  color:rgba(255,255,255,0.72);
  font-size:14px;
  line-height:1.75;
}
.why-pro-highlight{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(247,147,30,0.25);
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(247,147,30,0.16), transparent 72%),
    rgba(0,0,0,0.24);
}
.why-pro-pill{
  padding:16px;
  border-radius:18px;
  background:rgba(0,0,0,0.24);
  border:1px solid rgba(255,255,255,0.09);
}
.why-pro-pill strong{
  display:block;
  color:#fff;
  font-size:17px;
  font-weight:950;
  margin-bottom:5px;
}
.why-pro-pill span{
  color:rgba(255,255,255,0.68);
  font-size:13px;
  line-height:1.45;
}
@media (max-width:920px){
  .why-pro-grid{
    grid-template-columns:1fr 1fr;
  }
  .why-pro-highlight{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .why-pro-section{
    padding:68px 0;
  }
  .why-pro-grid{
    grid-template-columns:1fr;
  }
  .why-pro-card{
    padding:20px;
  }
}


/* Professional Google reviews section */
.google-reviews-pro{
  padding:78px 0;
  position:relative;
  overflow:hidden;
}
.google-reviews-pro::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 10% 10%, rgba(247,147,30,0.13), transparent 70%),
    radial-gradient(520px 240px at 90% 90%, rgba(255,255,255,0.055), transparent 70%);
  pointer-events:none;
}
.google-reviews-pro .container{
  position:relative;
  z-index:1;
}
.google-reviews-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:end;
  margin-bottom:24px;
}
.google-reviews-head h2{
  margin:0;
  color:#fff;
  font-size:clamp(34px,4vw,52px);
  line-height:1.04;
  letter-spacing:-1.3px;
  font-weight:950;
}
.google-reviews-head p{
  margin:12px 0 0;
  color:rgba(255,255,255,0.72);
  font-size:16px;
  line-height:1.65;
  max-width:720px;
}
.google-rating-card{
  min-width:240px;
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(247,147,30,0.30);
  background:
    radial-gradient(220px 100px at 0% 0%, rgba(247,147,30,0.22), transparent 70%),
    rgba(0,0,0,0.26);
  box-shadow:0 18px 55px rgba(0,0,0,0.30);
}
.google-rating-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.google-rating-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:
    conic-gradient(#4285F4 0deg 90deg,#34A853 90deg 180deg,#FBBC05 180deg 270deg,#EA4335 270deg 360deg);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.google-rating-icon::after{
  content:"";
  position:absolute;
  inset:7px;
  background:#111;
  border-radius:999px;
}
.google-rating-icon span{
  position:relative;
  z-index:2;
  color:#fff;
  font-weight:950;
  font-size:15px;
}
.google-rating-score{
  color:#fff;
  font-weight:950;
  font-size:30px;
  line-height:1;
}
.google-rating-stars{
  color:#ffbd6b;
  font-size:16px;
  letter-spacing:1px;
}
.google-rating-note{
  margin-top:8px;
  color:rgba(255,255,255,0.70);
  font-size:13px;
  font-weight:800;
}
.google-review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.google-review-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow:0 18px 55px rgba(0,0,0,0.30);
  position:relative;
  overflow:hidden;
}
.google-review-card::before{
  content:"“";
  position:absolute;
  right:18px;
  top:-8px;
  color:rgba(247,147,30,0.20);
  font-size:88px;
  line-height:1;
  font-weight:950;
}
.google-review-stars{
  color:#ffbd6b;
  letter-spacing:1px;
  font-size:15px;
  margin-bottom:14px;
}
.google-review-card p{
  margin:0;
  color:rgba(255,255,255,0.82);
  font-size:15px;
  line-height:1.75;
  position:relative;
  z-index:1;
}
.google-review-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.09);
  color:rgba(255,255,255,0.64);
  font-size:13px;
  font-weight:850;
}
.google-review-avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), #ffbd6b);
  color:#1a1207;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:950;
  margin-right:8px;
}
.google-review-name{
  display:flex;
  align-items:center;
}
.google-review-cta{
  margin-top:18px;
  display:flex;
  justify-content:center;
}
.google-review-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:16px;
  background:linear-gradient(135deg, var(--brand), #ffbd6b);
  color:#1a1207;
  font-weight:950;
  text-decoration:none;
  box-shadow:0 16px 36px rgba(247,147,30,0.18);
}
@media (max-width:920px){
  .google-reviews-head{
    grid-template-columns:1fr;
  }
  .google-rating-card{
    min-width:0;
  }
  .google-review-grid{
    grid-template-columns:1fr;
  }
}


/* Mobile only: hide the city tag list in Areas We Serve */
@media (max-width:640px){
  .areas-service-list{
    display:none !important;
  }
}


/* Desktop action wrapper */
.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* Mobile only: picture-matched header using the actual HTML structure */
@media (max-width:640px){
  header{
    background:#050505 !important;
    position:sticky !important;
    top:0 !important;
    z-index:1000 !important;
    border-bottom:1px solid rgba(255,255,255,0.08) !important;
  }

  header .container{
    width:100% !important;
    max-width:none !important;
    padding:0 18px !important;
  }

  .nav{
    position:relative !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    grid-template-rows:auto auto !important;
    gap:18px !important;
    align-items:center !important;
    padding:18px 0 22px !important;
  }

  .brand{
    grid-column:1 / 3 !important;
    grid-row:1 !important;
    width:100% !important;
    min-width:0 !important;
    display:grid !important;
    grid-template-columns:34% minmax(0,1fr) !important;
    gap:20px !important;
    align-items:center !important;
    padding-right:92px !important;
  }

  .brand > div:first-child{
    width:100% !important;
    height:auto !important;
  }

  .brand img{
    width:100% !important;
    height:auto !important;
    max-width:150px !important;
    min-width:110px !important;
    object-fit:contain !important;
    display:block !important;
  }

  .brand .name{
    color:#fff !important;
    font-size:clamp(22px,6.2vw,30px) !important;
    line-height:1.05 !important;
    font-weight:950 !important;
    letter-spacing:-0.35px !important;
    white-space:nowrap !important;
  }

  .brand .tag{
    margin-top:14px !important;
    color:rgba(255,255,255,0.82) !important;
    font-size:clamp(12px,3.35vw,16px) !important;
    line-height:1 !important;
    letter-spacing:clamp(2.6px,.85vw,4px) !important;
    font-weight:950 !important;
    white-space:nowrap !important;
  }

  .navlinks{
    display:none !important;
  }

  /* Let the buttons behave as grid items even though they are inside .nav-actions */
  .nav-actions{
    display:contents !important;
  }

  .mobile-menu-btn{
    position:absolute !important;
    top:28px !important;
    right:0 !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;
    width:74px !important;
    height:74px !important;
    border-radius:24px !important;
    border:1px solid rgba(255,255,255,0.22) !important;
    background:linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055)) !important;
    box-shadow:0 16px 34px rgba(0,0,0,0.42) !important;
    cursor:pointer !important;
    padding:0 !important;
    margin:0 !important;
    z-index:10 !important;
  }

  .mobile-menu-btn span{
    display:block !important;
    width:34px !important;
    height:4px !important;
    border-radius:99px !important;
    background:#fff !important;
    transition:transform .18s ease, opacity .18s ease !important;
  }

  .mobile-menu-btn.is-open{
    background:linear-gradient(135deg,#ff981f,#ffb34a) !important;
    border-color:rgba(247,147,30,.75) !important;
  }

  .mobile-menu-btn.is-open span{
    background:#111 !important;
  }

  .mobile-menu-btn.is-open span:nth-child(1){
    transform:translateY(11px) rotate(45deg) !important;
  }

  .mobile-menu-btn.is-open span:nth-child(2){
    opacity:0 !important;
  }

  .mobile-menu-btn.is-open span:nth-child(3){
    transform:translateY(-11px) rotate(-45deg) !important;
  }

  .nav-actions .btn{
    grid-row:2 !important;
    min-height:76px !important;
    width:100% !important;
    border-radius:24px !important;
    font-size:clamp(22px,5.8vw,27px) !important;
    line-height:1 !important;
    font-weight:950 !important;
    padding:0 16px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:14px !important;
    white-space:nowrap !important;
    text-decoration:none !important;
  }

  .nav-actions .btn-ghost{
    grid-column:1 / 2 !important;
    background:linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.035)) !important;
    border:1px solid rgba(255,255,255,0.22) !important;
    color:#fff !important;
    box-shadow:0 14px 34px rgba(0,0,0,.34) !important;
  }

  .nav-actions .btn-primary{
    grid-column:2 / 3 !important;
    background:linear-gradient(135deg,#ff981f,#ffb34a) !important;
    border:1px solid rgba(247,147,30,.72) !important;
    color:#111 !important;
    box-shadow:0 14px 34px rgba(247,147,30,.24) !important;
  }

  .nav-actions .btn-ghost::before{
    content:"☎" !important;
    font-size:1.18em !important;
    line-height:1 !important;
  }

  .nav-actions .btn-primary::before{
    content:"▤" !important;
    font-size:1.12em !important;
    line-height:1 !important;
  }

  .mobile-dropdown-menu{
    display:none;
    margin:0 18px 16px !important;
    padding:12px !important;
    border-radius:22px !important;
    border:1px solid rgba(255,255,255,.14) !important;
    background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04)) !important;
    box-shadow:0 18px 40px rgba(0,0,0,.42) !important;
  }

  .mobile-dropdown-menu.open{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .mobile-dropdown-menu a{
    min-height:50px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:12px !important;
    border-radius:15px !important;
    background:rgba(0,0,0,.28) !important;
    border:1px solid rgba(255,255,255,.10) !important;
    color:#fff !important;
    font-size:15px !important;
    font-weight:900 !important;
    text-decoration:none !important;
  }
}

@media (max-width:430px){
  header .container{
    padding:0 14px !important;
  }

  .nav{
    gap:16px 12px !important;
    padding:16px 0 18px !important;
  }

  .brand{
    grid-template-columns:34% minmax(0,1fr) !important;
    gap:14px !important;
    padding-right:76px !important;
  }

  .brand img{
    max-width:112px !important;
    min-width:92px !important;
  }

  .mobile-menu-btn{
    top:24px !important;
    width:64px !important;
    height:64px !important;
    border-radius:20px !important;
    gap:6px !important;
  }

  .mobile-menu-btn span{
    width:30px !important;
    height:3px !important;
  }

  .nav-actions .btn{
    min-height:64px !important;
    border-radius:20px !important;
    font-size:20px !important;
    padding:0 10px !important;
    gap:10px !important;
  }
}

@media (max-width:360px){
  .brand{
    padding-right:66px !important;
    gap:10px !important;
  }

  .brand img{
    max-width:94px !important;
    min-width:80px !important;
  }

  .brand .name{
    font-size:18px !important;
  }

  .brand .tag{
    font-size:10px !important;
    letter-spacing:2px !important;
  }

  .mobile-menu-btn{
    width:56px !important;
    height:56px !important;
    border-radius:18px !important;
  }

  .nav-actions .btn{
    min-height:58px !important;
    font-size:17px !important;
  }
}


/* Mobile fix: prevent hamburger from overlapping the business name */
@media (max-width:640px){
  .brand{
    padding-right:112px !important;
    grid-template-columns:32% minmax(0,1fr) !important;
  }

  .brand .name{
    font-size:clamp(20px,5.2vw,27px) !important;
    max-width:100% !important;
    overflow:visible !important;
  }

  .brand .tag{
    font-size:clamp(11px,2.9vw,15px) !important;
    letter-spacing:clamp(2px,.65vw,3.4px) !important;
  }

  .mobile-menu-btn{
    right:4px !important;
  }
}

@media (max-width:430px){
  .brand{
    padding-right:84px !important;
    grid-template-columns:31% minmax(0,1fr) !important;
  }

  .brand .name{
    font-size:19px !important;
  }

  .brand .tag{
    font-size:10.5px !important;
    letter-spacing:2.1px !important;
  }

  .mobile-menu-btn{
    right:0 !important;
  }
}

@media (max-width:380px){
  .brand{
    padding-right:72px !important;
  }

  .brand .name{
    font-size:16.5px !important;
  }

  .brand .tag{
    font-size:9px !important;
    letter-spacing:1.6px !important;
  }
}


/* Mobile tweak: bigger logo + slightly smaller hamburger */
@media (max-width:640px){
  .brand{
    grid-template-columns:36% minmax(0,1fr) !important;
    padding-right:98px !important;
  }

  .brand img{
    max-width:170px !important;
    min-width:128px !important;
  }

  .mobile-menu-btn{
    width:64px !important;
    height:64px !important;
    border-radius:20px !important;
    top:30px !important;
  }

  .mobile-menu-btn span{
    width:28px !important;
    height:3px !important;
  }
}

@media (max-width:430px){
  .brand{
    grid-template-columns:38% minmax(0,1fr) !important;
    padding-right:76px !important;
  }

  .brand img{
    max-width:132px !important;
    min-width:108px !important;
  }

  .mobile-menu-btn{
    width:56px !important;
    height:56px !important;
    border-radius:18px !important;
    top:24px !important;
  }

  .mobile-menu-btn span{
    width:24px !important;
    height:3px !important;
  }
}

@media (max-width:380px){
  .brand img{
    max-width:112px !important;
    min-width:92px !important;
  }

  .mobile-menu-btn{
    width:50px !important;
    height:50px !important;
    border-radius:16px !important;
  }

  .mobile-menu-btn span{
    width:22px !important;
  }
}


/* Final mobile header spacing fix */
@media (max-width:640px){
  .brand{
    padding-right:88px !important;
    grid-template-columns:38% minmax(0,1fr) !important;
    gap:16px !important;
  }

  .brand img{
    max-width:176px !important;
    min-width:132px !important;
  }

  .brand .name{
    font-size:clamp(18px,4.8vw,25px) !important;
    line-height:1.02 !important;
  }

  .mobile-menu-btn{
    width:54px !important;
    height:54px !important;
    border-radius:18px !important;
    top:32px !important;
    right:2px !important;
  }

  .mobile-menu-btn span{
    width:22px !important;
    height:2.5px !important;
  }
}

@media (max-width:430px){
  .brand{
    padding-right:70px !important;
    grid-template-columns:40% minmax(0,1fr) !important;
    gap:12px !important;
  }

  .brand img{
    max-width:138px !important;
    min-width:110px !important;
  }

  .brand .name{
    font-size:18px !important;
  }

  .brand .tag{
    font-size:10px !important;
    letter-spacing:1.9px !important;
  }

  .mobile-menu-btn{
    width:48px !important;
    height:48px !important;
    border-radius:16px !important;
    top:24px !important;
  }

  .mobile-menu-btn span{
    width:20px !important;
    height:2.5px !important;
  }
}

@media (max-width:380px){
  .brand{
    padding-right:62px !important;
  }

  .brand img{
    max-width:118px !important;
    min-width:92px !important;
  }

  .brand .name{
    font-size:15.5px !important;
  }

  .mobile-menu-btn{
    width:44px !important;
    height:44px !important;
    border-radius:14px !important;
  }

  .mobile-menu-btn span{
    width:18px !important;
  }
}


/* Mobile fix: equal button spacing and prevent overflow */
@media (max-width:640px){
  .nav{
    gap:16px !important;
  }

  .nav-actions .btn{
    min-height:68px !important;
    font-size:clamp(18px,4.7vw,22px) !important;
    padding:0 10px !important;
    border-radius:20px !important;
    gap:10px !important;
    width:100% !important;
    box-sizing:border-box !important;
  }

  .nav-actions .btn-ghost{
    margin-right:0 !important;
  }

  .nav-actions .btn-primary{
    margin-left:0 !important;
  }

  .nav-actions .btn-ghost::before{
    font-size:22px !important;
  }

  .nav-actions .btn-primary::before{
    font-size:20px !important;
  }
}

@media (max-width:430px){
  .nav{
    gap:14px !important;
  }

  .nav-actions .btn{
    min-height:60px !important;
    font-size:18px !important;
    padding:0 8px !important;
    border-radius:18px !important;
    gap:8px !important;
  }

  .nav-actions .btn-ghost::before{
    font-size:20px !important;
  }

  .nav-actions .btn-primary::before{
    font-size:18px !important;
  }
}

@media (max-width:380px){
  .nav-actions .btn{
    min-height:56px !important;
    font-size:16px !important;
    padding:0 6px !important;
  }
}


/* Modern premium Google rating banner - picture style */
.modern-rating-banner{
  padding:18px 0 !important;
  background:radial-gradient(520px 180px at 50% 0%, rgba(247,147,30,0.14), transparent 72%), #050505 !important;
  border-top:1px solid rgba(247,147,30,0.22) !important;
  border-bottom:1px solid rgba(247,147,30,0.18) !important;
}
.modern-rating-banner .container{
  display:block !important;
}
.modern-rating-card{
  width:100%;
  min-height:116px;
  display:grid;
  grid-template-columns:220px 1fr auto auto;
  align-items:center;
  gap:26px;
  padding:0 28px 0 0;
  border-radius:28px;
  border:1px solid rgba(247,147,30,0.75);
  background:radial-gradient(400px 120px at 52% 50%, rgba(255,210,86,0.10), transparent 68%), linear-gradient(90deg, #f7931e 0%, #ffad38 16%, #111 16.3%, #080808 100%);
  box-shadow:0 22px 65px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.16), 0 0 42px rgba(247,147,30,0.18);
  overflow:hidden;
  position:relative;
  text-decoration:none !important;
}
.modern-rating-card::after{
  content:"";
  position:absolute;
  right:0; top:0; bottom:0;
  width:34%;
  background:radial-gradient(circle at 100% 50%, rgba(247,147,30,0.14), transparent 66%), repeating-radial-gradient(circle at 100% 50%, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px);
  opacity:.45;
  pointer-events:none;
}
.modern-google-panel{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#ff971f,#ffb247);
  clip-path:polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
  padding-right:26px;
  position:relative;
  z-index:1;
}
.modern-google-mark{
  width:78px;
  height:78px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:conic-gradient(#4285F4 0deg 90deg,#34A853 90deg 180deg,#FBBC05 180deg 270deg,#EA4335 270deg 360deg);
  box-shadow:0 0 0 10px rgba(0,0,0,0.46), 0 14px 30px rgba(0,0,0,0.38), 0 0 24px rgba(255,255,255,0.18);
  position:relative;
}
.modern-google-mark::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:999px;
  background:#111;
}
.modern-google-mark span{
  position:relative;
  z-index:1;
  color:#fff;
  font-family:Arial, sans-serif;
  font-size:38px;
  font-weight:950;
}
.modern-stars{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#ffd558;
  font-size:38px;
  line-height:1;
  text-shadow:0 2px 0 rgba(0,0,0,0.20), 0 0 18px rgba(255,187,54,0.62);
}
.modern-stars span{
  filter:drop-shadow(0 9px 12px rgba(0,0,0,0.42));
}
.modern-rating-copy{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:14px;
  padding-left:26px;
  border-left:1px solid rgba(255,255,255,0.24);
  white-space:nowrap;
}
.modern-rating-copy strong{
  color:#ff9f22;
  font-size:52px;
  line-height:1;
  font-weight:950;
  letter-spacing:-1.8px;
}
.modern-rating-copy span{
  color:#fff;
  text-transform:uppercase;
  font-size:25px;
  line-height:1;
  font-weight:950;
  letter-spacing:.5px;
}
.modern-review-pill{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:286px;
  padding:14px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,#ff981f,#ffbd62);
  border:2px solid rgba(255,255,255,0.88);
  color:#111;
  font-size:20px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 14px 30px rgba(247,147,30,0.25);
}
.modern-check{
  width:32px;
  height:32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:#ffae38;
  font-size:22px;
  font-weight:950;
}
@media (max-width:980px){
  .modern-rating-card{
    grid-template-columns:150px 1fr auto;
    gap:18px;
    padding-right:18px;
  }
  .modern-review-pill{
    grid-column:2 / 4;
    width:100%;
    min-width:0;
  }
  .modern-google-mark{width:66px;height:66px;}
  .modern-stars{font-size:30px;}
  .modern-rating-copy strong{font-size:40px;}
  .modern-rating-copy span{font-size:19px;}
}
@media (max-width:640px){
  .modern-rating-banner{padding:12px 0 !important;}
  .modern-rating-card{
    min-height:126px;
    grid-template-columns:86px 1fr auto;
    grid-template-rows:auto auto;
    gap:12px;
    padding:0 12px 12px 0;
    border-radius:22px;
    background:radial-gradient(240px 100px at 45% 36%, rgba(255,210,86,0.12), transparent 72%), linear-gradient(90deg,#f7931e 0%,#ffad38 20%,#111 20.3%,#080808 100%);
  }
  .modern-google-panel{
    grid-row:1 / 3;
    align-self:stretch;
    padding-right:12px;
    clip-path:none;
    border-radius:20px 0 0 20px;
  }
  .modern-google-mark{
    width:54px;
    height:54px;
    box-shadow:0 0 0 6px rgba(0,0,0,.46), 0 10px 22px rgba(0,0,0,.34);
  }
  .modern-google-mark::before{inset:7px;}
  .modern-google-mark span{font-size:26px;}
  .modern-stars{
    grid-column:2 / 3;
    grid-row:1;
    justify-content:flex-start;
    gap:5px;
    font-size:24px;
    margin-top:16px;
  }
  .modern-rating-copy{
    grid-column:3 / 4;
    grid-row:1;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    padding-left:12px;
  }
  .modern-rating-copy strong{font-size:34px;}
  .modern-rating-copy span{font-size:15px; line-height:1.15;}
  .modern-review-pill{
    grid-column:2 / 4;
    grid-row:2;
    width:100%;
    min-width:0;
    padding:11px 12px;
    font-size:15px;
    border-width:1px;
  }
  .modern-check{width:24px;height:24px;font-size:16px;}
}
@media (max-width:380px){
  .modern-rating-card{
    grid-template-columns:70px 1fr auto;
    gap:9px;
  }
  .modern-google-mark{width:46px;height:46px;}
  .modern-stars{font-size:18px; gap:3px;}
  .modern-rating-copy strong{font-size:27px;}
  .modern-rating-copy span{font-size:12px;}
  .modern-review-pill{font-size:12px;}
}


/* Final fix: rating banner no-overlap layout */
.modern-rating-card{
  display:grid !important;
  grid-template-columns:150px minmax(220px, 1fr) minmax(260px, auto) !important;
  grid-template-areas:
    "google stars rating"
    "google stars reviews" !important;
  gap:10px 24px !important;
  align-items:center !important;
  min-height:130px !important;
  padding:18px 24px 18px 0 !important;
}

.modern-google-panel{
  grid-area:google !important;
  height:100% !important;
  min-height:130px !important;
}

.modern-stars{
  grid-area:stars !important;
  justify-content:center !important;
  min-width:0 !important;
}

.modern-rating-copy{
  grid-area:rating !important;
  padding-left:0 !important;
  border-left:0 !important;
  justify-content:flex-start !important;
}

.modern-review-pill{
  grid-area:reviews !important;
  min-width:0 !important;
  width:100% !important;
  justify-self:stretch !important;
  box-sizing:border-box !important;
}

@media (max-width:980px){
  .modern-rating-card{
    grid-template-columns:120px 1fr !important;
    grid-template-areas:
      "google stars"
      "google rating"
      "google reviews" !important;
    gap:12px 18px !important;
    padding:16px 18px 16px 0 !important;
  }

  .modern-google-panel{
    min-height:160px !important;
  }

  .modern-stars{
    justify-content:flex-start !important;
  }

  .modern-rating-copy{
    flex-direction:row !important;
    align-items:baseline !important;
    gap:10px !important;
  }
}

@media (max-width:640px){
  .modern-rating-card{
    grid-template-columns:76px 1fr !important;
    grid-template-areas:
      "google stars"
      "google rating"
      "google reviews" !important;
    gap:8px 12px !important;
    min-height:142px !important;
    padding:12px 12px 12px 0 !important;
  }

  .modern-google-panel{
    min-height:142px !important;
    padding-right:8px !important;
  }

  .modern-stars{
    margin-top:0 !important;
    font-size:21px !important;
    gap:4px !important;
    justify-content:flex-start !important;
  }

  .modern-rating-copy{
    flex-direction:row !important;
    align-items:baseline !important;
    gap:8px !important;
    padding-left:0 !important;
  }

  .modern-rating-copy strong{
    font-size:30px !important;
  }

  .modern-rating-copy span{
    font-size:13px !important;
    white-space:normal !important;
  }

  .modern-review-pill{
    font-size:13px !important;
    padding:10px 10px !important;
    justify-content:center !important;
  }
}

@media (max-width:380px){
  .modern-rating-card{
    grid-template-columns:64px 1fr !important;
    gap:7px 9px !important;
  }

  .modern-google-panel{
    min-height:132px !important;
  }

  .modern-stars{
    font-size:17px !important;
  }

  .modern-rating-copy strong{
    font-size:25px !important;
  }

  .modern-rating-copy span{
    font-size:11px !important;
  }

  .modern-review-pill{
    font-size:11px !important;
    gap:6px !important;
  }
}


/* Thin single-line premium rating banner */
.modern-rating-banner{
  padding:8px 0 !important;
}

.modern-rating-card{
  min-height:72px !important;
  grid-template-columns:92px auto 1fr auto !important;
  grid-template-areas:"google stars rating reviews" !important;
  gap:14px !important;
  padding:0 18px 0 0 !important;
  border-radius:20px !important;
  align-items:center !important;
}

.modern-google-panel{
  min-height:72px !important;
  padding-right:10px !important;
}

.modern-google-mark{
  width:44px !important;
  height:44px !important;
  box-shadow:0 0 0 5px rgba(0,0,0,.4), 0 8px 18px rgba(0,0,0,.28) !important;
}

.modern-google-mark::before{
  inset:6px !important;
}

.modern-google-mark span{
  font-size:22px !important;
}

.modern-stars{
  font-size:22px !important;
  gap:4px !important;
  justify-content:flex-start !important;
}

.modern-rating-copy{
  flex-direction:row !important;
  align-items:baseline !important;
  gap:8px !important;
  white-space:nowrap !important;
}

.modern-rating-copy strong{
  font-size:30px !important;
}

.modern-rating-copy span{
  font-size:15px !important;
}

.modern-review-pill{
  width:auto !important;
  min-width:auto !important;
  padding:8px 14px !important;
  font-size:13px !important;
  border-width:1px !important;
  justify-self:end !important;
}

.modern-check{
  width:20px !important;
  height:20px !important;
  font-size:13px !important;
}

@media (max-width:640px){
  .modern-rating-banner{
    padding:6px 0 !important;
  }

  .modern-rating-card{
    min-height:58px !important;
    grid-template-columns:58px auto 1fr !important;
    grid-template-areas:"google stars rating" !important;
    gap:8px !important;
    padding:0 10px 0 0 !important;
    border-radius:16px !important;
  }

  .modern-google-panel{
    min-height:58px !important;
    padding-right:6px !important;
  }

  .modern-google-mark{
    width:34px !important;
    height:34px !important;
    box-shadow:0 0 0 4px rgba(0,0,0,.4), 0 6px 14px rgba(0,0,0,.24) !important;
  }

  .modern-google-mark::before{
    inset:5px !important;
  }

  .modern-google-mark span{
    font-size:17px !important;
  }

  .modern-stars{
    font-size:15px !important;
    gap:2px !important;
  }

  .modern-rating-copy{
    gap:5px !important;
  }

  .modern-rating-copy strong{
    font-size:21px !important;
  }

  .modern-rating-copy span{
    font-size:10px !important;
    line-height:1 !important;
  }

  .modern-review-pill{
    display:none !important;
  }
}


/* Fix rating banner star visibility */
.modern-rating-card{
  grid-template-columns:92px minmax(150px, auto) minmax(160px, 1fr) auto !important;
  overflow:visible !important;
}

.modern-stars{
  min-width:150px !important;
  width:150px !important;
  overflow:visible !important;
  flex-shrink:0 !important;
  white-space:nowrap !important;
  letter-spacing:0 !important;
  padding:0 4px !important;
  box-sizing:border-box !important;
}

.modern-stars span{
  display:inline-block !important;
  flex:0 0 auto !important;
}

@media (max-width:640px){
  .modern-rating-card{
    grid-template-columns:58px minmax(92px, auto) minmax(0, 1fr) !important;
    overflow:visible !important;
  }

  .modern-stars{
    min-width:92px !important;
    width:92px !important;
    font-size:14px !important;
    gap:2px !important;
    padding:0 2px !important;
    overflow:visible !important;
  }
}

@media (max-width:380px){
  .modern-rating-card{
    grid-template-columns:54px minmax(82px, auto) minmax(0, 1fr) !important;
    gap:6px !important;
  }

  .modern-stars{
    min-width:82px !important;
    width:82px !important;
    font-size:12.5px !important;
    gap:1px !important;
  }
}


/* Remove empty space under top rating banner */
.modern-rating-banner{
  margin-bottom:0 !important;
}

.modern-rating-banner + *{
  margin-top:0 !important;
  padding-top:0 !important;
}

.hero,
section.hero,
.hero-section{
  margin-top:0 !important;
  padding-top:18px !important;
}

@media (max-width:640px){
  .hero,
  section.hero,
  .hero-section{
    padding-top:10px !important;
  }
}


/* Move stars slightly to the right in rating banner */
.modern-stars{
  padding-left:14px !important;
}

@media (max-width:640px){
  .modern-stars{
    padding-left:10px !important;
  }
}

@media (max-width:380px){
  .modern-stars{
    padding-left:8px !important;
  }
}


/* Shift stars further right */
.modern-stars{
  padding-left:24px !important;
}

@media (max-width:640px){
  .modern-stars{
    padding-left:18px !important;
  }
}

@media (max-width:380px){
  .modern-stars{
    padding-left:14px !important;
  }
}


/* Professional streamlined rating banner redesign */
.modern-rating-banner{
  padding:10px 0 !important;
  background:
    radial-gradient(500px 120px at 50% -20%, rgba(247,147,30,0.12), transparent 70%),
    #050505 !important;
  border-top:1px solid rgba(247,147,30,0.14) !important;
  border-bottom:1px solid rgba(247,147,30,0.10) !important;
}

.modern-rating-card{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  min-height:64px !important;
  padding:0 18px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#111 0%,#181818 55%,#101010 100%) !important;
  border:1px solid rgba(247,147,30,0.35) !important;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.modern-rating-card::after{
  display:none !important;
}

.modern-google-panel{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:none !important;
  clip-path:none !important;
  min-height:auto !important;
  padding:0 !important;
  flex:0 0 auto !important;
}

.modern-google-mark{
  width:42px !important;
  height:42px !important;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.03),
    0 8px 20px rgba(0,0,0,0.28) !important;
}

.modern-google-mark::before{
  inset:5px !important;
}

.modern-google-mark span{
  font-size:20px !important;
}

.modern-stars{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:2px !important;
  padding:0 !important;
  min-width:auto !important;
  width:auto !important;
  font-size:18px !important;
  color:#ffd34d !important;
  text-shadow:0 0 10px rgba(255,211,77,0.22) !important;
  flex:0 0 auto !important;
}

.modern-rating-copy{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  flex:1 1 auto !important;
  padding:0 !important;
  border:0 !important;
  white-space:nowrap !important;
}

.modern-rating-copy strong{
  font-size:28px !important;
  color:#ff9d22 !important;
  letter-spacing:-1px !important;
}

.modern-rating-copy span{
  font-size:15px !important;
  color:#fff !important;
  text-transform:none !important;
  opacity:.92 !important;
  letter-spacing:0 !important;
}

.modern-review-pill{
  min-width:auto !important;
  width:auto !important;
  padding:8px 14px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f7931e,#ffb347) !important;
  border:1px solid rgba(255,255,255,0.12) !important;
  font-size:13px !important;
  color:#111 !important;
  font-weight:900 !important;
  text-transform:none !important;
  box-shadow:none !important;
  justify-self:auto !important;
  flex:0 0 auto !important;
}

.modern-check{
  width:18px !important;
  height:18px !important;
  font-size:11px !important;
  background:#111 !important;
  color:#ffb347 !important;
}

@media (max-width:640px){
  .modern-rating-banner{
    padding:8px 0 !important;
  }

  .modern-rating-card{
    gap:10px !important;
    min-height:56px !important;
    padding:0 12px !important;
    border-radius:15px !important;
  }

  .modern-google-mark{
    width:34px !important;
    height:34px !important;
  }

  .modern-google-mark span{
    font-size:16px !important;
  }

  .modern-stars{
    font-size:13px !important;
    gap:1px !important;
  }

  .modern-rating-copy{
    gap:5px !important;
    min-width:0 !important;
  }

  .modern-rating-copy strong{
    font-size:21px !important;
  }

  .modern-rating-copy span{
    font-size:11px !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
  }

  .modern-review-pill{
    padding:6px 10px !important;
    font-size:10px !important;
  }

  .modern-check{
    width:15px !important;
    height:15px !important;
    font-size:9px !important;
  }
}

@media (max-width:420px){
  .modern-rating-card{
    gap:8px !important;
    padding:0 10px !important;
  }

  .modern-stars{
    font-size:11px !important;
  }

  .modern-rating-copy strong{
    font-size:18px !important;
  }

  .modern-rating-copy span{
    font-size:9px !important;
  }

  .modern-review-pill{
    font-size:9px !important;
    padding:5px 8px !important;
  }
}


/* Alternative premium rating banner design */
.modern-rating-banner{
  padding:12px 0 !important;
  background:
    linear-gradient(90deg, rgba(247,147,30,0.10), transparent 25%, transparent 75%, rgba(247,147,30,0.10)),
    #050505 !important;
  border-top:1px solid rgba(255,255,255,0.06) !important;
  border-bottom:1px solid rgba(255,255,255,0.06) !important;
}

.modern-rating-card{
  min-height:70px !important;
  display:grid !important;
  grid-template-columns:auto 1fr auto !important;
  align-items:center !important;
  gap:18px !important;
  padding:12px 18px !important;
  border-radius:22px !important;
  background:
    radial-gradient(240px 90px at 8% 50%, rgba(247,147,30,0.20), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)) !important;
  border:1px solid rgba(255,255,255,0.12) !important;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  position:relative !important;
  overflow:hidden !important;
  text-decoration:none !important;
}

.modern-rating-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:linear-gradient(180deg,#ffb347,#f7931e);
}

.modern-rating-card::after{
  content:"";
  position:absolute;
  right:-60px;
  top:-80px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:rgba(247,147,30,0.10);
  pointer-events:none;
}

.modern-google-panel{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  background:none !important;
  clip-path:none !important;
  padding:0 !important;
  min-height:0 !important;
  position:relative !important;
  z-index:1 !important;
}

.modern-google-panel::after{
  content:"430+ Google Reviews";
  color:rgba(255,255,255,0.72);
  font-size:12px;
  font-weight:850;
  white-space:nowrap;
}

.modern-google-mark{
  width:42px !important;
  height:42px !important;
  box-shadow:0 10px 22px rgba(0,0,0,0.30) !important;
}

.modern-google-mark::before{
  inset:5px !important;
}

.modern-google-mark span{
  font-size:20px !important;
}

.modern-stars{
  position:relative !important;
  z-index:1 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:3px !important;
  font-size:21px !important;
  color:#ffd34d !important;
  padding:0 !important;
  min-width:0 !important;
  width:auto !important;
  text-shadow:0 0 12px rgba(255,211,77,0.32) !important;
}

.modern-rating-copy{
  position:relative !important;
  z-index:1 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
  padding:0 !important;
  border:0 !important;
  white-space:nowrap !important;
}

.modern-rating-copy strong{
  color:#ffb347 !important;
  font-size:34px !important;
  line-height:1 !important;
  font-weight:950 !important;
  letter-spacing:-1.2px !important;
}

.modern-rating-copy span{
  color:#fff !important;
  font-size:16px !important;
  font-weight:900 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
}

.modern-review-pill{
  position:absolute !important;
  right:18px !important;
  bottom:8px !important;
  width:auto !important;
  min-width:0 !important;
  padding:0 !important;
  background:none !important;
  border:0 !important;
  box-shadow:none !important;
  color:rgba(255,255,255,0.66) !important;
  font-size:12px !important;
  font-weight:850 !important;
  text-transform:none !important;
}

.modern-check{
  display:none !important;
}

@media (max-width:700px){
  .modern-rating-card{
    grid-template-columns:auto 1fr !important;
    grid-template-rows:auto auto !important;
    gap:8px 12px !important;
    min-height:84px !important;
    padding:12px 14px !important;
  }

  .modern-google-panel{
    grid-column:1 / 2 !important;
    grid-row:1 / 3 !important;
    flex-direction:column !important;
    gap:4px !important;
    align-items:center !important;
  }

  .modern-google-panel::after{
    content:"430+ Reviews";
    font-size:9px !important;
  }

  .modern-google-mark{
    width:36px !important;
    height:36px !important;
  }

  .modern-google-mark span{
    font-size:17px !important;
  }

  .modern-stars{
    grid-column:2 / 3 !important;
    grid-row:1 !important;
    justify-content:flex-start !important;
    font-size:17px !important;
    gap:2px !important;
  }

  .modern-rating-copy{
    grid-column:2 / 3 !important;
    grid-row:2 !important;
    justify-content:flex-start !important;
    gap:7px !important;
  }

  .modern-rating-copy strong{
    font-size:25px !important;
  }

  .modern-rating-copy span{
    font-size:12px !important;
  }

  .modern-review-pill{
    right:12px !important;
    bottom:7px !important;
    font-size:10px !important;
  }
}

@media (max-width:380px){
  .modern-stars{
    font-size:14px !important;
  }

  .modern-rating-copy strong{
    font-size:21px !important;
  }

  .modern-rating-copy span{
    font-size:10px !important;
  }
}


/* Emphasize review count */
.modern-review-pill{
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  opacity:1 !important;
  color:#ffcf73 !important;
  font-weight:900 !important;
}

.modern-review-pill::before{
  content:"★";
  color:#ffd34d;
}


/* New badge-style Google rating banner */
.rating-badge-banner{
  padding:10px 0 !important;
  background:
    radial-gradient(360px 120px at 15% 50%, rgba(247,147,30,0.13), transparent 70%),
    #050505 !important;
  border-top:1px solid rgba(255,255,255,0.06) !important;
  border-bottom:1px solid rgba(255,255,255,0.06) !important;
}

.rating-badge-card{
  display:grid !important;
  grid-template-columns:1.1fr 1fr auto !important;
  align-items:center !important;
  gap:18px !important;
  min-height:74px !important;
  padding:12px 14px !important;
  border-radius:22px !important;
  text-decoration:none !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025)),
    #0b0b0b !important;
  border:1px solid rgba(247,147,30,0.30) !important;
  box-shadow:
    0 14px 36px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  position:relative !important;
  overflow:hidden !important;
}

.rating-badge-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg,#ffbd62,#f7931e);
}

.rating-badge-card::after{
  content:"";
  position:absolute;
  right:-60px;
  top:-70px;
  width:180px;
  height:180px;
  border-radius:999px;
  background:rgba(247,147,30,0.10);
  pointer-events:none;
}

.rating-badge-left,
.rating-badge-middle,
.rating-badge-right{
  position:relative;
  z-index:1;
}

.rating-badge-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.rating-google-circle{
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4285F4;
  font-family:Arial, sans-serif;
  font-size:26px;
  font-weight:950;
  box-shadow:0 10px 22px rgba(0,0,0,0.28);
  flex:0 0 auto;
}

.rating-badge-text{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.rating-badge-text strong{
  color:#fff;
  font-size:17px;
  line-height:1;
  font-weight:950;
  white-space:nowrap;
}

.rating-badge-text span{
  color:rgba(255,255,255,0.62);
  font-size:12px;
  line-height:1;
  font-weight:850;
  white-space:nowrap;
}

.rating-badge-middle{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:0;
}

.rating-stars{
  color:#ffd34d;
  font-size:19px;
  letter-spacing:1px;
  text-shadow:0 0 12px rgba(255,211,77,0.26);
  white-space:nowrap;
}

.rating-score{
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:850;
  white-space:nowrap;
}

.rating-score strong{
  color:#ffad38;
  font-size:26px;
  font-weight:950;
  letter-spacing:-0.7px;
  margin-right:4px;
}

.rating-badge-right{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#f7931e,#ffbd62);
  color:#111;
  box-shadow:0 10px 24px rgba(247,147,30,0.20);
  white-space:nowrap;
}

.rating-badge-right strong{
  font-size:22px;
  line-height:1;
  font-weight:950;
}

.rating-badge-right span{
  font-size:12px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
}

@media (max-width:760px){
  .rating-badge-card{
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto;
    gap:10px 12px !important;
    min-height:92px !important;
  }

  .rating-badge-left{
    grid-column:1 / 2;
    grid-row:1;
  }

  .rating-badge-right{
    grid-column:2 / 3;
    grid-row:1;
  }

  .rating-badge-middle{
    grid-column:1 / 3;
    grid-row:2;
    justify-content:flex-start;
    padding-left:58px;
  }
}

@media (max-width:430px){
  .rating-badge-banner{
    padding:8px 0 !important;
  }

  .rating-badge-card{
    border-radius:18px !important;
    padding:10px 11px !important;
    gap:8px 9px !important;
  }

  .rating-google-circle{
    width:38px;
    height:38px;
    border-radius:13px;
    font-size:22px;
  }

  .rating-badge-text strong{
    font-size:14px;
  }

  .rating-badge-text span{
    font-size:10px;
  }

  .rating-badge-right{
    padding:8px 10px;
    gap:5px;
  }

  .rating-badge-right strong{
    font-size:18px;
  }

  .rating-badge-right span{
    font-size:9px;
  }

  .rating-badge-middle{
    padding-left:50px;
    gap:8px;
  }

  .rating-stars{
    font-size:14px;
    letter-spacing:0;
  }

  .rating-score{
    font-size:11px;
  }

  .rating-score strong{
    font-size:20px;
  }
}


/* Glassmorphism rating banner */
.glass-rating-banner{
  padding:12px 0 !important;
  background:
    radial-gradient(circle at top left, rgba(247,147,30,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(247,147,30,0.10), transparent 30%),
    #050505 !important;
}

.glass-rating-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:82px;
  padding:14px 20px;
  border-radius:26px;
  text-decoration:none;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow:hidden;
  position:relative;
}

.glass-rating-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(247,147,30,0.14), transparent 30%, transparent 70%, rgba(247,147,30,0.08));
  pointer-events:none;
}

.glass-left,
.glass-center,
.glass-right{
  position:relative;
  z-index:1;
}

.glass-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.glass-google-icon{
  width:50px;
  height:50px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4285F4;
  font-size:28px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
  flex-shrink:0;
}

.glass-rating-info{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.glass-title{
  color:#fff;
  font-size:17px;
  font-weight:900;
  line-height:1;
}

.glass-subtitle{
  color:rgba(255,255,255,0.66);
  font-size:12px;
  font-weight:700;
}

.glass-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.glass-stars{
  color:#ffd34d;
  font-size:20px;
  letter-spacing:1px;
  text-shadow:0 0 12px rgba(255,211,77,0.35);
}

.glass-score{
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.glass-right{
  min-width:96px;
  padding:10px 14px;
  border-radius:18px;
  background:linear-gradient(135deg,#f7931e,#ffb84f);
  text-align:center;
  color:#111;
  box-shadow:0 10px 22px rgba(247,147,30,0.24);
}

.glass-review-number{
  font-size:26px;
  line-height:1;
  font-weight:950;
}

.glass-review-text{
  margin-top:3px;
  font-size:11px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1px;
}

@media (max-width:760px){
  .glass-rating-card{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:14px;
    min-height:auto;
  }

  .glass-left{
    justify-content:flex-start;
  }

  .glass-center{
    flex-direction:row;
    justify-content:flex-start;
    gap:10px;
  }

  .glass-right{
    width:100%;
    min-width:0;
  }
}

@media (max-width:430px){
  .glass-rating-banner{
    padding:8px 0 !important;
  }

  .glass-rating-card{
    border-radius:20px;
    padding:12px;
    gap:10px;
  }

  .glass-google-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:23px;
  }

  .glass-title{
    font-size:14px;
  }

  .glass-subtitle{
    font-size:10px;
  }

  .glass-stars{
    font-size:15px;
    letter-spacing:0;
  }

  .glass-score{
    font-size:11px;
  }

  .glass-right{
    padding:8px 10px;
    border-radius:14px;
  }

  .glass-review-number{
    font-size:21px;
  }

  .glass-review-text{
    font-size:9px;
  }
}


/* Animated one-line mascot rating banner */
.mascot-rating-banner{
  padding:9px 0 !important;
  background:
    linear-gradient(90deg, rgba(247,147,30,0.12), transparent 24%, transparent 76%, rgba(247,147,30,0.12)),
    #050505 !important;
  border-top:1px solid rgba(255,255,255,0.06) !important;
  border-bottom:1px solid rgba(255,255,255,0.06) !important;
}

.mascot-rating-strip{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:9px 16px;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:
    radial-gradient(220px 90px at 10% 50%, rgba(247,147,30,0.22), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border:1px solid rgba(247,147,30,0.26);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.07);
  overflow:hidden;
  position:relative;
}

.mascot-rating-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transform:translateX(-120%);
  animation:mascotShine 3.8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes mascotShine{
  0%, 45%{transform:translateX(-120%);}
  70%, 100%{transform:translateX(120%);}
}

.mascot-truck{
  width:78px;
  height:38px;
  flex:0 0 auto;
  display:inline-block;
  position:relative;
  animation:mascotBounce 1.8s ease-in-out infinite;
}

@keyframes mascotBounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-3px);}
}

.mascot-truck::before{
  content:"";
  position:absolute;
  left:5px;
  top:9px;
  width:44px;
  height:23px;
  border-radius:9px 8px 7px 7px;
  background:linear-gradient(135deg,#f7931e,#ffbd62);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.35);
}

.mascot-truck::after{
  content:"";
  position:absolute;
  left:45px;
  top:14px;
  width:25px;
  height:18px;
  border-radius:5px 10px 6px 4px;
  background:linear-gradient(135deg,#ffb347,#f7931e);
}

.mascot-face{
  position:absolute;
  left:12px;
  top:9px;
  z-index:2;
  font-size:16px;
  line-height:1;
}

.mascot-box{
  position:absolute;
  left:34px;
  top:11px;
  z-index:2;
  width:20px;
  height:18px;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#4285F4;
  font-family:Arial,sans-serif;
  font-size:12px;
  font-weight:950;
}

.mascot-wheel{
  position:absolute;
  bottom:1px;
  width:12px;
  height:12px;
  border-radius:999px;
  background:#111;
  border:3px solid #ffbd62;
  animation:wheelSpin .8s linear infinite;
}

@keyframes wheelSpin{
  to{transform:rotate(360deg);}
}

.mascot-wheel.w1{left:16px;}
.mascot-wheel.w2{left:54px;}

.mascot-copy{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  white-space:nowrap;
  min-width:0;
}

.mascot-copy strong{
  color:#fff;
  font-size:17px;
  font-weight:950;
  letter-spacing:-0.2px;
}

.mascot-stars{
  color:#ffd34d;
  font-size:17px;
  letter-spacing:1px;
  text-shadow:0 0 12px rgba(255,211,77,0.32);
}

.mascot-reviews{
  padding:7px 11px;
  border-radius:999px;
  background:linear-gradient(135deg,#f7931e,#ffbd62);
  color:#111;
  font-size:13px;
  font-weight:950;
}

.mascot-line{
  color:rgba(255,255,255,0.70);
  font-size:13px;
  font-weight:850;
  white-space:nowrap;
}

@media (max-width:700px){
  .mascot-rating-strip{
    gap:10px;
    justify-content:flex-start;
    padding:8px 10px;
    min-height:52px;
  }

  .mascot-truck{
    width:62px;
    height:33px;
  }

  .mascot-truck::before{
    width:35px;
    height:20px;
    top:8px;
  }

  .mascot-truck::after{
    left:36px;
    top:12px;
    width:22px;
    height:16px;
  }

  .mascot-face{
    left:10px;
    top:8px;
    font-size:13px;
  }

  .mascot-box{
    left:27px;
    top:10px;
    width:17px;
    height:15px;
    font-size:10px;
  }

  .mascot-wheel{
    width:10px;
    height:10px;
    border-width:2px;
  }

  .mascot-wheel.w1{left:13px;}
  .mascot-wheel.w2{left:45px;}

  .mascot-copy{
    flex:1;
    gap:6px;
    justify-content:flex-start;
  }

  .mascot-copy strong{
    font-size:13px;
  }

  .mascot-stars{
    font-size:12px;
    letter-spacing:0;
  }

  .mascot-reviews{
    padding:5px 7px;
    font-size:10px;
  }

  .mascot-line{
    display:none;
  }
}

@media (max-width:390px){
  .mascot-copy strong{
    font-size:11px;
  }

  .mascot-stars{
    font-size:10px;
  }

  .mascot-reviews{
    font-size:9px;
    padding:4px 6px;
  }
}


/* Animated marquee rating banner */
.marquee-rating-banner{
  padding:0 !important;
  height:54px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg, #050505, #111 45%, #050505),
    #050505 !important;
  border-top:1px solid rgba(247,147,30,0.24);
  border-bottom:1px solid rgba(247,147,30,0.18);
  box-shadow:0 10px 28px rgba(0,0,0,0.28);
}

.marquee-track{
  width:100%;
  display:flex;
  align-items:center;
  overflow:hidden;
  position:relative;
}

.marquee-track::before,
.marquee-track::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:70px;
  z-index:2;
  pointer-events:none;
}

.marquee-track::before{
  left:0;
  background:linear-gradient(90deg,#050505,transparent);
}

.marquee-track::after{
  right:0;
  background:linear-gradient(270deg,#050505,transparent);
}

.marquee-content{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:max-content;
  padding:0 18px;
  color:#fff;
  font-size:15px;
  font-weight:850;
  white-space:nowrap;
  animation:gypseeMarquee 26s linear infinite;
}

@keyframes gypseeMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(-100%);}
}

.marquee-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  color:#4285F4;
  font-family:Arial, sans-serif;
  font-size:12px;
  font-weight:950;
  letter-spacing:.6px;
  box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

.marquee-stars{
  color:#ffd34d;
  font-size:18px;
  letter-spacing:1px;
  text-shadow:0 0 12px rgba(255,211,77,0.30);
}

.marquee-content strong{
  color:#ffad38;
  font-size:17px;
  font-weight:950;
}

.marquee-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:#f7931e;
  box-shadow:0 0 12px rgba(247,147,30,0.75);
}

@media (hover:hover){
  .marquee-rating-banner:hover .marquee-content{
    animation-play-state:paused;
  }
}

@media (max-width:640px){
  .marquee-rating-banner{
    height:46px;
  }

  .marquee-content{
    gap:14px;
    padding:0 14px;
    font-size:12px;
    animation-duration:22s;
  }

  .marquee-badge{
    height:26px;
    padding:0 9px;
    font-size:10px;
  }

  .marquee-stars{
    font-size:14px;
  }

  .marquee-content strong{
    font-size:13px;
  }

  .marquee-track::before,
  .marquee-track::after{
    width:38px;
  }
}


/* Exact Google review banner */
.exact-google-banner{padding:16px 0!important;background:#050505!important;border-top:1px solid rgba(247,147,30,.22)!important;border-bottom:1px solid rgba(247,147,30,.16)!important}
.exact-google-card{min-height:108px;display:grid;grid-template-columns:214px minmax(320px,1fr) 1px minmax(420px,auto);align-items:center;gap:28px;padding:0 28px 0 0;border-radius:20px;border:1.5px solid rgba(247,147,30,.84);background:radial-gradient(420px 140px at 48% 50%,rgba(255,197,57,.09),transparent 68%),radial-gradient(260px 160px at 100% 50%,rgba(247,147,30,.12),transparent 72%),linear-gradient(90deg,#f7931e 0%,#ffad38 15.8%,#0d0d0d 16%,#050505 100%);box-shadow:0 16px 50px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.16),0 0 32px rgba(247,147,30,.2);overflow:hidden;text-decoration:none;position:relative}
.exact-google-card:before{content:"";position:absolute;left:160px;top:0;bottom:0;width:72px;background:#050505;transform:skewX(-14deg);z-index:0}
.exact-google-card:after{content:"";position:absolute;right:0;top:0;bottom:0;width:32%;background:radial-gradient(circle at 100% 50%,rgba(247,147,30,.13),transparent 68%),repeating-radial-gradient(circle at 100% 50%,rgba(255,255,255,.045) 0 1px,transparent 1px 8px);opacity:.42;pointer-events:none}
.exact-google-left,.exact-google-stars,.exact-google-divider,.exact-google-copy{position:relative;z-index:1}
.exact-google-left{height:100%;display:flex;align-items:center;justify-content:center;padding-left:10px}
.exact-google-logo{width:74px;height:74px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:conic-gradient(#4285F4 0deg 90deg,#34A853 90deg 180deg,#FBBC05 180deg 270deg,#EA4335 270deg 360deg);box-shadow:0 0 0 9px rgba(0,0,0,.44),0 14px 28px rgba(0,0,0,.34),0 0 20px rgba(255,255,255,.16);position:relative}
.exact-google-logo:before{content:"";position:absolute;inset:10px;border-radius:999px;background:#111}
.exact-google-logo:after{content:"G";position:absolute;z-index:2;color:#fff;font-family:Arial,sans-serif;font-size:38px;font-weight:950}
.exact-google-stars{display:flex;align-items:center;justify-content:center;gap:10px;color:#ffd34d;font-size:38px;line-height:1;text-shadow:0 2px 0 rgba(0,0,0,.2),0 0 16px rgba(255,191,42,.58)}
.exact-google-stars span{display:inline-block;filter:drop-shadow(0 9px 10px rgba(0,0,0,.36))}
.exact-google-divider{width:1px;height:70px;background:rgba(255,255,255,.28)}
.exact-google-copy{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:12px}
.exact-google-title{display:flex;align-items:center;gap:18px;white-space:nowrap}
.exact-google-title strong{color:#ff9f22;font-size:50px;line-height:1;font-weight:950;letter-spacing:-1.7px}
.exact-google-title span{color:#fff;font-size:26px;line-height:1;font-weight:950;text-transform:uppercase;letter-spacing:.3px}
.exact-google-pill{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-width:338px;padding:11px 20px;border-radius:999px;background:linear-gradient(135deg,#ff981f,#ffbd62);border:2px solid rgba(255,255,255,.86);color:#111;font-size:20px;line-height:1;font-weight:950;text-transform:uppercase;white-space:nowrap;box-shadow:0 12px 26px rgba(247,147,30,.22)}
.exact-google-check{width:30px;height:30px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#111;color:#ffae38;font-size:20px;font-weight:950}
@media(max-width:980px){.exact-google-card{grid-template-columns:140px 1fr 1px 1fr;gap:18px;min-height:98px}.exact-google-card:before{left:102px;width:54px}.exact-google-logo{width:60px;height:60px}.exact-google-logo:before{inset:8px}.exact-google-logo:after{font-size:30px}.exact-google-stars{font-size:28px;gap:6px}.exact-google-title strong{font-size:38px}.exact-google-title span{font-size:18px}.exact-google-pill{min-width:240px;font-size:15px;padding:10px 14px}}
@media(max-width:640px){.exact-google-banner{padding:10px 0!important}.exact-google-card{min-height:92px;grid-template-columns:74px 1fr auto;grid-template-rows:auto auto;gap:8px 12px;padding:10px 12px 10px 0;border-radius:18px;background:radial-gradient(230px 100px at 42% 45%,rgba(255,197,57,.1),transparent 70%),linear-gradient(90deg,#f7931e 0%,#ffad38 20%,#0d0d0d 20.4%,#050505 100%)}.exact-google-card:before{left:58px;width:30px;transform:skewX(-12deg)}.exact-google-left{grid-row:1/3;grid-column:1;padding-left:0}.exact-google-logo{width:46px;height:46px;box-shadow:0 0 0 5px rgba(0,0,0,.42),0 8px 18px rgba(0,0,0,.3)}.exact-google-logo:before{inset:6px}.exact-google-logo:after{font-size:23px}.exact-google-stars{grid-column:2;grid-row:1;justify-content:flex-start;font-size:18px;gap:2px}.exact-google-divider{display:none}.exact-google-copy{grid-column:2/4;grid-row:2;gap:7px}.exact-google-title{position:absolute;right:0;top:-34px;gap:6px}.exact-google-title strong{font-size:26px}.exact-google-title span{font-size:12px;line-height:1.05}.exact-google-pill{min-width:0;width:100%;font-size:12px;padding:8px 10px;border-width:1px;gap:8px}.exact-google-check{width:21px;height:21px;font-size:14px}}
@media(max-width:380px){.exact-google-card{grid-template-columns:62px 1fr auto;gap:7px 9px}.exact-google-card:before{left:50px}.exact-google-logo{width:40px;height:40px}.exact-google-logo:after{font-size:20px}.exact-google-stars{font-size:15px;gap:1px}.exact-google-title strong{font-size:22px}.exact-google-title span{font-size:10px}.exact-google-pill{font-size:10px}}


/* Mobile menu burger functional fix */
@media (max-width:640px){
  .mobile-menu-btn{
    pointer-events:auto !important;
    cursor:pointer !important;
    z-index:9999 !important;
  }

  .mobile-dropdown-menu{
    display:none !important;
    margin:0 14px 16px !important;
    padding:12px !important;
    border-radius:20px !important;
    border:1px solid rgba(255,255,255,0.14) !important;
    background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)) !important;
    box-shadow:0 18px 40px rgba(0,0,0,0.42) !important;
    position:relative !important;
    z-index:9998 !important;
  }

  .mobile-dropdown-menu.open{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
  }

  .mobile-dropdown-menu a{
    min-height:50px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:12px !important;
    border-radius:15px !important;
    background:rgba(0,0,0,0.28) !important;
    border:1px solid rgba(255,255,255,0.10) !important;
    color:#fff !important;
    font-size:15px !important;
    font-weight:900 !important;
    text-decoration:none !important;
  }

  .mobile-menu-btn.is-open span:nth-child(1){
    transform:translateY(9px) rotate(45deg) !important;
  }

  .mobile-menu-btn.is-open span:nth-child(2){
    opacity:0 !important;
  }

  .mobile-menu-btn.is-open span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg) !important;
  }
}


/* Reliable expandable mobile menu fix */
.mobile-dropdown-menu{
  display:none !important;
}

.mobile-dropdown-menu.open{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:10px !important;
  margin:0 14px 16px !important;
  padding:12px !important;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,0.14) !important;
  background:#111 !important;
  box-shadow:0 18px 40px rgba(0,0,0,0.42) !important;
  position:relative !important;
  z-index:99999 !important;
}

.mobile-dropdown-menu a{
  min-height:50px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:12px !important;
  border-radius:15px !important;
  background:rgba(255,255,255,0.06) !important;
  border:1px solid rgba(255,255,255,0.10) !important;
  color:#fff !important;
  font-size:15px !important;
  font-weight:900 !important;
  text-decoration:none !important;
}

.mobile-menu-btn{
  pointer-events:auto !important;
  cursor:pointer !important;
  z-index:100000 !important;
}

.mobile-menu-btn.is-open span:nth-child(1){
  transform:translateY(9px) rotate(45deg) !important;
}

.mobile-menu-btn.is-open span:nth-child(2){
  opacity:0 !important;
}

.mobile-menu-btn.is-open span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg) !important;
}


/* CSS-only mobile menu toggle: reliable fix */
.mobile-menu-checkbox{
  position:absolute !important;
  opacity:0 !important;
  width:1px !important;
  height:1px !important;
  pointer-events:none !important;
}

.mobile-menu-btn{
  pointer-events:auto !important;
  cursor:pointer !important;
  z-index:100000 !important;
}

.mobile-dropdown-menu{
  display:none !important;
}

header:has(#mobileMenuToggle:checked) .mobile-dropdown-menu{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:10px !important;
  margin:0 14px 16px !important;
  padding:12px !important;
  border-radius:20px !important;
  border:1px solid rgba(255,255,255,0.14) !important;
  background:#111 !important;
  box-shadow:0 18px 40px rgba(0,0,0,0.42) !important;
  position:relative !important;
  z-index:99999 !important;
}

.mobile-dropdown-menu a{
  min-height:50px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:12px !important;
  border-radius:15px !important;
  background:rgba(255,255,255,0.06) !important;
  border:1px solid rgba(255,255,255,0.10) !important;
  color:#fff !important;
  font-size:15px !important;
  font-weight:900 !important;
  text-decoration:none !important;
}

#mobileMenuToggle:checked + .mobile-menu-btn{
  background:linear-gradient(135deg,#ff981f,#ffb34a) !important;
  border-color:rgba(247,147,30,0.75) !important;
}

#mobileMenuToggle:checked + .mobile-menu-btn span{
  background:#111 !important;
}

#mobileMenuToggle:checked + .mobile-menu-btn span:nth-child(1){
  transform:translateY(9px) rotate(45deg) !important;
}

#mobileMenuToggle:checked + .mobile-menu-btn span:nth-child(2){
  opacity:0 !important;
}

#mobileMenuToggle:checked + .mobile-menu-btn span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg) !important;
}


/* Desktop only: make quote form fully fill container */
@media (min-width: 1024px){
  .quote-card,
  .quote-form,
  .hero-form,
  .form-card{
    height:100% !important;
    min-height:760px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:space-between !important;
  }

  .quote-card textarea,
  .quote-form textarea,
  .hero-form textarea,
  .form-card textarea{
    min-height:180px !important;
  }

  .quote-card .form-fields,
  .quote-form .form-fields,
  .hero-form .form-fields,
  .form-card .form-fields{
    flex:1 !important;
  }
}







/* Final override: match provided Google review banner image */
.exact-google-banner{
  padding:18px 0 !important;
  background:#030303 !important;
  border-top:0 !important;
  border-bottom:0 !important;
}
.exact-google-banner .container{
  max-width:1280px !important;
}
.exact-google-card{
  min-height:214px !important;
  width:100% !important;
  display:grid !important;
  grid-template-columns:250px minmax(460px,1fr) 1px minmax(540px,auto) !important;
  align-items:center !important;
  gap:34px !important;
  padding:0 88px 0 0 !important;
  border-radius:20px !important;
  border:1.5px solid rgba(247,147,30,.95) !important;
  background:
    radial-gradient(500px 160px at 48% 50%, rgba(255,194,52,.11), transparent 70%),
    radial-gradient(380px 190px at 100% 50%, rgba(247,147,30,.14), transparent 72%),
    linear-gradient(90deg,#f7931e 0%,#ffad38 17.2%,#0b0b0b 17.35%,#050505 100%) !important;
  box-shadow:0 0 30px rgba(247,147,30,.24), 0 22px 60px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.18) !important;
  overflow:hidden !important;
  position:relative !important;
  text-decoration:none !important;
}
.exact-google-card:before{
  content:"" !important;
  position:absolute !important;
  left:190px !important;
  top:0 !important;
  bottom:0 !important;
  width:84px !important;
  background:#050505 !important;
  transform:skewX(-14deg) !important;
  z-index:0 !important;
}
.exact-google-card:after{
  content:"" !important;
  position:absolute !important;
  right:0 !important;
  top:0 !important;
  bottom:0 !important;
  width:34% !important;
  background:
    radial-gradient(circle at 100% 50%, rgba(247,147,30,.16), transparent 68%),
    repeating-radial-gradient(circle at 100% 50%, rgba(255,255,255,.045) 0 1px, transparent 1px 8px) !important;
  opacity:.50 !important;
  pointer-events:none !important;
}
.exact-google-left,.exact-google-stars,.exact-google-divider,.exact-google-copy{position:relative !important;z-index:1 !important;}
.exact-google-left{height:100% !important;display:flex !important;align-items:center !important;justify-content:center !important;padding-left:12px !important;}
.exact-google-logo{
  width:116px !important;
  height:116px !important;
  border-radius:999px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:conic-gradient(#4285F4 0deg 90deg,#34A853 90deg 180deg,#FBBC05 180deg 270deg,#EA4335 270deg 360deg) !important;
  box-shadow:0 0 0 18px rgba(0,0,0,.46),0 18px 36px rgba(0,0,0,.38),0 0 28px rgba(255,255,255,.16) !important;
  position:relative !important;
}
.exact-google-logo:before{content:"" !important;position:absolute !important;inset:16px !important;border-radius:999px !important;background:#111 !important;}
.exact-google-logo:after{content:"G" !important;position:absolute !important;z-index:2 !important;color:#fff !important;font-family:Arial,sans-serif !important;font-size:62px !important;font-weight:950 !important;line-height:1 !important;}
.exact-google-stars{display:flex !important;align-items:center !important;justify-content:center !important;gap:14px !important;color:#ffd558 !important;font-size:70px !important;line-height:1 !important;text-shadow:0 2px 0 rgba(0,0,0,.22),0 0 22px rgba(255,191,42,.68) !important;white-space:nowrap !important;}
.exact-google-stars span{display:inline-block !important;filter:drop-shadow(0 9px 12px rgba(0,0,0,.42)) !important;}
.exact-google-divider{width:1px !important;height:144px !important;background:rgba(255,255,255,.32) !important;}
.exact-google-copy{display:flex !important;flex-direction:column !important;align-items:flex-start !important;justify-content:center !important;gap:24px !important;}
.exact-google-title{display:flex !important;align-items:center !important;gap:28px !important;white-space:nowrap !important;}
.exact-google-title strong{color:#ff9f22 !important;font-size:72px !important;line-height:1 !important;font-weight:950 !important;letter-spacing:-2px !important;}
.exact-google-title span{color:#fff !important;font-size:37px !important;line-height:1 !important;font-weight:950 !important;text-transform:uppercase !important;letter-spacing:.4px !important;}
.exact-google-pill{display:inline-flex !important;align-items:center !important;justify-content:center !important;gap:16px !important;min-width:438px !important;padding:16px 28px !important;border-radius:999px !important;background:linear-gradient(135deg,#ff981f,#ffbd62) !important;border:2px solid rgba(255,255,255,.9) !important;color:#111 !important;font-size:27px !important;line-height:1 !important;font-weight:950 !important;text-transform:uppercase !important;white-space:nowrap !important;box-shadow:0 14px 30px rgba(247,147,30,.25) !important;}
.exact-google-check{width:36px !important;height:36px !important;border-radius:999px !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;background:#111 !important;color:#ffae38 !important;font-size:25px !important;font-weight:950 !important;}
@media(max-width:1180px){
  .exact-google-card{grid-template-columns:170px minmax(250px,1fr) 1px minmax(360px,auto) !important;gap:20px !important;min-height:142px !important;padding-right:28px !important;}
  .exact-google-card:before{left:128px !important;width:58px !important;}
  .exact-google-logo{width:72px !important;height:72px !important;box-shadow:0 0 0 10px rgba(0,0,0,.46),0 12px 26px rgba(0,0,0,.34) !important;}
  .exact-google-logo:before{inset:10px !important}.exact-google-logo:after{font-size:38px !important;}
  .exact-google-stars{font-size:38px !important;gap:8px !important;}
  .exact-google-divider{height:84px !important;}
  .exact-google-title strong{font-size:50px !important;}.exact-google-title span{font-size:25px !important;}.exact-google-pill{min-width:310px;font-size:19px !important;padding:12px 20px !important;}
}
@media(max-width:760px){
  .exact-google-banner{padding:10px 0 !important;}
  .exact-google-card{min-height:96px !important;grid-template-columns:78px 1fr auto !important;grid-template-rows:auto auto !important;gap:8px 12px !important;padding:10px 12px 10px 0 !important;border-radius:18px !important;background:radial-gradient(230px 100px at 42% 45%,rgba(255,197,57,.10),transparent 70%),linear-gradient(90deg,#f7931e 0%,#ffad38 20%,#0d0d0d 20.4%,#050505 100%) !important;}
  .exact-google-card:before{left:60px !important;width:30px !important;transform:skewX(-12deg) !important;}
  .exact-google-left{grid-row:1/3 !important;grid-column:1 !important;padding-left:0 !important;}
  .exact-google-logo{width:48px !important;height:48px !important;box-shadow:0 0 0 5px rgba(0,0,0,.42),0 8px 18px rgba(0,0,0,.30) !important;}
  .exact-google-logo:before{inset:6px !important}.exact-google-logo:after{font-size:24px !important;}
  .exact-google-stars{grid-column:2 !important;grid-row:1 !important;justify-content:flex-start !important;font-size:19px !important;gap:2px !important;}
  .exact-google-divider{display:none !important;}
  .exact-google-copy{grid-column:2/4 !important;grid-row:2 !important;gap:7px !important;}
  .exact-google-title{position:absolute !important;right:0 !important;top:-35px !important;gap:6px !important;}
  .exact-google-title strong{font-size:27px !important;}.exact-google-title span{font-size:12px !important;line-height:1.05 !important;}
  .exact-google-pill{min-width:0 !important;width:100% !important;font-size:12px !important;padding:8px 10px !important;border-width:1px !important;gap:8px !important;}
  .exact-google-check{width:21px !important;height:21px !important;font-size:14px !important;}
}

/* Final override: make the hero quote form fill the full right-side container */
.hero .grid{align-items:stretch !important;}
.hero .grid > div{height:100% !important;}
#quote.card{
  height:100% !important;
  min-height:100% !important;
  display:flex !important;
  flex-direction:column !important;
}
#quote form{
  flex:1 1 auto !important;
  height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
}
#quote form > .row{flex:0 0 auto !important;}
#quote form > div:has(#details){flex:1 1 auto !important;display:flex !important;flex-direction:column !important;min-height:0 !important;}
#quote textarea#details{flex:1 1 auto !important;min-height:190px !important;height:100% !important;resize:vertical !important;}
#quote input,#quote select{min-height:48px !important;}
#quote .fine{margin-top:auto !important;}
@media(min-width:1024px){
  #quote.card{min-height:100% !important;}
  #quote textarea#details{min-height:230px !important;}
}
@media(max-width:920px){
  #quote.card{height:auto !important;}
  #quote form{height:auto !important;}
  #quote textarea#details{min-height:140px !important;height:auto !important;}
}

/* FINAL desktop-only override — shrink Google review banner */
@media (min-width: 1024px){

  .exact-google-banner{
    padding:10px 0 !important;
  }

  .exact-google-banner .container{
    max-width:1120px !important;
  }

  .exact-google-card{
    max-width:1120px !important;
    width:100% !important;
    margin:0 auto !important;

    min-height:78px !important;
    padding:0 18px 0 0 !important;

    display:grid !important;
    grid-template-columns:
      150px
      minmax(220px,1fr)
      1px
      minmax(300px,auto) !important;

    gap:18px !important;
    border-radius:16px !important;
  }

  .exact-google-card:before{
    left:112px !important;
    width:48px !important;
  }

  .exact-google-logo{
    width:54px !important;
    height:54px !important;
    box-shadow:
      0 0 0 6px rgba(0,0,0,.44),
      0 10px 22px rgba(0,0,0,.34),
      0 0 16px rgba(255,255,255,.14) !important;
  }

  .exact-google-logo:before{
    inset:7px !important;
  }

  .exact-google-logo:after{
    font-size:28px !important;
  }

  .exact-google-stars{
    font-size:28px !important;
    gap:5px !important;
  }

  .exact-google-divider{
    height:48px !important;
  }

  .exact-google-copy{
    gap:9px !important;
  }

  .exact-google-title{
    gap:12px !important;
  }

  .exact-google-title strong{
    font-size:36px !important;
  }

  .exact-google-title span{
    font-size:18px !important;
  }

  .exact-google-pill{
    min-width:250px !important;
    padding:9px 14px !important;
    font-size:15px !important;
    gap:9px !important;
  }

  .exact-google-check{
    width:22px !important;
    height:22px !important;
    font-size:14px !important;
  }
}



/* Desktop-only redesigned compact Google banner */
@media (min-width:1024px){

  .exact-google-banner{
    padding:6px 0 !important;
    background:#050505 !important;
  }

  .exact-google-banner .container{
    max-width:980px !important;
  }

  .exact-google-card{
    max-width:980px !important;
    width:100% !important;
    min-height:64px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    gap:18px !important;

    padding:10px 18px !important;
    margin:0 auto !important;

    border-radius:14px !important;

    background:
      linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
      #0d0d0d !important;

    border:1px solid rgba(247,147,30,.30) !important;

    box-shadow:
      0 10px 26px rgba(0,0,0,.34),
      inset 0 1px 0 rgba(255,255,255,.04) !important;

    overflow:hidden !important;
  }

  .exact-google-card:before,
  .exact-google-card:after,
  .exact-google-divider{
    display:none !important;
  }

  .exact-google-left{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    padding:0 !important;
    flex:0 0 auto !important;
  }

  .exact-google-logo{
    width:42px !important;
    height:42px !important;

    box-shadow:
      0 6px 16px rgba(0,0,0,.30) !important;
  }

  .exact-google-logo:before{
    inset:5px !important;
  }

  .exact-google-logo:after{
    font-size:22px !important;
  }

  .exact-google-stars{
    font-size:20px !important;
    gap:2px !important;
    justify-content:flex-start !important;
    flex:0 0 auto !important;
  }

  .exact-google-copy{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:14px !important;

    flex:1 1 auto !important;
  }

  .exact-google-title{
    display:flex !important;
    align-items:baseline !important;
    gap:10px !important;
  }

  .exact-google-title strong{
    font-size:28px !important;
    color:#ff9d22 !important;
    letter-spacing:-1px !important;
  }

  .exact-google-title span{
    font-size:14px !important;
    color:#fff !important;
    letter-spacing:0 !important;
  }

  .exact-google-pill{
    min-width:auto !important;
    width:auto !important;

    padding:7px 12px !important;

    border-radius:999px !important;

    font-size:12px !important;
    font-weight:900 !important;

    background:linear-gradient(135deg,#f7931e,#ffb347) !important;

    border:1px solid rgba(255,255,255,.10) !important;

    box-shadow:none !important;
  }

  .exact-google-check{
    width:18px !important;
    height:18px !important;
    font-size:11px !important;
  }
}




/* =============================
   FORM SUCCESS OVERLAY — FORM AREA ONLY
============================= */

.quote-form-wrap{
  position:relative !important;
  overflow:hidden !important;
}

.quote-form-wrap .quote-blur-target{
  transition:filter .35s ease, opacity .35s ease !important;
}

.quote-form-wrap.quote-submitted .quote-blur-target{
  filter:blur(5px) !important;
  opacity:.45 !important;
  pointer-events:none !important;
}

.quote-success-overlay{
  position:absolute !important;
  inset:0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:rgba(0,0,0,.20) !important;
  backdrop-filter:blur(3px) !important;
  -webkit-backdrop-filter:blur(3px) !important;

  opacity:0 !important;
  visibility:hidden !important;

  transition:.35s ease !important;

  z-index:50 !important;

  border-radius:inherit !important;
  padding:18px !important;
}

.quote-success-overlay.active{
  opacity:1 !important;
  visibility:visible !important;
}

.quote-success-box{
  width:min(92%,420px) !important;

  background:
    radial-gradient(220px 110px at 50% 0%, rgba(247,147,30,.18), transparent 72%),
    #111 !important;

  border:1px solid rgba(247,147,30,.42) !important;

  border-radius:24px !important;

  padding:34px 28px !important;

  text-align:center !important;

  box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    0 0 30px rgba(247,147,30,.12) !important;
}

.quote-success-icon{
  width:66px !important;
  height:66px !important;

  margin:0 auto 18px !important;

  border-radius:50% !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:linear-gradient(135deg,#f7931e,#ffb347) !important;

  color:#000 !important;

  font-size:32px !important;
  font-weight:900 !important;
}

.quote-success-box h3{
  color:#fff !important;

  font-size:28px !important;
  line-height:1.1 !important;
  font-weight:950 !important;

  margin:0 0 12px !important;
}

.quote-success-box p{
  color:rgba(255,255,255,.82) !important;

  line-height:1.6 !important;

  font-size:15px !important;
  margin:0 !important;
}

@media (max-width:640px){
  .quote-success-box{
    padding:28px 20px !important;
  }

  .quote-success-box h3{
    font-size:24px !important;
  }

  .quote-success-box p{
    font-size:14px !important;
  }
}
