@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

 /* ── Variables ── */
  :root {
    --navy:    #0B3559;
    --blue:    #091c61;
    --orange:  #E07B2A;
    --orange2: #C96B1A;
    --tint:    #EBF4FF;
    --tint2:   #F5F9FF;
    --white:   #FFFFFF;
    --dark:    #1A1A1A;
    --body:    #000000;
    --muted:   #000000;
    --border:  #091c61;
    --radius:  10px;
   --shadow: 0 4px 24px rgba(11, 53, 89, 0.1);
--shadow-sm: 0 2px 10px rgba(11, 53, 89, 0.07);
  }

  /* ── Reset ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Roboto', sans-serif; font-size: 18px; color: var(--body); background: #fff; line-height: 30px; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  /* ── Typography ── */
  h1,h2,h3,h4 { font-family: 'League Spartan', sans-serif; color: var(--navy); line-height: 1.15; }
  h1 { font-size: 45px; font-weight: 700; }
  h2 { font-size: 40px; font-weight: 700; }
  h3 { font-size: 1.15rem; font-weight: 700; }
  .eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; display: block; }
  .section-intro { margin: .75rem auto 0; color: var(--muted); font-size: 18px; text-align: center; }

  /* ── Layout ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  section { padding: 90px 0; }
  .text-center { text-align: center; }

  /* ── Buttons ── */
  .btn { display: block; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 6px; font-family: 'Roboto', sans-serif; font-size: 18px; font-weight: 600; cursor: pointer; transition: all .2s; border: 2px solid transparent; }
  .btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
  .btn-orange:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,123,42,.35); }
  .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
  .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
  .btn-blue:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-1px); }

  /* ═══════════════════════════════════
     NAV
  ═══════════════════════════════════ */
  #nav {
    position: sticky; top: 0; z-index: 1000;
    background: #091c61;
    transition: box-shadow .3s;
    padding: 5px 0px;
  }
  #nav.scrolled { box-shadow: 0 2px 20px rgba(11,53,89,.12); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
  }
  .nav-logo img { height: 70px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    padding: 8px 12px; font-size: .88rem; font-weight: 600; color:#ffffff;
    border-radius: 6px; transition: background .15s, color .15s; white-space: nowrap;
  }
  .nav-links a:hover { background: var(--tint); color: var(--blue); }
  .nav-dropdown { position: relative; }
  .nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
  .dropdown-menu {
    display: none; position: absolute; top: calc(100% + 6px); left: 0;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow); min-width: 230px; padding: 6px;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu a {
    display: block; padding: 9px 14px; font-size: .88rem; color: var(--navy);
    border-radius: 6px; font-weight: 500;
  }
  .dropdown-menu a:hover { background: var(--tint); color: var(--blue); }
  .nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .nav-phone { font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: 1.5rem;; color: #ffffff; }
  .nav-phone:hover { color: var(--orange); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
  /* Mobile drawer */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: #fff; padding: 80px 24px 40px; overflow-y: auto;
    flex-direction: column; gap: 0;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 600;
    color: var(--navy); border-bottom: 1px solid var(--border);
  }
  .mobile-menu .m-phone { margin-top: 24px; }
  .mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

  /* ═══════════════════════════════════
     HERO
  ═══════════════════════════════════ */
  #hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: url('../images/elementcare-banner.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(11, 53, 89, .88) 0%, #0e1e2b75 60%, #0b3559 100%);
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
  }
  .hero-text { color: #fff; }
  .hero-text .eyebrow { color: #ffc07a; }
  .hero-text h1 { color: #fff; margin-bottom: 1rem; }
  .hero-text .hero-sub { font-size: 22px;font-weight:500; margin-bottom: 1.5rem;  }
  .hero-bullets { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 10px; }
  .hero-bullets li { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 400; }
  .hero-bullets li::before {
    content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0;
    background: var(--orange); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  /* Hero form card */
  .hero-form-card {
    background: #fff; border-radius: 14px; padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
  }
  .hero-form-card h3 { font-size: 32px; color: var(--navy); margin-bottom: 15px; text-align: center;}
  .hero-form-card .form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
  .form-group { margin-bottom: 12px; }
  .form-group label { display: block; font-size:  1rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 18px 20px; border: 1.5px solid #091c61;;
    border-radius: 5px; font-family: 'Roboto', sans-serif; font-size: 16px;
    color: #091c61; background: #fff; transition: border-color .2s;
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .form-submit { width: 100%; padding: 13px; margin-top: 6px; }
  .form-note { font-size: .73rem; color: var(--muted); text-align: center; margin-top: 10px; }
  input::placeholder,
textarea::placeholder {
  color: #091c61; /* your color */
}

  /* ═══════════════════════════════════
     TRUST BAR
  ═══════════════════════════════════ */
  #trust-bar {
    background: var(--navy); padding: 0;
  }
  .trust-bar-inner {
    display: flex; align-items: stretch; justify-content: center;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    padding: 20px 32px; border-right: 1px solid rgba(255,255,255,.1);
    flex: 1; min-width: 200px;
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 1.5rem; flex-shrink: 0; }
  .trust-item strong { display: block; color: #fff; font-family: 'League Spartan', sans-serif; font-size: 15px; font-weight: 700; }
  .trust-item span { font-size: .78rem; color: rgba(255,255,255,.65); }

  /* ═══════════════════════════════════
     ABOUT
  ═══════════════════════════════════ */
  #about { background: var(--tint2); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-img-wrap { position: relative; }
  .about-img-wrap img { border-radius: 14px; width: 100%; height: 420px; object-fit: cover; }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--orange); color: #fff; border-radius: 12px;
    padding: 20px 24px; text-align: center;
    box-shadow: 0 8px 24px rgba(224,123,42,.4);
  }
  .about-badge strong { display: block; font-family: 'League Spartan', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
  .about-badge span { font-size: 16px; font-weight: 600; }
  .about-text h2 { margin-bottom: 1rem; }
  .about-text p { color: var(--body); margin-bottom: 1rem; }
  .about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 12px; }
  .about-feat { display: flex; align-items: flex-start; gap: 14px; }
  .feat-icon {
    width: 42px; height: 42px; flex-shrink: 0; background: var(--tint); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border); font-size: 1.1rem;
  }
  .feat-text strong { display: block; font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 2px; }
  .feat-text span { font-size: .88rem; color: var(--muted); }
  .about-cta { margin-top: 2rem; }

  /* ═══════════════════════════════════
     SERVICES
  ═══════════════════════════════════ */
  #services { background: #fff; }
  .section-head { text-align: center; margin-bottom: 3rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .service-card {
    border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
    transition: box-shadow .25s, transform .25s; background: #fff;
  }
  .service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
  .service-card-img { position: relative; height: 200px; overflow: hidden; }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .service-card:hover .service-card-img img { transform: scale(1.05); }
  .service-card-img .service-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  }
  .service-card-body { padding: 22px; }
 .service-card-body h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}
  .service-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 700; color: var(--blue);
    font-family: 'League Spartan', sans-serif;
  }
  .service-link:hover { color: var(--orange); }
  .service-link svg { transition: transform .2s; }
  .service-link:hover svg { transform: translateX(3px); }

  /* ═══════════════════════════════════
     WHY CHOOSE US
  ═══════════════════════════════════ */
  #why { background: #091c61; position: relative; overflow: hidden; }
  #why::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,.03); pointer-events: none;
  }
  #why .section-head h2, #why .section-head .eyebrow { color: #fff; }
  #why .section-intro { color: #ffffff; }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
  .why-card {
    background: #ffffff; border: 1px solid 091c61;
    border-radius: 14px; padding: 32px 28px; text-align: center;
    transition: background .25s, transform .25s;
  }
  .why-card:hover { background: #ffffff; transform: translateY(-3px); }
  .why-icon {
    width: 60px; height: 60px; margin: 0 auto 18px;
    background: #091c61; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(224,123,42,.4);
    font-size: 1.6rem;
  }
  .why-card h3 { color: #091c61; font-size: 20px; margin-bottom: .6rem; }
  .why-card p { color: #000000; font-size: 16px; line-height: 1.65; }

  /* ═══════════════════════════════════
     SERVICE AREA
  ═══════════════════════════════════ */
  #area { background: var(--tint); }
  .area-grid { display: block; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;text-align:center; }
  .area-text h2 { margin-bottom: 1rem; }
  .area-text p { color: var(--body); margin-bottom: 1.5rem; }
  .area-chips {  flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
  .chip {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 30px; padding: 10px 20px;
    font-size: 1rem; font-weight: 600; color: var(--navy);
    box-shadow: var(--shadow-sm);margin-bottom:15px;margin-right: 10px;
  }
  .chip::before { content: '📍'; font-size: .75rem; }
  .area-map {
    background: var(--navy); border-radius: 14px; overflow: hidden;
    height: 380px; position: relative; box-shadow: var(--shadow);
  }
  .area-map iframe { width: 100%; height: 100%; border: none; }

  /* ═══════════════════════════════════
     REBATE & FINANCING
  ═══════════════════════════════════ */
  #rebate { background: #fff; }
  .rebate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 3rem; }
  .rebate-card {
    border-radius: 14px; padding: 32px; border: 1.5px solid var(--border);
    position: relative; overflow: hidden;
  }
  .rebate-card.featured { background: var(--navy); border-color: var(--navy); }
  .rebate-card.featured h3, .rebate-card.featured p, .rebate-card.featured li { color: #fff; }
  .rebate-card.featured li { opacity: .85; }
  .rebate-card .rc-icon { font-size: 2rem; margin-bottom: 14px; }
  .rebate-card h3 { margin-bottom: .6rem; }
  .rebate-card p { font-size: .9rem; color: var(--body); margin-bottom: 1rem; }
  .rebate-card ul { display: flex; flex-direction: column; gap: 8px; }
  .rebate-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--body); }
  .rebate-card li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
  .rebate-card.featured li::before { color: #ffc07a; }
  .rebate-card .btn { margin-top: 1.5rem; }

  /* ═══════════════════════════════════
     REVIEWS
  ═══════════════════════════════════ */
  #reviews { background: var(--tint2); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
  .review-card {
    background: #fff; border-radius: 14px; padding: 28px; border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .25s, transform .25s;
  }
  .review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .review-stars { display: flex; gap: 3px; }
  .star { width: 18px; height: 18px; fill: #F5A623; }
  .review-text { font-size: .9rem; color: var(--body); line-height: 1.65; flex: 1; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .author-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: .9rem;
    flex-shrink: 0;
  }
  .author-name { font-weight: 700; font-size: .9rem; color: var(--navy); display: block; }
  .author-source { font-size: .78rem; color: var(--muted); }

  /* ═══════════════════════════════════
     FAQ
  ═══════════════════════════════════ */
  #faq { background: #fff; }
  .faq-wrap { max-width: 760px; margin: 3rem auto 0; }
  .faq-item { border-bottom: 1.5px solid var(--border); }
  .faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0px; cursor: pointer; font-weight: 700; color: var(--navy);
    font-size: 20px; gap: 16px; font-family: 'League Spartan', sans-serif;
    transition: color .2s;
  }
  .faq-question:hover { color: var(--blue); }
  .faq-chevron {
    width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
    background: var(--tint); display: flex; align-items: center; justify-content: center;
    transition: transform .3s, background .2s;
  }
  .faq-chevron svg { width: 14px; height: 14px; stroke: var(--navy); }
  .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--orange); }
  .faq-item.open .faq-chevron svg { stroke: #fff; }
  .faq-answer { display: none; padding-bottom: 20px; color: var(--body); font-size: 16px; line-height: 1.7; }
  .faq-item.open .faq-answer { display: block; }

  /* ═══════════════════════════════════
     CONTACT
  ═══════════════════════════════════ */
  #contact { background: var(--navy); position: relative; overflow: hidden; }
  #contact::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(255,255,255,.03); pointer-events: none;
  }
  #contact .section-head h2, #contact .section-head .eyebrow { color: #fff; }
  #contact .section-intro { color: rgba(255,255,255,.65); }
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 3rem; position: relative; z-index: 1; max-width: 680px; margin-left: auto; margin-right: auto; }
  .contact-form-card { background: #fff; border-radius: 14px; padding: 45px; }
  .contact-form-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
  .contact-info { color: rgba(255,255,255,.85); }
  .contact-info h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1.5rem; }
  .contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .c-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
    background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; border: 1px solid rgba(255,255,255,.15);
  }
  .c-detail strong { display: block; color: #fff; font-size: .9rem; font-family: 'League Spartan', sans-serif; margin-bottom: 3px; }
  .c-detail span, .c-detail a { font-size: .88rem; color: rgba(255,255,255,.65); }
  .c-detail a:hover { color: var(--orange); }
  .hours-table { margin-top: 6px; }
  .hours-row { display: flex; justify-content: space-between; font-size: .85rem; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
  .hours-row:last-child { border-bottom: none; }
  .hours-row .day { color: rgba(255,255,255,.85); font-weight: 600; }

  /* ═══════════════════════════════════
     FOOTER
  ═══════════════════════════════════ */
  footer { background: #091c61; padding: 60px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-brand img { height: 65px;  margin-bottom: 16px; }
  .footer-brand p { font-size: 1rem; color: #ffffff; line-height: 1.7; max-width: 320px; }
  .footer-brand .f-phone { display: inline-block; margin-top: 12px; color: var(--orange); font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: 1rem; }
  .footer-col h4 { color: #fff; font-size: 20px; font-family: 'League Spartan', sans-serif; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 1rem; color: #ffffff; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-bar {
    display: block; align-items: center; justify-content: space-between;
    padding: 20px 0; font-size: 16px; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px;font-weight:600;text-align:center;
  }

  /* ═══════════════════════════════════
     FLOATING CTA
  ═══════════════════════════════════ */
  .float-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  }
  .float-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: 50px; font-family: 'League Spartan', sans-serif;
    font-weight: 700; font-size: .85rem; box-shadow: 0 4px 20px rgba(0,0,0,.2);
    cursor: pointer; border: none; transition: transform .2s, box-shadow .2s;
  }
  .float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
  .float-call { background: var(--orange); color: #fff; }
  .float-quote { background: var(--navy); color: #fff; }

  /* ═══════════════════════════════════
     ANIMATIONS
  ═══════════════════════════════════ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-text > * { animation: fadeUp .7s ease both; }
  .hero-text .eyebrow       { animation-delay: .1s; }
  .hero-text h1             { animation-delay: .2s; }
  .hero-text .hero-sub      { animation-delay: .3s; }
  .hero-text .hero-bullets  { animation-delay: .4s; }
  .hero-text .hero-btns     { animation-delay: .5s; }
  .hero-form-card           { animation: fadeUp .7s .3s ease both; }

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

  /* ═══════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════ */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 480px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links, .nav-cta .btn-orange { display: none; }
    .hamburger { display: flex; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    #hero { min-height: auto; padding: 80px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .area-grid { grid-template-columns: 1fr; }
    .rebate-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bar { flex-direction: column; text-align: center; }
    .trust-item { padding: 16px 20px; }
    .float-cta { bottom: 16px; right: 16px; }
    .reviews-grid {display: block!important;}
    .review-card{margin-bottom:15px!important;}
    .whyus12345{margin-left: 13%!important;margin-right:auto;}
    .contact-form-card{padding: 15px!important;}
    .nav-logo img {height: 75px!important;width: 190px!important;}
    .nav-phone{display:none!important;}
    .about-img-wrap img{height:auto!important;}
  }
  
  .whyus12345{margin-left: 33%;;margin-right:auto;}

  /* ── Phone icon ── */
  .ph-icon { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex-shrink: 0; stroke: currentColor; }
  .nav-phone .ph-icon { margin-right: 5px; }
  .section-phone-line {
    display: flex; align-items: center; gap: 8px;
    /*margin-top: 14px;*/
    font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy);
  }
    .section-phone-line1 {
    display: flex; align-items: center; gap: 8px;
    /*margin-top: 14px;*/
    font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy);
  }
  .section-phone-line .ph-icon { stroke: var(--orange); width: 22px; height: 22px; }
  .section-phone-line1 .ph-icon { stroke: var(--orange); width: 22px; height: 22px; }
  .section-phone-line a { color: var(--navy); font-weight: 700; }
  .section-phone-line1 a { color: var(--navy); font-weight: 700; }
  .section-phone-line a:hover { color: var(--orange); }
  .section-phone-line1 a:hover { color: var(--orange); }

  /* ── Floating phone button ── */
  .float-phone-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #22a85a; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(34,168,90,.45);
    transition: transform .2s, box-shadow .2s;
    animation: pulse-green 2s infinite;
  }
  .float-phone-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(34,168,90,.55); }
  @keyframes pulse-green {
    0%,100% { box-shadow: 0 4px 20px rgba(34,168,90,.45); }
    50%      { box-shadow: 0 4px 30px rgba(34,168,90,.75); }
  }

  /* ── Reviews ── */
  #reviews { background: var(--tint2); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
  .review-card {
    background: #fff; border-radius: 14px; padding: 28px; border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
    transition: box-shadow .25s, transform .25s;
  }
  .review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .review-stars { display: flex; gap: 3px; }
  .star { width: 18px; height: 18px; fill: #F5A623; }
  .review-text { font-size: 16px; color: var(--body); line-height: 1.65; flex: 1; font-style: normal; }
  .review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .author-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: .9rem; flex-shrink: 0;
  }
  .author-name { font-weight: 700; font-size: 18px; color: var(--navy); display: block; }
  .author-source { font-size: .78rem; color: var(--muted); }
  
  .about-cta {
    display: flex;
    align-items: center;     /* vertical alignment */
    gap: 20px;               /* space between button & phone */
    flex-wrap: wrap;         /* mobile friendly */
}

.section-phone-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-phone-line1 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-phone-line a {
    text-decoration: none;
    color: #0a3d62;
    font-weight: 600;
}
.section-phone-line1 a {
    text-decoration: none;
    color: #0a3d62;
    font-weight: 600;
}

.ph-icon {
    width: 18px;
    height: 18px;
    color: #f47c20; /* optional orange icon */
}
.servicetxt{font-size: 25px;}
.phnc{font-size: 25px;}
.section-phone-line{margin-left: auto;
    margin-right: auto;}

.btn1{
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: 2px solid transparent;
    /* text-align: center; */
    margin-left: auto;
    margin-right: auto;
}
.btn2{
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: 2px solid transparent;
    /* text-align: center; */
    margin-left: auto;
    margin-right: auto;
}