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

:root {
      --primary: #BADA77;
      --dark: #21374F;
      --gray: #6b7280;
      --light-bg: #f8f9fb;
      --text: #1a1a2e;
      --white: #ffffff;
      
    }

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

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

    h1, h2, h3, h4, h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
    }
    a{
        text-decoration: none;
    }

    ::selection{
      color: var(--light-bg);
      background-color: var(--dark);
    }
    /* ── TOPBAR ── */
    .topbar {
      background: var(--dark);
      color: #aaa;
      font-size: 0.78rem;
      padding: 6px 0;
    }
    .topbar a { color: #aaa; text-decoration: none; }
    .topbar a:hover { color: var(--primary); }

    /* ── NAVBAR ── */
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(0,0,0,.09);
      padding: 6px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      color: var(--text) !important;
      letter-spacing: -1px;
    }
    .navbar-brand span { color: var(--dark);font-size: 1.2rem;  }
    .nav-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text) !important;
      text-transform: uppercase;
      letter-spacing: .5px;
      padding: 6px 14px !important;
      transition: color .2s;
    }
    .nav-link:hover { color: var(--primary) !important; }
    .btn-primary-cta {
      background: var(--primary);
      color: var(--dark) !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: .5px;
      border: none;
      border-radius: 4px;
      padding: 8px 22px;
      transition: background .2s, transform .15s;
      text-decoration: none;
    }
    .btn-primary-cta:hover { background: var(--primary); transform: translateY(-1px); }
    .btn-outline-cta {
      border: 2px solid var(--primary);
      color: var(--dark) !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      text-transform: uppercase;
      letter-spacing: .5px;
      border-radius: 4px;
      padding: 8px 22px;
      text-decoration: none;
      transition: background .2s;
    }
    /* .btn-outline-cta:hover { background: var(--primary); color: var(--dark); } */

    .logo{
      width:90px;
      height: 60px;
    }
    /* ── HERO ── */
    .hero {
      background: linear-gradient(100deg, var(--dark) 52%, var(--light-bg) 100%);
      min-height: 92vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      right: 0; top: 0;
      width: 55%;
      height: 100%;
      background: url('../images/garage-door-repair-weatherford-tx-spring-replacement.webp') center/cover no-repeat;
      opacity: .35;
    }
    .hero-badge {
      display: inline-block;
      background: var(--primary);
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 4px 14px;
      border-radius: 2px;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.05;
      color: var(--white);
      text-transform: uppercase;
    }
    .hero h1 span { color: var(--primary); }
    .hero p {
      color: var(--white);
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.3;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
    .hero-phone {
      color: var(--primary);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: 1px;
    }
    .hero-phone i { margin-right: 6px; }
    .hero-socials a {
      color: #8899aa;
      font-size: 1.2rem;
      margin-right: 12px;
      transition: color .2s;
    }
    .hero-socials a:hover { color: var(--primary); }
    .hero-card {
      background: var(--primary);
      border-radius: 10px;
      padding: 18px 22px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      color: var(--dark);
      box-shadow: 0 8px 32px rgba(245,197,24,.25);
    }
    .hero-card i { font-size: 1.6rem; }


    /* ______ button ______ */
    /* From Uiverse.io by Botwe-Felix5820 */ 


.button {
  width:180px;
  height: 60px;
  border: 3px solid var(--primary);
  border-radius: 45px;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
  font-size: 1.5rem;
  font-weight: 700;
  padding-inline: 5%;
}
.button a{
   font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}



/* Brand Image Styling */
.brand-marquee span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-marquee img {
  height: 75px;
  padding: 5%;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: 0.3s ease;
}

/* Hover Effect (premium feel) */
.brand-marquee img:hover {
  opacity: 1;
  transform: scale(1.5);
}



    /* ── TICKER ── */
    .ticker-bar {
      background: var(--primary);
      padding: 12px 0;
      overflow: hidden;
    }
    .ticker-inner {
      display: flex;
      gap: 48px;
      white-space: nowrap;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--dark);
      animation: ticker 22s linear infinite;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-inner span { display: flex; align-items: center; gap: 8px; }
    .ticker-inner i { font-size: 1.1rem; }

/* services locations  */


.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card  i{
  color: var(--primary);
}


.location-card  span{

  font-size: 1rem;
  font-weight: 700;

}
    /* ── SECTION LABEL ── */
    .section-label {
      display: inline-block;
      background: var(--primary);
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      padding: 3px 12px;
      border-radius: 2px;
      margin-bottom: 12px;
    }

    /* ── WHY US ── */
    .why-us { background: var(--white); padding: 90px 0; }
    .why-us .heading {
      font-size: clamp(.8rem, 2vw, 1.8rem);
      line-height: 1.2;
      text-transform: uppercase;
    }
    .why-us i , h5{
      color: var(--dark);
    }
    .stat-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
    }
    .stat-label { font-size: .85rem; color: var(--gray); }

    /* ── VIDEO SECTION ── */
    .map-section {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
  }

  .map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
  }
   
    /* ── DEDICATED ── */
    .dedicated { background: var(--light-bg); padding: 90px 0; }
    .dedicated-img { border-radius: 10px; overflow: hidden; }
    .dedicated-img img { width: 100%; height: 700px; object-fit: cover; border-radius: 10px; }
    .review-pill {
      background: var(--white);
      border-radius: 50px;
      padding: 10px 18px;
      display: inline-flex;
      align-items: center;
      text-align: center;
      gap: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,.1);
      font-size:1rem;
      font-weight: 600;
    }
    .stars { color: var(--primary); }

    /* ── SERVICES ── */
    .services-section { background: var(--dark); padding: 90px 0; }
    .services-section h2 { color: var(--white); font-size:clamp(1.5rem,2.5vw,2rem);}
    .service-item {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      text-align: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      color: #c0c8d8;
      font-size: .95rem;
      cursor: pointer;
      transition: color .2s;
    }
    .service-item:hover, .service-item.active { color: var(--primary); }
    .service-detail {
      background: var(--primary);
      border-radius: 10px;
      padding: 12px;
    
    }
    .service-detail h4 {
      font-size: 1.5rem;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 2px;
    }
    .service-detail p { font-size: .95rem; color: #333; line-height: 1.7; }
    .service-detail img { width: 100%; border-radius: 5px; margin-top: 8px; height: 100%; object-fit: cover; }


    /* ------  offers ------ */


  

.offer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.highlight-offer {
  border: 2px solid var(--primary);
}

    
    /* ── TESTIMONIALS ── */
    .testimonials { background: var(--white); padding: 90px 0; }
    .testi-card {
      background: var(--light-bg);
      border-radius: 12px;
      padding: 28px;
      height: 100%;
      border-left: 4px solid var(--primary);
      transition: transform .2s, box-shadow .2s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
    .testi-name { font-weight: 700; font-size: .95rem; }
    .testi-role { font-size: .8rem; color: var(--gray); }
    .testi-text { font-size: .92rem; color: #444; line-height: 1.7; }
    .avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
    }

    /* ── CONTACT ── */
    .contact-section { background: var(--light-bg); padding: 70px 0; }
    .contact-form-card {
      background: var(--white);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 32px rgba(0,0,0,.07);
    }
    .contact-form-card label { font-weight: 600; font-size: .85rem; margin-bottom: 4px; }
    .contact-form-card .form-control, .contact-form-card .form-select {
      border-radius: 6px;
      border: 1.5px solid #e0e4ed;
      font-size: .8rem;
      padding: 5px 7px;
    }
    .contact-form-card .form-control:focus { border-color: var(--primary);
       box-shadow: 0 0 0 3px rgba(245,197,24,.15); }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    .contact-info-item:last-child { border-bottom: none; }
    .contact-icon {
      width: 44px; height: 44px;
      background: var(--primary);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      color: var(--dark);
      flex-shrink: 0;
    }



/* -------email ------------ */

.email{
  color: rgba(33, 37, 41, 0.75);
}



    /* ── FAQ ── */
    .faq-section { background: var(--white); padding: 90px 0; }
    .faq-img { border-radius: 12px; width: 100%; height: 420px; object-fit: cover; }
    .accordion-button {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
    }
    .accordion-button:not(.collapsed) {
      background: var(--primary);
      color: var(--dark);
    }
    .accordion-button:focus { box-shadow: none; }

    /* ── BLOG ── */
    .blog-section { background: var(--light-bg); padding: 90px 0; }
    .blog-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      transition: transform .2s, box-shadow .2s;
    }
    .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
    .blog-card img { width: 100%; height: 200px; object-fit: cover; }
    .blog-card-body { padding: 22px; }
    .blog-tag {
      background: var(--primary);
      color: var(--dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 2px 10px;
      border-radius: 2px;
      display: inline-block;
      margin-bottom: 10px;
    }
    .blog-card h5 { font-size: 1.1rem; line-height: 1.3; text-transform: uppercase; }
    .blog-meta { font-size: .8rem; color: var(--gray); }

    /* ── TRUST CTA ── */
    .cta-section {
      background: var(--dark);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/cta-image.webp') top center/cover no-repeat;
      opacity: .12;
    }
    .cta-section h2 {
      font-size: clamp(1.2rem, 2.5vw, 2.2rem);
      text-transform: uppercase;
      color: var(--white);
      position: relative;
    }
    .cta-section p { color: #99aabb; position: relative; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: #8899aa;
      padding: 70px 0 30px;
    }
    footer .brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.7rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -1px;
    }
    footer .brand span { color: var(--primary); }
    footer h6 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--white);
      margin-bottom: 18px;
    }
.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.locations-list li {
  white-space: nowrap;
}

    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a {
      color: #8899aa;
      text-decoration: none;
      font-size: .88rem;
      transition: color .2s;
    }
    footer ul li a:hover { color: var(--primary); }
    .footer-social a {
      width: 26px; height: 26px;
      background: rgba(255,255,255,.07);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: #aaa;
      font-size: 1rem;
      margin-right: 8px;
      transition: background .2s, color .2s;
      text-decoration: none;
    }
    .footer-social a:hover { background: var(--primary); color: var(--dark); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      margin-top: 50px;
      font-size: .82rem;
    }
    .working-hours li { display: flex; justify-content: space-between; font-size: .87rem; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.06); }

    /* Scroll animation */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* Mobile adjustments */
    @media (max-width: 991px) {
      .hero::before { width: 100%; opacity: .3; }
      .hero { min-height: 80vh; padding: 80px 0 60px; }
          .navbar-brand span { display: none; }
          article{
            font-size: 0.8rem !important;
          }
    }
    @media (max-width: 576px) {
      .hero h1 { font-size: 2.4rem; }
        article{
            font-size: 0.8rem !important;
          }
    }