*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --red: #C8102E;
    --red-dark: #a00d23;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #eeeeee;
    --gray-400: #aaaaaa;
    --gray-600: #666666;
    --gray-800: #333333;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAVBAR ─────────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
    background: rgb(51, 49, 49);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 22px;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo span { color: var(--red); }
  .nav-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red);
  }
  .nav-call {
    display: flex; align-items: center; gap: 8px;
    background: var(--red);
    color: var(--white);
    font-size: 13px; font-weight: 600;
    padding: 10px 18px; border-radius: 3px;
    text-decoration: none; letter-spacing: 0.5px;
    transition: background 0.2s;
  }
  .nav-call:hover { background: var(--red-dark); }
  .nav-call svg { width: 15px; height: 15px; }


   @media (max-width: 991px) { 
    .nav-call 
    { 
      display: none;
    } 
  
  }

  /* ─── HERO ─────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding-top: 65px;  
    justify-items: center;  
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1617814076367-b759c7d7e738?w=1800&q=80') center/cover no-repeat;
    opacity: 0.35;
  }
  .hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    min-height: calc(100vh - 65px);
    align-content: center;
  }

  @media (min-width: 960px) {
    .hero-inner {
      grid-template-columns: 1fr 420px;
      gap: 40px;
    }
   
  }

  .hero-content {
    padding: 48px 24px 36px;
    display: flex; flex-direction: column; gap: 20px;
  }
  @media (min-width: 960px) {
    .hero-content { padding: 72px 60px 72px; }
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--red);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 28px; height: 2px; background: var(--red);
  }

  .hero-headline {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(52px, 9vw, 100px);
    line-height: 0.95;
    letter-spacing: 2px;
  }
  .hero-headline em {
    color: var(--red);
    font-style: normal;
  }

  .hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    max-width: 540px;
    line-height: 1.7;
  }

  .hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 8px;
  }
  .hero-stat-val {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1;
  }
  .hero-stat-label {
    color: var(--gray-400);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--red); color: var(--white);
    padding: 16px 32px; border-radius: 3px;
    font-weight: 700; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 15px 28px; border-radius: 3px;
    font-weight: 600; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer; transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { border-color: var(--white); }

  /* ─── HERO FORM PANEL ─────────────────────── */
  .hero-form-panel {
    background: var(--white);
    padding: 36px 28px;
    display: flex; flex-direction: column; gap: 20px;
    position: relative; z-index: 2;
    border-left: 4px solid var(--red);
  }
  @media (min-width: 960px) {
    .hero-form-panel {
      /* min-height: 100%; */
      width: 100%;

      padding: 52px 36px;
      justify-content: center;
      margin-right: 48px;
      border-radius: 0 6px 6px 0;
      box-shadow: 8px 0 32px rgba(0,0,0,0.18);
    }
  }

  .form-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 12px; border-radius: 2px;
    width: fit-content;
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 28px; letter-spacing: 1px;
    line-height: 1.1; color: var(--black);
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gray-600);
  }
  .form-group input, .form-group select {
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 3px;
    font-size: 15px; font-family: var(--font-body);
    background: var(--white); color: var(--black);
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--black);
  }
  .form-submit {
    background: var(--red); color: var(--white);
    padding: 16px; border-radius: 3px;
    font-weight: 700; font-size: 14px;
    letter-spacing: 1px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background 0.2s;
    width: 100%;
  }
  .form-submit:hover { background: var(--red-dark); }
  .form-trust {
    font-size: 12px; color: var(--gray-400);
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .form-trust svg { color: var(--red); }

  /* ─── SECTION SHELL ─────────────────────── */
  .section { padding: 80px 24px; }
  @media (min-width: 960px) { .section { padding: 100px 60px; } }
  .section-inner { max-width: 1160px; margin: 0 auto; }
  .section-eyebrow {
    color: var(--red); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--red);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: 1.5px; line-height: 1.02;
    color: var(--black);
    margin-bottom: 18px;
  }
  .section-title em { color: var(--red); font-style: normal; }
  .section-sub {
    color: var(--gray-600); font-size: 16px;
    max-width: 620px; line-height: 1.7;
  }

  /* ─── TRUST STRIP ────────────────────────── */
  .trust-strip {
    background: var(--black);
    padding: 64px 24px;
  }
  .trust-strip-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr; 
    gap: 40px;
    align-items: center;
    
  }
  @media (min-width: 860px) {
    .trust-strip-inner {
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }
  }
    @media (max-width: 860px) {
  
      .trust-strip-inner {
    flex-direction: column;
}
  }
  .trust-heading {
    color: var(--red);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .trust-heading::before {
    content: ''; display: block;
    width: 24px; height: 2px; background: var(--red);
  }
  .trust-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: 1.5px; line-height: 1.05;
    margin-bottom: 14px;
  }
  .trust-title em { color: var(--red); font-style: normal; }
  .trust-desc {
    color: rgba(255,255,255,0.55);
    font-size: 15px; line-height: 1.7;
  }
  .trust-list {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: flex-start; gap: 14px;
    width: 100%;
    padding: 16px 18px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: border-color 0.2s;
  }
  .trust-item:hover { border-color: var(--red); }
  .trust-item-icon {
    width: 36px; height: 36px; border-radius: 3px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px;
    flex-shrink: 0;
  }
  .trust-item-text strong {
    display: block;
    color: var(--white); font-size: 14px; font-weight: 700;
    margin-bottom: 3px; letter-spacing: 0.3px;
  }
  .trust-item-text span {
    color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.5;
  }

   @media (max-width: 767px) {
     .trust-item { width: 100%; }
    }

  /* ─── WHY CHOOSE ─────────────────────────── */
  .why-bg { background: #FFF; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 52px;
  }
  .why-card {
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
    border-top: 3px solid var(--red);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .why-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-3px); }
  .why-icon {
    width: 48px; height: 48px;
    background: var(--red);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 22px;
  }
  .why-card h3 {
    font-family: var(--font-display);
    font-size: 22px; letter-spacing: 1px;
    margin-bottom: 10px; color: var(--black);
  }
  .why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

  /* ─── GALLERY ─────────────────────────────── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 52px;
  }
  @media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  }
  @media (min-width: 960px) {
    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 230px;
      gap: 12px;
    }
    .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-grid .gallery-item:nth-child(6) { grid-column: span 2; }
  }

  .gallery-item {
    position: relative; overflow: hidden;
    border-radius: 3px; cursor: pointer;
    aspect-ratio: 4/3;
  }
  @media (min-width: 960px) { .gallery-item { aspect-ratio: unset; } }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-overlay {
    position: absolute; bottom: 14px; left: 14px;
    color: var(--white); font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    opacity: 0; transition: opacity 0.3s;
    z-index: 2;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-cta {
    text-align: center;
    margin-top: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  .gallery-cta p {
    font-family: var(--font-display);
    font-size: 28px; letter-spacing: 1px; color: var(--black);
  }

  /* ─── SERVICES ────────────────────────────── */
  .services-bg { background: var(--black); }
  .services-bg .section-title { color: var(--white); }
  .services-bg .section-sub { color: rgba(255,255,255,0.6); }
  .services-bg .section-eyebrow { color: var(--red); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-top: 52px;
  }
  .service-card {
    background: #141414;
    border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.2s, border-color 0.2s;
  }
  .service-card:hover { transform: translateY(-4px); border-color: var(--red); }
  .service-card-img {
    height: 220px; overflow: hidden;
    position: relative;
  }
  .service-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
  }
  .service-card:hover .service-card-img img { transform: scale(1.05); }
  .service-card-img-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--red); color: var(--white);
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 10px; border-radius: 2px;
  }
  .service-card-body { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
  .service-card-icon {
    width: 40px; height: 40px; border-radius: 3px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 18px;
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 24px; letter-spacing: 1px; color: var(--white);
  }
  .service-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
  .service-card ul {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
  }
  .service-card ul li {
    font-size: 13px; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 8px;
  }
  .service-card ul li::before {
    content: ''; display: block;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--red); flex-shrink: 0;
  }
  .btn-service {
    background: transparent;
    color: var(--white);
    border-radius: 3px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: stretch;
    margin-top: 6px;
    justify-content: center;
  }
  .btn-service:hover { border-color: var(--red); color: var(--red); }

  /* ─── COMPARISON ─────────────────────────── */
  .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 52px;
  }




  
  @media (max-width: 640px) { .comparison-grid { grid-template-columns: 1fr; } }

  .comp-card {
    padding: 36px 28px; border-radius: 4px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .comp-card.without {
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
  }
  .comp-card.with {
    background: var(--black); color: var(--white);
    position: relative; overflow: hidden;
  }
  .comp-card.with::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--red);
  }
  .comp-badge {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 2px; width: fit-content;
  }
  .comp-badge.bad { background: #fee; color: #c00; }
  .comp-badge.good { background: var(--red); color: var(--white); }
  .comp-card h3 {
    font-family: var(--font-display);
    font-size: 26px; letter-spacing: 1px;
  }
  .comp-card.without h3 { color: var(--black); }
  .comp-card.with h3 { color: var(--white); }
  .comp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .comp-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; line-height: 1.5;
  }
  .comp-card.without .comp-list li { color: var(--gray-800); }
  .comp-card.with .comp-list li { color: rgba(255,255,255,0.75); }
  .comp-icon { flex-shrink: 0; margin-top: 2px; font-size: 16px; }

  /* ─── TESTIMONIALS ─────────────────────── */
  .testimonials-bg { background: var(--gray-100); }
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 52px;
  }
  .testi-card {
    background: var(--white);
    padding: 30px 26px; border-radius: 4px;
    border-bottom: 3px solid var(--red);
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  }
  .testi-stars { color: var(--red); font-size: 17px; letter-spacing: 2px; }
  .testi-text {
    font-size: 15px; color: var(--gray-800);
    line-height: 1.7; font-style: italic;
  }
  .testi-footer { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gray-200);
    overflow: hidden; flex-shrink: 0;
  }
  .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .testi-name { font-weight: 700; font-size: 14px; color: var(--black); }
  .testi-vehicle { font-size: 12px; color: var(--gray-400); letter-spacing: 0.5px; }

  /* ─── FAQ ─────────────────────────────────── */
  .faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: 4px; overflow: hidden;
  }
  .faq-question {
    width: 100%; text-align: left;
    background: var(--white);
    padding: 20px 24px;
    font-size: 16px; font-weight: 600; color: var(--black);
    cursor: pointer; border: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
  }
  .faq-question:hover { background: var(--gray-100); }
  .faq-arrow {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--red); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px;
    transition: transform 0.3s;
  }
  .faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px; color: var(--gray-600); line-height: 1.7;
    background: var(--white);
  }
  .faq-item.open .faq-answer { display: block; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  /* ─── SERVICE AREAS ───────────────────────── */
  .areas-bg { background: var(--black); }
  .areas-bg .section-title { color: var(--white); }
  .areas-bg .section-sub { color: rgba(255,255,255,0.55); }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px; margin-top: 52px;
  }
  .area-item {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 22px 18px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    cursor: default;
  }
  .area-item:hover { border-color: var(--red); transform: translateY(-2px); }
  .area-item .area-icon { font-size: 22px; margin-bottom: 10px; }
  .area-item .area-name { color: var(--white); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }




