
  :root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --red-light: #FFEBEE;
    --charcoal: #1A1A1A;
    --black:#000000;
    --charcoal-mid: #2D2D2D;
    --slate: #3D3D3D;
    --mid: #6B6B6B;
    --light: #F5F5F5;
    --border: #E0E0E0;
    --white: #FFFFFF;
    --yellow: #FFC107;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); font-size: 16px; color: var(--charcoal); background: var(--white); line-height: 1.65; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  /* UTILITY */
  .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-title { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.05; color: var(--charcoal); }
  .section-title span { color: var(--red); }
  .section-sub { font-size: 17px; color: var(--mid); margin-top: 12px; max-width: 640px; line-height: 1.6; }
  .tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); border: 1.5px solid var(--red); padding: 4px 12px; border-radius: 2px; margin-bottom: 16px; }
  .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
  .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

  /* BUTTONS */
  .btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 16px; font-weight: 600; padding: 14px 28px; border-radius: 3px; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
  .btn-outline:hover { background: var(--white); color: var(--red); }
  .btn-dark { background: var(--charcoal); color: var(--white); }
  .btn-dark:hover { background: var(--red); transform: translateY(-1px); }
  .btn-lg { font-size: 18px; padding: 18px 36px; }
  .btn svg, .btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

  /* STICKY BAR */
  .sticky-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--black); color: var(--white); padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
  .sticky-bar .logo-img img {width: 200px; max-width: 100%;}
  .sticky-bar .bar-right { display: flex; align-items: center; gap: 16px; }
  .sticky-bar .phone-link { font-size: 18px; font-weight: 600; color: var(--yellow); letter-spacing: 0.5px; }
  .sticky-bar .btn { padding: 8px 20px; font-size: 14px; }

  /* HERO */
  .hero { background-image: url("img/hero-img.jpg"); background-attachment: fixed; background-size: cover; background-position: center center; background-repeat: no-repeat; color: var(--white); padding: 140px 0 80px; position: relative; overflow: hidden; }
  
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(45,45,45,0.7) 55%, rgba(58,0,0,0.73) 100%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

  .hero::before { content: ''; position: absolute; top: 0; right: -100px; width: 600px; height: 100%; background: url("img/circle-vector.svg") center/contain no-repeat; opacity: 0.4; }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; margin-bottom: 20px; }
  .hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero h1 { font-family: var(--font-head); font-size: clamp(44px, 5.5vw, 72px); font-weight: 900; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.5px; }
  .hero h1 .accent { color: var(--red); display: block; }
  .hero h1 .sub-head { font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: #fff; }
  .hero-subtext { font-size: 18px; color: #ffffff; margin: 20px 0 32px; max-width: 520px; line-height: 1.6; }
  .hero-subtext strong { color: var(--white); }
  .hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
  .hero-trust-row { display: flex; flex-wrap: wrap; gap: 16px; }
  .hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #aaa; }
  .hero-trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .hero-card { background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 32px; }
  .hero-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; color: var(--yellow); }
  .urgent-form input, .urgent-form select, .urgent-form textarea { width: 100%; padding: 12px 14px; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; color: var(--white); font-family: var(--font-body); font-size: 15px; margin-bottom: 10px; }
  .urgent-form input::placeholder, .urgent-form select::placeholder, .urgent-form textarea::placeholder { color: rgba(255,255,255,0.45); }
  .urgent-form select { color: rgba(255,255,255,0.7); }
  .urgent-form select option { background: var(--charcoal); color: var(--white); }

  /* TRUST BAR */
  .trust-bar { background: var(--red); color: var(--white); padding: 0; }
  .trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; }
  .trust-bar-item { display: flex; align-items: center; gap: 8px; padding: 14px 24px; font-size: 14px; font-weight: 600; letter-spacing: 0.3px; border-right: 1px solid rgba(255,255,255,0.25); }
  .trust-bar-item:last-child { border-right: none; }
  .trust-bar-item .icon { font-size: 18px; }
  .trust-bar-item .icon img { filter: brightness(0) invert(1); }

  /* STATS */
  .stats { background: var(--charcoal); color: var(--white); }
  .stats-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
  .stat-item { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--font-head); font-size: 52px; font-weight: 900; color: var(--red); line-height: 1; }
  .stat-label { font-size: 14px; color: #999; margin-top: 6px; }

  /* SERVICES */
  .services { background: var(--light); }
  .service-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
  .service-card-top { background: var(--charcoal); padding: 28px 24px; }
  .service-card-top .icon-wrap { width: 56px; height: 56px; background: var(--red); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .service-card-top h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--white); }
  .service-card-body { padding: 24px; }
  .service-card-body p { color: var(--mid); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
  .service-list { list-style: none; }
  .service-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: var(--slate); padding: 5px 0; border-bottom: 1px solid var(--border); }
  .service-list li:last-child { border-bottom: none; }
  .service-list li::before { content: '✓'; color: var(--green); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns:repeat(3, 1fr); gap: 20px; }
  .why-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.2s, box-shadow 0.2s; cursor: pointer; }
  .why-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(211,47,47,0.08); }
  .why-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
  .why-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .why-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--charcoal); display: flex; align-items: center; gap: 8px; }
  .why-card h4::after { content: '▼'; font-size: 12px; transition: transform 0.3s ease; display: inline-block; }
  .why-card.open h4::after { transform: rotate(180deg); }
  .why-card p { font-size: 14px; color: var(--mid); line-height: 1.55; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease; margin: 0; }
  .why-card.open p { max-height: 200px; opacity: 1; margin-top: 10px; }

  /* HOW IT WORKS */
  .how { background: var(--charcoal); color: var(--white); }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; position: relative; }
  .step { padding: 40px 32px; text-align: center; position: relative; border-right: 1px solid rgba(255,255,255,0.08); }
  .step:last-child { border-right: none; }
  .step-num { font-family: var(--font-head); font-size: 80px; font-weight: 900; color: rgba(211,47,47,0.18); line-height: 1; position: absolute; top: 24px; left: 50%; transform: translateX(-50%); }
  .step-content { position: relative; z-index: 1; }
  .step-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--red); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
  .step-icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .step h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
  .step p { font-size: 15px; color: #aaa; line-height: 1.6; }

  /* BRANDS */
  .brands { background: var(--light); }
  .brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-top: 40px; }
  .brand-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 20px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: border-color 0.2s, box-shadow 0.2s; }
  .brand-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(211,47,47,0.08); }
  .brand-logo-placeholder { width: 56px; height: 56px; border-radius: 4px; background: var(--light); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
  .brand-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--charcoal); }

  /* EMERGENCY */
  .emergency { background: var(--red); color: var(--white); }
  .emergency-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .emergency h2 { font-family: var(--font-head); font-size: clamp(36px, 4vw, 52px); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
  .emergency p { font-size: 17px; opacity: 0.9; line-height: 1.6; margin-bottom: 24px; }
  .emergency-list { list-style: none; margin-bottom: 32px; }
  .emergency-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; padding: 7px 0; opacity: 0.9; }
  .emergency-list li::before { content: '→'; font-weight: 700; flex-shrink: 0; }
  .emergency-card { background: rgba(0,0,0,0.25); border-radius: 8px; padding: 32px; text-align: center; }
  .emergency-card .big-phone { font-family: var(--font-head); font-size: 44px; font-weight: 900; letter-spacing: 1px; display: block; margin-bottom: 8px; color: var(--yellow); }
  .emergency-card p { opacity: 0.8; font-size: 15px; margin-bottom: 20px; }
  .emergency-card .btn { width: 100%; justify-content: center; }

  /* TESTIMONIALS */
  .testimonials { background: var(--light); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
  .review-card { background: var(--white); border-radius: 6px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-top: 3px solid var(--red); }
  .stars { color: var(--yellow); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
  .review-text { font-size: 15px; color: var(--slate); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .reviewer-name { font-weight: 600; font-size: 15px; color: var(--charcoal); }
  .reviewer-loc { font-size: 13px; color: var(--mid); }

  /* FAQ */
  .faq { background: var(--white); }
  .faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--charcoal); gap: 16px; user-select: none; }
  .faq-q::after { content: '+'; font-size: 22px; color: var(--red); flex-shrink: 0; font-weight: 400; transition: transform 0.2s; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a { display: none; padding-bottom: 16px; font-size: 15px; color: var(--mid); line-height: 1.65; }
  .faq-item.open .faq-a { display: block; }
  .faq-cta-box { background: var(--charcoal); color: var(--white); border-radius: 8px; padding: 36px 32px; position: sticky; top: 80px; }
  .faq-cta-box h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
  .faq-cta-box p { font-size: 15px; color: #aaa; margin-bottom: 24px; line-height: 1.6; }
  .faq-cta-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
  .faq-cta-box .or { text-align: center; color: #666; font-size: 13px; margin: 4px 0; }
  .faq-cta-box .email-link { display: block; text-align: center; color: #aaa; font-size: 14px; margin-top: 8px; }

  /* MAIN CTA */
  .main-cta { background: var(--red); color: var(--white); text-align: center; }
  .main-cta h2 { font-family: var(--font-head); font-size: clamp(36px, 4.5vw, 60px); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
  .main-cta p { font-size: 18px; opacity: 0.9; max-width: 580px; margin: 0 auto 36px; }
  .cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
  .price-assurance { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 36px; opacity: 0.8; }
  .price-assurance-item { display: flex; align-items: center; gap: 6px; font-size: 14px; }
  .price-assurance-item::before { content: '✓'; font-weight: 700; }

  /* CONTACT FORM */
  .contact { background: var(--light); }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-left h2 { font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 44px); font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
  .contact-left h2 span { color: var(--red); }
  .contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
  .contact-detail { display: flex; align-items: center; gap: 14px; }
  .contact-detail .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-detail .icon-circle svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .contact-detail .d-label { font-size: 12px; color: var(--mid); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .contact-detail .d-val { font-size: 17px; font-weight: 600; color: var(--charcoal); }
  .form-box { background: var(--white); border-radius: 8px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  .form-box h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 24px; color: var(--charcoal); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group label { font-size: 13px; font-weight: 600; color: var(--slate); letter-spacing: 0.3px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 15px; color: var(--charcoal); background: var(--white); transition: border-color 0.2s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit { width: 100%; padding: 16px; font-size: 17px; font-weight: 700; }
  .form-note { font-size: 12px; color: var(--mid); text-align: center; margin-top: 10px; }

  /* CLOSING */
  .closing { background: var(--charcoal); color: var(--white); text-align: center; }
  .closing h2 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
  .closing p { font-size: 17px; color: #aaa; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }
  .closing .phone-display { font-family: var(--font-head); font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: var(--yellow); letter-spacing: 1px; display: block; margin: 24px 0 8px; }

  /* FOOTER */
  footer { background: #111; color: #666; padding: 28px 24px; text-align: center; font-size: 13px; }
  footer a { color: #888; }

.call_wigdet {
    bottom: 0;
    z-index: 1;
    background: #ffffff;
    position: fixed;
    width: 100%;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.call_wigdet_list a.firstCTR {
    background: #d42337;
    width: 100%;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
}
.call_wigdet_list a.sndCTR {
    background: #000000;
    width: 100%;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
}

.tyre-products {
    background: #f7f7f7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-brand {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 18px;
}

.product-model {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.product-size {
    font-size: 20px;
    color: #444;
    margin-bottom: 30px;
}

.product-image {
    margin-bottom: 30px;
}

.product-image img {
    width: 180px;
    margin: auto;
}

.product-price-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
}

.product-fitment {
    font-size: 18px;
    color: #444;
    margin-bottom: 24px;
}

.product-btn {
    width: 100%;
    justify-content: center;
}

.top_cta
{
    display: inline-block;
    width: 22px !important;
    vertical-align: middle;
    margin-right: 2px;
}
.why_bar
{
    background:var(--red);
    color:var(--white);
    padding: 20px;
}
.why_bar .why_bar_inner h3
{
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}



@media(max-width:992px){

    .products-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:576px){

    .products-grid{
        grid-template-columns: 1fr;
    }

    .product-brand{
        font-size: 34px;
    }

    .product-price{
        font-size: 46px;
    }

}

  /* MOBILE */
  @media (max-width: 768px) {
    .sticky-bar .bar-right .btn { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 100px 0 60px; }
    .emergency-inner, .contact-inner, .faq-inner { grid-template-columns: 1fr; gap: 36px; }
    .faq-cta-box { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .trust-bar-item { padding: 10px 16px; font-size: 12px; }
    .stat-item { padding: 28px 16px; }
    .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; }
    .step:last-child { border-bottom: none; }
    .hero::before { display: none; }
  }
  @media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero h1 { font-size: 38px; }
  }

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-inner,
    .emergency-inner,
    .contact-inner,
    .faq-inner,
    .form-row,
    .products-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .steps,
    .why-grid,
    .testimonials-grid,
    .brands-grid {
        grid-template-columns: 1fr !important;
    }

    .hero {
        padding-top: 170px;
        overflow: hidden;
    }

    .hero-left,
    .hero-right,
    .hero-card,
    .product-card,
    .service-card,
    .why-card,
    .review-card,
    .faq-cta-box,
    .form-box,
    .emergency-card {
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.1;
        word-break: break-word;
    }

    .hero-subtext,
    .section-sub,
    p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-cta-group,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn,
    .cta-buttons .btn,
    .product-btn {
        width: 100%;
        justify-content: center;
    }

    .sticky-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px 16px;
    }

    .sticky-bar .bar-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .sticky-bar .phone-link {
        font-size: 16px;
    }

    .sticky-bar .btn {
        width: 100%;
    }

    .trust-bar-inner {
        flex-direction: column;
    }

    .trust-bar-item {
        width: 100%;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .trust-bar-item:last-child {
        border-bottom: none;
    }

    .product-brand {
        font-size: 34px;
    }

    .product-price {
        font-size: 44px;
    }

    .product-image img {
        width: 140px;
    }

    .big-phone,
    .phone-link {
        word-break: break-word;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

.submit-btn {
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.submit-btn.loading .loader {
    display: inline-block;
}

.submit-btn.loading .btn-text {
    opacity: 0.7;
}

.submit-btn.loading {
    pointer-events: none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .sticky-bar {
        flex-direction: column;
        padding: 12px 16px;
        text-align: center;
    }

    .sticky-bar .bar-right {
        flex-direction: column;
        width: 100%;
    }

    .sticky-bar .phone-link {
        font-size: 16px;
    }

    .hero {
        padding-top: 160px;
    }

    .hero-card,
    .form-box,
    .faq-cta-box,
    .emergency-card {
        padding: 24px;
    }

    .hero h1 {
        line-height: 1.1;
    }

    .section {
        padding: 56px 0;
    }

    .service-card-body,
    .why-card,
    .review-card {
        padding: 20px;
    }

    .hero-cta-group .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .big-phone {
        font-size: 34px !important;
        word-break: break-word;
    }
}


/* ═══════════════════════════════════════════ */
/* ENQUIRY POPUP MODAL */
/* ═══════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; animation: fadeInOverlay 0.25s ease; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.popup-box {
  background: var(--white);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: slideUpPopup 0.3s ease;
  position: relative;
}
@keyframes slideUpPopup { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup-header {
  background: var(--charcoal);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-header h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--yellow); margin: 0; }
.popup-header p { font-size: 13px; color: #aaa; margin-top: 4px; }
.popup-close {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  border: none; cursor: pointer; color: #fff; font-size: 20px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s;
}
.popup-close:hover { background: var(--red); }
.popup-body { padding: 28px; }
.popup-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.popup-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.popup-form .form-group label { font-size: 13px; font-weight: 600; color: var(--slate); }
.popup-form .form-group input,
.popup-form .form-group select,
.popup-form .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 4px;
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s; width: 100%;
}
.popup-form .form-group input:focus,
.popup-form .form-group select:focus,
.popup-form .form-group textarea:focus { outline: none; border-color: var(--red); }
.popup-form .form-group textarea { resize: vertical; min-height: 80px; }
.popup-submit {
  width: 100%; padding: 16px; font-size: 17px; font-weight: 700;
  background: var(--red); color: #fff; border: none; border-radius: 4px;
  cursor: pointer; font-family: var(--font-body); transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.popup-submit:hover { background: var(--red-dark); }
@media (max-width: 560px) {
  .popup-form .form-row { grid-template-columns: 1fr; }
  .popup-body { padding: 20px; }
  .popup-header { padding: 20px; }
  .popup-header h3 { font-size: 18px; }
}

/* ═══════════════════════════════════════════ */
/* SERVICES CAROUSEL */
/* ═══════════════════════════════════════════ */
.services-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.svc-slide-card {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.svc-slide-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.svc-slide-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  flex-shrink: 0;
}
.svc-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-slide-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.svc-slide-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; line-height: 1.1; }
.svc-slide-body p { font-size: 14px; color: var(--mid); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.svc-slide-body .btn { width: 100%; justify-content: center; font-size: 14px; padding: 11px 16px; }
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 28px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--charcoal);
  background: var(--white); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all 0.2s; flex-shrink: 0;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--charcoal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.2s; border: none; padding: 0; }
.carousel-dot.active { background: var(--red); transform: scale(1.25); }

@media (max-width: 900px) {
  .svc-slide-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
}
@media (max-width: 560px) {
  .svc-slide-card { flex: 0 0 100%; min-width: 100%; }
  .svc-slide-img { height: 200px; }
}

/* ═══════════════════════════════════════════ */
/* BRANDS CAROUSEL */
/* ═══════════════════════════════════════════ */
.brands-carousel-wrap { position: relative; overflow: hidden; margin-top: 40px; }
.brands-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.brand-slide-card {
  flex: 0 0 calc(16.666% - 14px);
  min-width: calc(16.666% - 14px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-slide-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(211,47,47,0.1); }
.brand-icon-wrap {
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.brand-slide-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--charcoal); }

.partner_grp {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.add-brand {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

@media (max-width: 900px) {
  .brand-slide-card { flex: 0 0 calc(25% - 12px); min-width: calc(25% - 12px); }
}
@media (max-width: 560px) {
  .brand-slide-card { flex: 0 0 calc(50% - 8px); min-width: calc(50% - 8px); }
}

/* ═══════════════════════════════════════════ */
/* TESTIMONIALS SLIDER */
/* ═══════════════════════════════════════════ */
.testimonials-slider-wrap { position: relative; overflow: hidden; margin-top: 0; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}
.review-slide-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Google-style header */
.review-slide-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-g-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
}
.review-g-icon svg { width: 28px; height: 28px; }
.review-meta { flex: 1; min-width: 0; }
.review-meta-name { font-weight: 700; font-size: 15px; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-meta-date { font-size: 13px; color: var(--mid); margin-top: 2px; }
.review-slide-stars { color: var(--yellow); font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.review-slide-text { font-size: 15px; color: var(--slate); line-height: 1.65; flex: 1; }

.rise-shake {
  animation: jump-shaking 0.83s infinite;
}
@keyframes jump-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateY(-9px) }
  35% { transform: translateY(-9px) rotate(17deg) }
  55% { transform: translateY(-9px) rotate(-17deg) }
  65% { transform: translateY(-9px) rotate(17deg) }
  75% { transform: translateY(-9px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}

@media (max-width: 900px) {
  .review-slide-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}
@media (max-width: 560px) {
  .review-slide-card { flex: 0 0 100%; min-width: 100%; }
}

@media (min-width: 641px) {
    .mobile_view {
        display: none !important;
    }
    .mobile-marquee-top
    {
        display: none;
    }
    .chat_widget
    {
        display: none;
    }
    .why_bar
    {
        display: none;
    }
}
@media all and (max-width:640px)
{
    .marquee-strip
    {
        display: none;
    }
    .sticky-bar
    {
        position: relative;
    }
    .hero {
        padding-top: 30px;
    }
    .sticky-bar {
        position: fixed;
        display: grid;
        grid-template-columns: 50% 50%;
        margin-top: 2rem;
    }
    .sticky-bar .logo-img img {
    width: 130px;
}
    .sticky-bar .bar-right {
        background: var(--red);
        padding: 10px 0;
        border-radius: 4px;
    }
    .sticky-bar .phone-link {
        font-size: 16px;
        color: #ffffff;
    }
        .mobile-marquee-top {
        display: block;
        background: #000000;
        color: #ffffff;
    }
    .mobile-marquee-top marquee
    {
        padding: 5px 0 0px;
        color: var(--red);
        font-weight: 600;
    }
    .partner_grp {
        grid-template-columns: repeat(2, 1fr);
    }
    .chat_widget {
    position: fixed;
    bottom: 5rem;
    right: 15px;
    z-index: 99999;
    align-items: center;
    display: flex;
}
.chat_widget span.wtext {
    text-align: center;
    font-weight: bold;
    color: #000000;
    background: #fff;
    padding: 4px 10px;
    border-radius: 10px 0 0 10px;
    color: #000000;
}
.whatsup_call img {
    width: 30px;
    display: inline-block;
    max-width: 50px;
    margin-left: 10px;
}
}
/* HIDE CAROUSEL DOTS */
.carousel-dots { display: none !important; }

/* MARQUEE STRIP */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}
.marquee-strip-inner {
  display: inline-flex;
  animation: marqueeScroll 18s linear infinite;
}
.marquee-strip-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 48px;
}
/* .marquee-strip-text::before {
  content: '⚡ ';
} */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .mobile-marquee-top {
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
  }
.hero h1 {
        margin-top: 6rem;
}
.hero {
    background-image: url(img/hero-img-mob.jpg);
    background-size: contain;
}
.trust-bar-item {
    justify-content: flex-start;
}
.trust-bar-item {
    padding: 10px 16px 10px 35px;
}
footer {
    padding: 28px 24px 120px 24px;
}
}