@media (max-width: 767px) 
 
 { 

  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

}




  /* ─── FINAL CTA ──────────────────────────── */
  .final-cta {
    position: relative;
    background: var(--black);
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
  }
  .final-cta-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1600&q=70') center/cover no-repeat;
    opacity: 0.18;
  }
  .final-cta-inner {
    position: relative; z-index: 2;
    max-width: 1180px; margin: 0 auto;
    display: flex;  align-items: center; gap: 20px;
    justify-content: space-between;
  }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    color: var(--white); letter-spacing: 2px;
    line-height: 1.0;
    text-align: left;
  }
  .final-cta h2 em { color: var(--red); font-style: normal; }
  .final-cta p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; line-height: 1.7;text-align: left; }
  .final-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
  .final-form {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 4px;
    width: 100%; max-width: 500px;
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 12px;
    border-top: 4px solid var(--red);
    min-width: 400px;
        text-align: left;
  }
  .final-form h3 {
    font-family: var(--font-display);
    font-size: 22px; letter-spacing: 1px;
    color: var(--black); margin-bottom: 4px;
  }

 @media (max-width: 767px) 
 
 { 

  .final-cta-inner { flex-direction: column; gap: 32px; }

}


  /* ─── CONTACT ─────────────────────────────── */
  .contact-strip {
    background: var(--red);
    padding: 52px 24px;
    text-align: center;
  }
  .contact-strip h2 {
    font-family: var(--font-display);
    color: var(--white); font-size: 36px; letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .contact-strip p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 20px; }
  .contact-phone {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 48px; letter-spacing: 2px;
    text-decoration: none; display: block;
    transition: opacity 0.2s;
  }
  .contact-phone:hover { opacity: 0.85; }

  /* ─── FOOTER ──────────────────────────────── */
  .footer {
    background: var(--black);
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-inner {
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { color: rgba(255,255,255,0.4); font-size: 13px; }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; }
  .footer-links a:hover { color: var(--white); }

  /* ─── STICKY MOBILE CTAs ──────────────────── */
  .sticky-mobile-ctas {
    position: fixed; bottom: 0; left: 0; right: 0;
    /* display: grid; grid-template-columns: 1fr 1fr; */
    z-index: 999;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  }
  @media (min-width: 768px) { .sticky-mobile-ctas { display: none; } }

  .sticky-btn {
    padding: 16px 10px;
    font-weight: 700; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    border: none; cursor: pointer;
  }
  .sticky-call { background: var(--red); color: var(--white); }
  .sticky-quote { background: var(--red); color: var(--white); }

 @media (max-width: 767px) { 
  
  .btn-outline {
    padding: 0px 0px;
        border: 1.5px solid rgb(255 255 255 / 0%);
  } 

}

  /* ─── UTILITY ─────────────────────────────── */
  .text-center { text-align: center; }
  .mt-cta { margin-top: 44px; display: flex; justify-content: center; }

  /* Divider line */
  .divider {
    width: 48px; height: 3px; background: var(--red);
    margin: 20px 0 28px;
  }

  /* Fade-in animation */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.6s ease both; }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.3s; }

  @media (prefers-reduced-motion: reduce) {
    .fade-up { animation: none; }
  }

  /* bottom padding for sticky bar on mobile */
  @media (max-width: 767px) { body { padding-bottom: 56px; } }

  /* ─── TOAST NOTIFICATION ──────────────────── */
  .toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
  }
  .toast {
    pointer-events: auto;
    background: #141414;
    color: var(--white);
    padding: 16px 20px;
    border-radius: 4px;
    border-left: 4px solid var(--red);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    max-width: calc(100vw - 48px);
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .toast.success {
    border-left-color: #2ec4b6;
  }
  .toast.success .toast-icon {
    color: #2ec4b6;
  }
  .toast.error {
    border-left-color: var(--red);
  }
  .toast.error .toast-icon {
    color: var(--red);
  }
  .toast.warning {
    border-left-color: #ff9f1c;
  }
  .toast.warning .toast-icon {
    color: #ff9f1c;
  }
  .toast-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toast-message {
    flex-grow: 1;
    line-height: 1.4;
  }

  /* ─── FORM VALIDATION SHAKE ───────────────── */
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
  }
  .shake {
    animation: shake 0.4s ease-in-out;
  }
  .form-group input.invalid, .form-group select.invalid {
    border-color: var(--red) !important;
    background-color: rgba(200, 16, 46, 0.03);
  }


  @media(max-width:676px){
 .stop-on-m
  {
    display: none;
  }
}

