  <style>
    /* ======= VARIABLES ======= */
    :root{
  --bg:#0f1724;
  --panel:#0b1220;
  --muted:#94a3b8;
  --white:#ffffff;
  --red:#dc2626;
  --red-dark:#b91c1c;
  --accent:#f97316;
  --glass: rgba(255,255,255,0.04);
  --shadow: 0 12px 40px rgba(2,6,23,0.6);
  --radius:14px;
  --maxw:1240px;
  --transition: 260ms cubic-bezier(.2,.9,.3,1);
  --container-padding: 1.25rem;
  /* Update font family to include Syne */
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --header-font: "Syne", sans-serif; /* Add this line */
}
[id] {
    scroll-margin-top: 90px; 
}
    /* ======= BASE ======= */
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      background:linear-gradient(180deg,var(--bg),#071028 120%);
      color:var(--white);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.4;
      font-size:16px;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    img{display:block;max-width:100%}
    button{font:inherit}
/* Apply Syne font to all H2 tags */
h2 {
  font-family: var(--header-font);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
}

/* Specific section H2 styles */
.section__header h2,
.ceo-section .section__header h2,
.appointment__header h2,
.estimation__header h2,
.services-section .section__title,
.packages__header h2,
.insurance-warranty-section .section__header h2,
.promotions-section .section__header h2 {
  font-family: var(--header-font);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
}

    /* ======= PREMIUM NAVBAR STYLES ======= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem var(--container-padding);
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgb(2, 6, 23), rgba(2, 6, 23, 0.501));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0);
  backdrop-filter: blur(25px);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  position:sticky;
  top:0;
}

/* Brand */
.brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.brand-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) invert(0);
  
}



.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.brand-name small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  color: var(--muted);
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem !important;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgb(15, 23, 36);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.dropdown-item i {
  color: var(--red);
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.dropdown-item:hover {
  background: rgba(220, 38, 38, 0.1);
  color: var(--white);
  transform: translateX(5px);
}

/* CTA Button */
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.6rem;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(2, 6, 23, 0.977);
  backdrop-filter: blur(30px);
  z-index: 1001;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--container-padding);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.mobile-nav-links {
  padding: 2rem var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 1rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateX(10px);
}

/* Mobile Dropdown */
.mobile-dropdown {
  margin: 0.5rem 0;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.mobile-dropdown-toggle.active {
  background: rgba(220, 38, 38, 0.1);
  border-color: var(--red);
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}

.mobile-dropdown-menu.active {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}

.mobile-dropdown-item i {
  color: var(--red);
  font-size: 0.9rem;
  width: 16px;
}

.mobile-dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateX(5px);
}

/* Mobile CTA */
.mobile-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0.25rem;
  }
  
  .nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .cta-phone {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand-name small {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.5rem 1rem;
  }
  
  .brand-logo img {
    height: 35px;
  }
  
  .brand-name strong {
    font-size: 0.85rem;
  }
}
    /* ======= HERO ======= */
    .hero{
      margin-top:84px; /* header space */
      display:grid;
      grid-template-columns: 1fr 520px;
      gap: clamp(1rem, 4vw, 2.5rem);
      align-items:center;
      max-width:var(--maxw);
      margin-left:auto;margin-right:auto;
      padding:2.25rem var(--container-padding);
      min-height:calc(100vh - 120px);
    }

    /* left column (text) */
    .hero-left{padding:1rem 0}
    .badge{
      display:inline-flex;align-items:center;gap:0.6rem;padding:0.45rem 0.8rem;
      background:var(--glass);border-radius:999px;color:var(--muted);font-weight:700;
      border:1px solid rgba(255,255,255,0.02);
    }
    .hero-title{
      font-size:clamp(2rem,4.8vw,3.4rem);
      line-height:1.02;margin:1rem 0 0.6rem;font-weight:800;
      letter-spacing:-0.02em;
    }
    .hero-title .highlight{
      color:var(--red);
      text-decoration:underline 6px rgba(217,70,70,0.12);
      text-underline-offset:8px;
    }
    
    /* NEW: Hero description with Read More */
    .hero-desc-wrapper {
      margin-bottom: 1.25rem;
      position: relative;
    }
    
    .hero-desc{
      color:var(--muted);
      max-width:62ch;
      font-size:1.03rem;
      overflow: hidden;
      transition: max-height 0.4s ease;
      display: block;
    }
    
    .hero-desc.collapsed {
      max-height: 4.8em; /* Show approximately 3 lines of text */
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }
    
    .hero-desc.expanded {
      max-height: none;
    }
    
    .hero-read-more-btn {
      background: transparent;
      border: none;
      color: var(--red);
      font-weight: 600;
      cursor: pointer;
      padding: 5px 0;
      margin-top: 8px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s ease;
      font-size: 1.03rem;
    }
    
    .hero-read-more-btn:hover {
      color: var(--red-dark);
    }
    
    .hero-read-more-btn i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .hero-read-more-btn.expanded i {
      transform: rotate(180deg);
    }

    .feature-list{
      display:flex;gap:0.8rem;flex-wrap:wrap;margin-bottom:1.35rem;
    }
    .feature{
      display:inline-flex;align-items:center;gap:0.6rem;padding:0.5rem 0.8rem;background:rgba(255,255,255,0.02);
      border-radius:10px;color:var(--muted);font-weight:600;font-size:0.95rem;border:1px solid rgba(255,255,255,0.02);
    }

    .hero-actions{display:flex;gap:0.9rem;align-items:center;flex-wrap:wrap}
    .btn{
      display:inline-flex;align-items:center;gap:0.6rem;padding:0.75rem 1.1rem;border-radius:12px;
      font-weight:700;border:0;cursor:pointer;transition:var(--transition);
    }
    .btn-primary{background:linear-gradient(90deg,var(--red),var(--red-dark));color:var(--white);box-shadow:0 10px 30px rgba(217,70,70,0.12)}
    .btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--white)}

    /* right column (visual) */
    .hero-right{
      position:relative;padding:1rem;
      min-height:420px;
      display:grid;place-items:center;
    }

    /* background video wrapper */
    .media-wrap{
      width:100%;height:100%;border-radius:var(--radius);
      overflow:hidden;position:relative;box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,0.03);
      background:linear-gradient(180deg, rgba(2,6,23,0.6), rgba(2,6,23,0.45));
    }

    video.bg-video{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
      filter: saturate(0.95) contrast(1.02) brightness(0.9);
      transform:scale(1.03);
    }

    /* overlay gradient for readability */
    .media-overlay{
      position:absolute;inset:0;background:linear-gradient(180deg, rgba(2,6,23,0.15) 0%, rgba(2,6,23,0.45) 55%, rgba(2,6,23,0.75) 100%);
      pointer-events:none;
    }

    /* main hero image (fallback + lazy loaded) */
    .hero-photo{
      position:relative;z-index:2;width:100%;height:100%;display:flex;align-items:flex-end;
      padding:1.4rem;
    }

    /* FIXED: Carousel card styling for better responsiveness */
    .car-card{
      width:100%;display:flex;flex-direction:column;align-items:flex-start;gap:0.8rem;
      background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border-radius:10px;padding:0.9rem;border:1px solid rgba(255,255,255,0.03);backdrop-filter: blur(4px);
      min-height: 180px; /* Ensure consistent height */
    }
    
    .car-thumb{
      width:100%;height:120px;flex-shrink:0;border-radius:8px;overflow:hidden;
    }
    
    .car-thumb img{
      width:100%;height:100%;object-fit:cover;
    }
    
    .car-meta{flex:1;width:100%}
    .car-meta h4{
      margin:0 0 0.4rem;font-size:1.05rem;line-height:1.3;
      overflow-wrap: break-word;word-break: break-word;
    }
    .car-meta p{
      margin:0;color:var(--muted);font-size:0.92rem;line-height:1.4;
      overflow-wrap: break-word;word-break: break-word;
    }

    /* floating service badges */
    .services-floating{
      position:absolute;inset:auto auto 12px 12px;display:flex;gap:0.8rem;z-index:5;
    }
    .service-pill{background:linear-gradient(90deg,#071a2b,rgba(255,255,255,0.02));padding:0.5rem 0.8rem;border-radius:999px;font-weight:700;border:1px solid rgba(255,255,255,0.03)}

    /* badges area (insurance logos) */
    .badges{
      display:flex;gap:0.7rem;align-items:center;margin-top:0.9rem;flex-wrap:wrap;
    }
    .badge-ico{display:inline-grid;place-items:center;padding:0.5rem 0.6rem;border-radius:10px;background:rgba(255,255,255,0.02);color:var(--muted);font-weight:700;border:1px solid rgba(255,255,255,0.02);font-size:0.9rem}

    /* ======= MODAL (Get Estimate) ======= */
    .modal-backdrop{position:fixed;inset:0;background:rgba(2,6,23,0.6);display:none;align-items:center;justify-content:center;z-index:80;padding:1.25rem}
    .modal{max-width:740px;width:100%;background:linear-gradient(180deg, #051020, #071528);border-radius:12px;padding:1.25rem;border:1px solid rgba(255,255,255,0.04);box-shadow:0 30px 80px rgba(2,6,23,0.7)}
    .modal h3{margin:0 0 0.6rem;font-size:1.25rem}
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.85rem}
    .form-row{display:flex;flex-direction:column;gap:0.4rem}
    label{font-size:0.85rem;color:var(--muted)}
    input,textarea,select{
      background:transparent;border:1px solid rgba(255,255,255,0.06);padding:0.6rem 0.75rem;border-radius:8px;color:var(--white);
      outline:none;font-size:0.95rem;
    }
    textarea{min-height:92px;resize:vertical}
    .form-actions{display:flex;gap:0.6rem;align-items:center;justify-content:flex-end;margin-top:0.9rem}
    .note{font-size:0.85rem;color:var(--muted);margin-top:0.4rem}

    /* toast */
    .toast{position:fixed;right:16px;bottom:16px;background:linear-gradient(90deg,var(--red),var(--red-dark));color:white;padding:0.7rem 1rem;border-radius:10px;box-shadow:0 12px 40px rgba(0,0,0,0.5);display:none;z-index:120}

    /* Focus & accessibility */
    :focus{outline:3px solid rgba(220,38,38,0.18);outline-offset:3px;border-radius:8px}
    .sr-only{position:absolute;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

    /* ======= CAROUSEL STYLING ======= */
    .carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 15px;
      padding: 5px 0;
    }

    /* FIXED: Better carousel card sizing for all devices */
    .carousel .car-card {
      flex: 0 0 280px; /* Fixed width for desktop */
      min-width: 0; /* Allow shrinking if needed */
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      padding: 0.9rem;
      box-sizing: border-box;
    }

    .carousel .car-thumb {
      width: 100%;
      height: 120px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }

    .carousel .car-meta {
      flex: 1;
      min-width: 0; /* Allow text wrapping */
    }

    .carousel .car-meta h4 {
      font-size: 0.98rem;
      line-height: 1.25;
      margin: 0 0 0.4rem;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .carousel .car-meta p {
      font-size: 0.88rem;
      line-height: 1.3;
      margin: 0;
      color: var(--muted);
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Est time stays below text neatly */
    .car-card > div[style] {
      margin-left: 0;
      align-self: flex-end;
      font-size: 0.78rem;
      white-space: nowrap;
      margin-top: auto;
    }

    /* Navigation Arrows */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(15, 23, 36, 0.7);
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      font-size: 18px;
      padding: 8px 12px;
      cursor: pointer;
      z-index: 20;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .carousel-btn:hover {
      background: rgba(15, 23, 36, 0.9);
      border-color: rgba(255,255,255,0.2);
    }

    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }

    /* Floating Hero Logo - Right Side Over Video */
    .hero-logo {
      position: absolute;
      right: 0; /* locks to far right edge */
      top: 15%;
      transform: translateY(-50%);
      z-index: 15;
      height: 85px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.35));
      opacity: 0;
      animation: heroLogoFadeUp .8s ease-out forwards;
      transition: transform .4s ease, filter .4s ease;
    }

    /* Hover effect */
    .hero-logo:hover {
      transform: translateY(-50%) rotate(-1.5deg) scale(1.03);
      filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.45));
    }

    @keyframes heroLogoFadeUp {
      from { opacity: 0; transform: translateY(-40%); }
      to   { opacity: 1; transform: translateY(-50%); }
    }

    .brand-logo img {
      height: 5px; /* Increase this number to make it bigger */
      width: auto;
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
    }
    
    @media (min-width: 1024px) {
      .brand-logo img {
          height: 55px;
      }
    }
    
    .brand-logo img {
      animation: fadeInUp 0.7s ease-out forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
    }

    /* ======= RESPONSIVE ======= */
    @media (max-width:1100px){
      .hero{grid-template-columns:1fr;gap:1.2rem;padding-top:1.6rem}
      .hero-right{order: -1;min-height:360px}
      .media-wrap{height:420px}
    }
    
    @media (max-width:768px){
      .nav-links{display:none}
      .mobile-toggle{display:inline-flex}
      .brand-name small{display:none}
      .hero{padding:1rem;min-height:auto}
      .media-wrap{height:320px}
      .form-grid{grid-template-columns:1fr}
      
      /* FIXED: Mobile carousel adjustments */
      .carousel .car-card {
        flex: 0 0 85%; /* Nearly full width on mobile */
        min-width: 0;
      }
      
      .carousel .car-thumb {
        height: 100px; /* Slightly smaller on mobile */
      }
      
      .carousel .car-meta h4 {
        font-size: 0.92rem;
      }
      
      .carousel .car-meta p {
        font-size: 0.82rem;
      }
      
      .hero-logo {
        height: 65px;
        right: 10px;
        top: 15%;
        transform: translateY(0);
      }
    }
    
    @media (max-width:480px){
      /* FIXED: Extra small device adjustments */
      .carousel .car-card {
        flex: 0 0 90%; /* Even wider on very small screens */
        padding: 0.7rem;
      }
      
      .carousel .car-thumb {
        height: 90px;
      }
      
      .carousel .car-meta h4 {
        font-size: 0.85rem;
      }
      
      .carousel .car-meta p {
        font-size: 0.75rem;
      }
      
      .car-card > div[style] {
        font-size: 0.7rem;
      }
    }

    /* prefers-reduced-motion */
    @media (prefers-reduced-motion:reduce){
      *{animation:none !important;transition:none !important}
    }

/* Extra large option */
.brand-logo img {
  height: 110px; /* Even larger option */
  width: auto;
  object-fit: contain;
}

/* For mobile with extra large logo */
@media (max-width: 768px) {
  .brand-logo img {
    height: 70px;
  }
}



































    

    /* ======= REVIEWS SECTION ======= */
    .reviews-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 100px 20px;
      background: transparent;
      position: relative;
      z-index: 1;
    }

    .reviews-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, var(--bg), #071028 120%);
      z-index: -1;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .google-badge .fab.fa-google {
      font-size: 2rem;
      background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .rating {
      display: flex;
      justify-content: center;
      gap: 10px;
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 10px;
    }

    .stars i {
      color: #F4C430;
    }

    .reviews-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
      gap: 35px;
      position: relative;
      z-index: 2;
    }

    /* Review card styling */
    .review-card.hidden {
      display: none;
    }

    .review-card {
      background: rgba(15, 23, 36, 0.7);
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform .3s ease, box-shadow .3s ease;
      border: 1px solid rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .review-header {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 18px;
    }

    .reviewer-info {
      flex: 1;
    }

    .reviewer-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background:#600008;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight: bold;
      font-size:1.1rem;
    }

    .reviewer-meta {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .reviewer-meta span {
      font-size:.9rem;
      color:var(--muted);
    }

    .review-stars {
      margin-top: 5px;
    }

    .review-stars i {
      color: #F4C430;
      font-size: 0.9rem;
    }

    .review-text-wrapper {
      position: relative;
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .review-text {
      color: var(--white);
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .review-text.collapsed {
      max-height: 4.8em;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .review-text.expanded {
      max-height: none;
    }

    .read-more-btn {
      background: transparent;
      border: none;
      color: var(--red);
      font-weight: 600;
      cursor: pointer;
      padding: 5px 0;
      margin-top: 8px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s ease;
    }

    .read-more-btn:hover {
      color: var(--red-dark);
    }

    .read-more-btn i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .read-more-btn.expanded i {
      transform: rotate(180deg);
    }

    

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .load-more-container {
        display: none;
      }
      
      .review-card.hidden {
        display: block;
      }
    }

    .review-photos {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .review-photos img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 12px;
      transition: opacity .3s ease;
      max-width: 100%;
      cursor: pointer;
    }

    .review-photos img:hover {
      opacity:.85;
    }

    @media (max-width: 768px) {
      .review-photos img {
        width: 80px;
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .review-photos img {
        width: 70px;
        height: 70px;
      }
      
      .review-card {
        padding: 20px;
      }
    }

    @media(max-width:900px) {
      .reviews-container {
        display:flex;
        overflow-x:auto;
        scroll-snap-type: x mandatory;
        gap:20px;
        padding-bottom:15px;
      }
      .review-card {
        min-width:280px;
        scroll-snap-align:center;
      }
    }

    /* ======= REVIEW PHOTO MODAL ======= */
    .review-photo-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      padding: 20px;
    }

    .review-photo-modal.active {
      display: flex;
    }

    .review-photo-modal-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .review-photo-modal-img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 12px;
      object-fit: contain;
    }

    .review-photo-modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: var(--red);
      color: white;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-photo-modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .review-photo-modal-nav:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    .review-photo-modal-prev {
      left: 20px;
    }

    .review-photo-modal-next {
      right: 20px;
    }

    .review-photo-modal-counter {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1rem;
    }






   

/* Load More Button Styles */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.load-more-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background-color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Initially hide cards beyond the first 4 */
.hidden-card {
  display: none;
}

/* Show all cards when grid has show-all class */
.range__grid.show-all .hidden-card {
  display: block;
}

/* Premium Load More Button Styles */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  position: relative;
}

.load-more-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color) 0%, #a02c2c 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.load-more-btn:hover::before {
  left: 100%;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
  background: linear-gradient(135deg, #2c5aa0 0%, var(--primary-color) 100%);
}

.load-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.load-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--white);
  transition: all 0.3s ease;
}

.load-more-btn:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Button loading state (optional) */
.load-more-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.load-more-btn.loading::after {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* Enhanced hidden cards transition */
.hidden-card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.range__grid.show-all .hidden-card {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for cards */
.range__grid.show-all .hidden-card:nth-child(5) {
  transition-delay: 0.1s;
}

.range__grid.show-all .hidden-card:nth-child(6) {
  transition-delay: 0.2s;
}
/* Premium Load More Button Styles - Red Theme */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  position: relative;
}

.load-more-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--white);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.load-more-btn:hover::before {
  left: 100%;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.load-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.load-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--white);
  transition: all 0.3s ease;
}

.load-more-btn:hover::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Button loading state */
.load-more-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.load-more-btn.loading::after {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* Enhanced hidden cards transition */
.hidden-card {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.range__grid.show-all .hidden-card {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for cards */
.range__grid.show-all .hidden-card:nth-child(5) {
  transition-delay: 0.1s;
}

.range__grid.show-all .hidden-card:nth-child(6) {
  transition-delay: 0.2s;
}
.load-more-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  /* rest of your styles remain the same */
}

.load-more-btn::after {
  right: 1.25rem;
}

/* Enhanced Loading Effects */
.load-more-btn.loading {
  pointer-events: none;
  opacity: 0.9;
  padding-right: 3.5rem;
}

.load-more-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Text fade out animation */
.load-more-btn .btn-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.load-more-btn.loading .btn-text {
  opacity: 0.7;
}

/* Pulse animation for the button */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  }
}

.load-more-btn.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Spinner animation */
@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

/* Progress bar loading effect (alternative) */
.load-more-btn.progress-loading {
  position: relative;
  overflow: hidden;
}

.load-more-btn.progress-loading::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  animation: progress 1.5s ease-in-out infinite;
}

@keyframes progress {
  0% { width: 0%; opacity: 1; }
  50% { width: 70%; opacity: 0.8; }
  100% { width: 100%; opacity: 0; }
}

/* Dots loading animation (alternative text) */
.load-more-btn.dots-loading .btn-text::after {
  content: '';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}
/* Spinner for loading state - make sure this applies to all load-more-btn */
.load-more-btn.loading::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Make sure the loading state has proper padding */
.load-more-btn.loading {
  pointer-events: none;
  opacity: 0.9;
  padding-right: 3.5rem !important;
}

/* Hide Load More Reviews button on small devices */
@media (max-width: 899px) {
  #load-more-reviews {
    display: none !important;
  }
  
  .load-more-container:has(#load-more-reviews) {
    display: none !important;
  }
}

/* Ensure it shows on larger devices */
@media (min-width: 900px) {
  #load-more-reviews {
    display: inline-block;
  }
  
  .load-more-container:has(#load-more-reviews) {
    display: flex;
  }
}
/* Show all review cards on medium devices (770px - 899px) */
@media (min-width: 770px) and (max-width: 899px) {
  .review-card.hidden {
    display: block !important;
  }
  
  .reviews-section .load-more-container {
    display: none !important;
  }
}
.load-more-btn {
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}

.load-more-btn.loading {
  padding-right: 3rem;
}

.load-more-btn::after {
  right: 1rem;
}
/* ======= CEO SECTION ======= */
.ceo-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.ceo__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.ceo__text {
  padding-right: 2rem;
}

.ceo__text .section__header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section__subtitle {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ceo__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.02em;
}

.ceo__story p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ceo__quote {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-left: 4px solid var(--red);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.6;
}

.ceo__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Side - Visual */
.ceo__visual {
  position: sticky;
  top: 120px;
}

.ceo__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.ceo__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ceo__image:hover img {
  transform: scale(1.05);
}

.ceo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.ceo__info {
  text-align: center;
  padding: 0 1rem;
}

.ceo__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.ceo__position {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.ceo__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--muted);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social__link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ceo__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ceo__text {
    padding-right: 0;
    text-align: center;
  }
  
  .ceo__text .section__header {
    text-align: center;
  }
  
  .ceo__visual {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .ceo__stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    padding: 60px 0;
  }
  
  .ceo__content {
    gap: 2.5rem;
  }
  
  .ceo__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
  
  .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .stat__number {
    font-size: 2rem;
    margin-bottom: 0;
  }
  
  .ceo__quote {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
  }
  
  .ceo__image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .ceo__social {
    gap: 0.75rem;
  }
  
  .social__link {
    width: 40px;
    height: 40px;
  }
  
  .ceo__image img {
    height: 300px;
  }
}

/* Vision & Leadership Section Heading */
.ceo-section .section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.ceo-section .section__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 0;
}

.ceo-section .section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Even more readable version */
.ceo-section .section__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -0.5px; /* Much better spacing */
  line-height: 1.3;
  margin: 0;
}

.ceo-section .section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 768px) {
  .ceo-section .section__header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }
  
  .ceo-section .section__header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ceo-section .section__header h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
  }
  
  .ceo-section .section__header p {
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .ceo-section .section__header h2 {
    font-size: 1.75rem;
    letter-spacing: -0.2px;
    line-height: 1.2;
  }
  
  .ceo-section .section__header p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .ceo__text h2 {
    font-size: 1.5rem;
  }
  
  .ceo__stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .stat__number {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .ceo-section .section__header h2 {
    font-size: 1.4rem;
    line-height: 1.1;
  }
}
@media (max-width: 400px) {
  .ceo-section .section__header h2 {
    font-size: 1.5rem; /* Reduce further */
    word-wrap: break-word;
  }
}

/* Appointment Section */
.appointment-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
}

.appointment__header {
  text-align: center;
  margin-bottom: 4rem;
}

.appointment__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.appointment__header p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.appointment__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form Styles */
.appointment__form {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group.full-width {
  grid-column: 1 / -1;
}

.form__group label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form__group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Info Cards */
.appointment__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info__card,
.contact__card,
.emergency__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.info__card h3,
.contact__card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.benefits-list i {
  color: var(--red);
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--red);
}

.emergency__card {
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.emergency__card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.emergency__card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.emergency__card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .appointment__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .appointment__info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .appointment-section {
    padding: 60px 0;
  }
  
  .appointment__header h2 {
    font-size: 2.5rem;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .appointment__form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .appointment__header h2 {
    font-size: 2rem;
  }
  
  .appointment__form {
    padding: 1.5rem;
  }
  
  .info__card,
  .contact__card,
  .emergency__card {
    padding: 1.5rem;
  }
}

/* Estimation Section */
.estimation-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
}

.estimation__header {
  text-align: center;
  margin-bottom: 4rem;
}

.estimation__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.estimation__header p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.estimation__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Upload Section */
.upload__section {
  margin: 2rem 0;
}

.upload__section label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.upload__subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.25rem 0 1rem 0;
}

.upload__area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.upload__area:hover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.05);
}

.upload__area.dragover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.1);
}

.upload__area i {
  font-size: 3rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.upload__area p {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.upload__area span {
  color: var(--muted);
  font-size: 0.9rem;
}

.uploaded__images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.image-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-image {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.upload__tips {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.upload__tips h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.upload__tips ul {
  color: var(--muted);
  padding-left: 1.25rem;
  margin: 0;
}

.upload__tips li {
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.process__card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  background: var(--red);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.benefits__card,
.support__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.support__card {
  text-align: center;
}

.support__card i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.support__card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.support__card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.support-contacts {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.support-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .estimation__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .estimation__info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .estimation-section {
    padding: 60px 0;
  }
  
  .estimation__header h2 {
    font-size: 2.5rem;
  }
  
  .upload__area {
    padding: 2rem 1rem;
  }
  
  .support-contacts {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .estimation__header h2 {
    font-size: 2rem;
  }
  
  .uploaded__images {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Services Section - Optimized for Performance */
.services-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
  content-visibility: auto;
  contain: layout style paint;
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.section__subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  contain: layout style paint;
}

.service__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  position: relative;
  transform: translateZ(0); /* Hardware acceleration */
}

.service__card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f1724; /* Fallback color */
  background: linear-gradient(45deg, #0f1724 0%, #1e293b 100%);
}

.service__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: shimmer 2s infinite;
  z-index: 2;
}

.service__image img.loaded ~ .service__overlay::before {
  display: none;
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: blur(5px);
  opacity: 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.service__image img.loaded {
  filter: blur(0px);
  opacity: 1;
}

.service__card:hover .service__image img {
  transform: scale(1.05);
}

.service__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.service__content {
  padding: 2rem;
  position: relative;
}

.service__icon {
  position: absolute;
  top: -24px;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  z-index: 3;
}

.service__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.service__content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service__features li {
  color: var(--muted);
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.service__cta:hover {
  color: var(--white);
  gap: 0.75rem;
}

.service__cta i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service__cta:hover i {
  transform: translateX(3px);
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section__title {
    font-size: 2.5rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service__content {
    padding: 1.5rem;
  }
  
  .service__image::before {
    animation: shimmer 3s infinite; /* Slower on mobile */
  }
}

@media (max-width: 480px) {
  .section__title {
    font-size: 2rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .service__card,
  .service__image img,
  .service__cta i {
    transition: none;
  }
  
  .service__image::before {
    animation: none;
  }
}

/* === SERVICES SECTION FIX === */
.services-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%) !important;
  padding: 100px 0 !important;
}

.services__header {
  text-align: center !important;
  margin-bottom: 4rem !important;
}

.services__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  max-width: var(--maxw) !important;
  margin: 0 auto 3rem auto !important;
  padding: 0 var(--container-padding) !important;
}

.service__card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.service__content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.service__content p {
  flex: 1 !important;
}

.service__cta {
  margin-top: auto !important;
}

/* Tablet */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem !important;
  }
}



/* Contact & Location Section */
.contact-location-section {
  background: linear-gradient(180deg, #071028 0%, var(--bg) 100%);
  padding: 100px 0;
  position: relative;
}

.contact-location__header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Details */
.contact__details {
  order: 2; /* Right side on desktop */
}

.contact__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  height: fit-content;
}

.contact__header {
  margin-bottom: 2rem;
  text-align: center;
}

.contact__header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem 0;
}

.contact__header p {
  color: var(--muted);
  margin: 0;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,  rgba(255,255,255,0.04), rgba(255,255,255,0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__text h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.contact__text p {
  color: var(--muted);
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.contact__link {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: var(--white);
}

/* Contact Features */
.contact__features {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__features h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature__item i {
  color: var(--red);
  font-size: 1rem;
  width: 16px;
}

/* Emergency Contact */
.emergency__contact {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.emergency__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.emergency__contact p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.emergency__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.emergency__btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Location Map */
.location__map {
  order: 1; /* Left side on desktop */
}

.map__container {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  height: 600px;
  position: relative;
}

.map__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #0f1724 0%, #1e293b 100%);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.map__placeholder i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.map__placeholder h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.map__placeholder p {
  margin: 0 0 2rem 0;
}

.map__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.map__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.map__btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-location__content {
    gap: 2rem;
  }
  
  .contact__card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-location-section {
    padding: 60px 0;
  }
  
  .contact-location__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__details {
    order: 1; /* Contact first on mobile */
  }
  
  .location__map {
    order: 2; /* Map second on mobile */
  }
  
  .map__container {
    height: 400px;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .map__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .map__btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact__card {
    padding: 1.5rem;
  }
  
  .contact__item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact__icon {
    align-self: center;
  }
  
  .map__container {
    height: 350px;
  }
}
/* Contact Section Mobile Fixes */
.contact-location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Map Container - FIXED */
.map__container {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  height: 600px;
  position: relative;
}

/* Map Wrapper for responsive iframe */
.map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Mobile Fallback (hidden on desktop) */
.map-mobile-fallback {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #0f1724 0%, #1e293b 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.mobile-map-content {
  color: var(--muted);
}

.mobile-map-content i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.mobile-map-content h4 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.mobile-map-content p {
  margin: 0 0 2rem 0;
}

.mobile-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-map-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .contact-location__content {
    gap: 2rem;
  }
  
  .map__container {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .contact-location__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact__details {
    order: 1; /* Contact first on mobile */
  }
  
  .location__map {
    order: 2; /* Map second on mobile */
  }
  
  .map__container {
    height: 400px;
  }
  
  /* Hide iframe on very small screens, show fallback */
  @media (max-width: 480px) {
    .map-wrapper {
      display: none;
    }
    
    .map-mobile-fallback {
      display: flex;
    }
    
    .map__container {
      height: 300px;
    }
    
    .contact__item {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    
    .contact__icon {
      align-self: center;
    }
    
    .features__grid {
      grid-template-columns: 1fr;
    }
  }
}

@media (max-width: 380px) {
  .map__container {
    height: 250px;
  }
  
  .mobile-map-content {
    padding: 1rem;
  }
  
  .mobile-map-content i {
    font-size: 2rem;
  }
  
  .mobile-map-content h4 {
    font-size: 1.2rem;
  }
}

/* Ensure iframe doesn't break layout */
.map__container iframe {
  display: block;
  border: none;
}

/* Contact item mobile fixes */
@media (max-width: 480px) {
  .contact__info {
    gap: 1rem;
  }
  
  .contact__item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .emergency__contact {
    padding: 1.5rem;
  }
  
  .emergency__btn {
    width: 100%;
    justify-content: center;
  }
}
/* MOBILE FIXES FOR 479PX AND BELOW */
@media (max-width: 479px) {
  .contact-location-section {
    padding: 40px 0;
  }
  
  .contact-location__header {
    margin-bottom: 2rem;
  }
  
  .section__title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
  
  .section__subtitle {
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
  }
  
  /* Contact Card Mobile Fix */
  .contact__card {
    padding: 1.5rem !important;
    margin: 0 -0.5rem;
  }
  
  .contact__header {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .contact__header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .contact__header p {
    font-size: 0.9rem;
  }
  
  /* Contact Info Mobile Fix */
  .contact__info {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact__item {
    flex-direction: row !important; /* Keep side-by-side on very small screens */
    text-align: left !important;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
  }
  
  .contact__icon {
    align-self: flex-start !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    flex-shrink: 0;
  }
  
  .contact__text {
    flex: 1;
    min-width: 0; /* Prevent text overflow */
  }
  
  .contact__text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .contact__text p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .contact__link {
    font-size: 0.8rem;
  }
  
  /* Features Grid Mobile Fix */
  .contact__features {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .contact__features h4 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .features__grid {
    grid-template-columns: 1fr 1fr !important; /* 2 columns on very small screens */
    gap: 0.75rem;
  }
  
  .feature__item {
    font-size: 0.8rem;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    text-align: center;
  }
  
  .feature__item i {
    font-size: 0.9rem;
    width: auto;
  }
  
  /* Emergency Contact Mobile Fix */
  .emergency__contact {
    padding: 1.25rem;
    text-align: center;
  }
  
  .emergency__badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .emergency__contact p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .emergency__btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Map Section Mobile Fix */
  .location__map {
    margin-top: 0;
  }
  
  .map__container {
    height: 250px;
    border-radius: 15px;
  }
  
  .mobile-map-content {
    padding: 1.5rem;
  }
  
  .mobile-map-content i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .mobile-map-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .mobile-map-content p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .mobile-map-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* EXTRA SMALL FIXES FOR 360PX AND BELOW */
@media (max-width: 360px) {
  .contact__card {
    padding: 1.25rem !important;
    margin: 0 -0.25rem;
  }
  
  .contact__item {
    padding: 0.875rem;
    gap: 0.75rem;
  }
  
  .contact__icon {
    width: 36px !important;
    height: 36px !important;
  }
  
  .contact__text h4 {
    font-size: 0.95rem;
  }
  
  .contact__text p {
    font-size: 0.8rem;
  }
  
  .features__grid {
    grid-template-columns: 1fr !important; /* Stack features on very small screens */
    gap: 0.5rem;
  }
  
  .feature__item {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
  
  .map__container {
    height: 220px;
  }
  
  .mobile-map-content {
    padding: 1rem;
  }
}

/* Ensure no horizontal scrolling */
@media (max-width: 479px) {
  .section__container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .contact-location__content {
    margin: 0 -0.5rem;
  }
}







/* Paint Packages Section */
.paint-packages-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.packages__header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Packages Category */
.packages__category {
  margin-bottom: 4rem;
}

.category__header {
  text-align: center;
  margin-bottom: 3rem;
}

.category__header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.category__header p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Packages Grid */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.package__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Package Badges */
.package__badge {
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.package__badge span {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.package__price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

/* Package Colors */
.bronze .package__badge {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/c12.png') center/cover no-repeat;
}
.bronze .package__price {
  color: #cd7f32;
}

.silver .package__badge {
 background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/s6.jpg') center/cover no-repeat;
}
.silver .package__price {
  color:  #c0c0c0;
}

.gold .package__badge {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/s5.jpg') center/cover no-repeat;
}
.gold .package__price {
  color:#ffaa00;
}

.platinum .package__badge {
background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/c4.png') center/cover no-repeat;}
.platinum .package__price {
  color : #e5e4e2;
}

/* Package Features */
.package__features {
  padding: 0 2rem 2rem;
}

.package__features h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

.package__features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.package__features li {
  color: var(--muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.package__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}

.package__warranty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.package__warranty i {
  color: var(--red);
}

.package__description {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Prep Services */
.prep-services {
  margin-bottom: 4rem;
}

.prep-services h3 {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 2rem 0;
}

.prep__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.prep__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.prep__card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
}

.prep__card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
}

.prep__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 1rem;
}

.prep__card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Spot Painting Section */
.spot-painting-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spot__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.spot__text h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 1.5rem 0;
}

.spot__text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.spot__process h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
}

.spot__process ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spot__process li {
  color: var(--muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.spot__process li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}

.spot__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 2px dashed rgba(220, 38, 38, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}

.image-placeholder i {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.image-placeholder p {
  margin: 0;
  font-weight: 600;
}

/* Detailing Section */
.detailing-section {
  margin-bottom: 4rem;
}

.detailing__header {
  text-align: center;
  margin-bottom: 3rem;
}

.detailing__header h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.detailing__header p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.detailing__packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.detailing__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.detailing__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.detailing__badge {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detailing__badge.silver {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #333;
}

.detailing__badge.gold {
  background: linear-gradient(135deg, #ffd700, #daa520);
  color: #333;
}

.detailing__badge.platinum {
  background: linear-gradient(135deg, #e5e4e2, #b4b4b4);
  color: #333;
}

.detailing__prices {
  padding: 1.5rem 2rem 0;
}

.price__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price__tier:last-child {
  border-bottom: none;
}

.vehicle-type {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.detailing__features {
  padding: 1rem 2rem 2rem;
  list-style: none;
  margin: 0;
}

.detailing__features li {
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.detailing__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* Additional Services */
.additional-services {
  margin-bottom: 4rem;
}

.additional-services h3 {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 2rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.service__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service__item:hover {
  border-color: var(--red);
  transform: translateX(5px);
}

.service__name {
  color: var(--muted);
  font-size: 0.95rem;
}

.service__price {
  color: var(--white);
  font-weight: 600;
}

.vehicle-surcharges,
.special-fees {
  margin-bottom: 2rem;
}

.vehicle-surcharges h4,
.special-fees h4 {
  color: var(--white);
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.surcharge__list,
.fees__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.surcharge__item,
.fee__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.surcharge__item span:first-child,
.fee__item span:first-child {
  color: var(--muted);
}

.surcharge__item span:last-child,
.fee__item span:last-child {
  color: var(--white);
  font-weight: 600;
}

/* CTA Section */
.packages-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.cta__content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.cta__content p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta__btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
}

.cta__btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.cta__btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .spot__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .spot__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .paint-packages-section {
    padding: 60px 0;
  }
  
  .packages__grid {
    grid-template-columns: 1fr;
  }
  
  .category__header h3 {
    font-size: 2rem;
  }
  
  .detailing__packages {
    grid-template-columns: 1fr;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__btn {
    width: 250px;
    justify-content: center;
  }
  
  .spot-painting-section {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .category__header h3 {
    font-size: 1.75rem;
  }
  
  .package__badge,
  .package__features {
    padding: 1.5rem;
  }
  
  .prep__grid {
    grid-template-columns: 1fr;
  }
  
  .image-placeholder {
    width: 150px;
    height: 150px;
  }
  
  .packages-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta__content h3 {
    font-size: 2rem;
  }
}
/* Info Section */
.info-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-section h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}

.info-section p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-section p:last-child {
  margin-bottom: 0;
}

/* Detailing Section Specific */
.detailing-section {
  background: linear-gradient(180deg, #071028 0%, var(--bg) 100%);
  padding: 100px 0;
  position: relative;
}

/* Updated CTA for single button */
.packages-cta .cta__content .cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
}

.packages-cta .cta__content .cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detailing-section {
    padding: 60px 0;
  }
  
  .info-section {
    padding: 1.5rem;
  }
}







/* PDF Carousel Section */
.pdf-carousel {
  position: sticky;
  top: 120px;
}

.carousel-container {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.carousel-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-header h4 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.carousel-header p {
  color: var(--muted);
  margin: 0;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  padding: 2rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0;
  
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.carousel-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  background: linear-gradient(45deg, #1e293b, #334155);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-image-placeholder {
  text-align: center;
  color: var(--muted);
}

.carousel-image-placeholder i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.carousel-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
  background: rgba(15, 23, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--red);
}

/* Download Section */
.download-section {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.download-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
  .frame-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .frame-info {
    padding-right: 0;
  }
  
  .pdf-carousel {
    position: static;
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    padding: 1.5rem;
  }
  
  .carousel-image {
    max-width: 250px;
    height: 180px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
  
  .download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .carousel-image {
    max-width: 200px;
    height: 150px;
  }
  
  .download-btn {
    width: 100%;
    justify-content: center;
  }
}
/* Frame Measurement Section */
.frame-measurement-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.frame-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* Frame Info */
.frame-info {
  padding-right: 2rem;
}

.info-card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.info-card h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.info-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.feature-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Benefits List */
.benefits {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits h4 {
  color: var(--white);
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}

.benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  color: var(--muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 600;
}

/* PDF Viewer */
.pdf-viewer {
  position: sticky;
  top: 120px;
}

.pdf-container {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.pdf-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-header h4 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.pdf-header p {
  color: var(--muted);
  margin: 0;
}

.pdf-viewer-wrapper {
  padding: 2rem;
}

.pdf-display {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.pdf-placeholder i {
  font-size: 3rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.pdf-placeholder h5 {
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.pdf-placeholder p {
  margin: 0 0 2rem 0;
}

.pdf-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.pdf-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.pdf-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* PDF Content (When Viewed) */
.pdf-content {
  width: 100%;
  height: 100%;
}

.pdf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.page-info {
  color: var(--white);
  font-weight: 600;
  min-width: 100px;
  text-align: center;
}

.pdf-pages {
  padding: 2rem;
  height: 350px;
  overflow-y: auto;
}

.pdf-page {
  background: white;
  color: #333;
  padding: 2rem;
  border-radius: 8px;
  min-height: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pdf-page h5 {
  color: #333;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
}

.pdf-page p {
  color: #666;
  margin: 0;
}

/* PDF Features */
.pdf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  justify-content: center;
}

.pdf-feature i {
  color: var(--red);
  font-size: 1rem;
}

/* CTA Section */
.frame-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .frame-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .frame-info {
    padding-right: 0;
  }
  
  .pdf-viewer {
    position: static;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .frame-measurement-section {
    padding: 60px 0;
  }
  
  .info-card {
    padding: 2rem;
  }
  
  .pdf-features {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pdf-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .pdf-btn {
    width: 200px;
    justify-content: center;
  }
  
  .info-card {
    padding: 1.5rem;
  }
}

/* Simple Carousel */
.simple-carousel {
  position: relative;
  padding: 2rem;
}

.carousel-slides {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  background: linear-gradient(45deg, #1e293b, #334155);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  color: var(--white);
  text-align: center;
  margin: 0;
  font-weight: 600;
}

/* Simple Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--red);
}


/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--red);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: #b91c1c;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.lightbox-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.lightbox-caption p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Make carousel images clickable */
.slide-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slide-image:hover {
  transform: scale(1.02);
}

.slide-image:hover::after {
  content: '🔍 Click to enlarge';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  pointer-events: none;
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}




/* INSURANCE & WARRANTY SECTION - MATCHING YOUR THEME */
.insurance-warranty-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.section__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
}

.section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS LAYOUT */
.insurance-warranty__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* CARD HEADERS WITH BACKGROUND IMAGES */
.card-header {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.warranty-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('./assets/s11.jpg') center/cover no-repeat;
}

.insurance-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('./assets/s8.jpg') center/cover no-repeat;
}

.header-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.header-content p {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  max-width: 400px;
  margin: 0 auto;
}

/* CARD CONTENT - TRANSPARENT BACKGROUND */
.card-content {
  padding: 2.5rem;
}

.card-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro-text {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.highlight-box h4 {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-box p {
  color: var(--muted);
  margin-bottom: 0;
}

/* DETAILS GRID */
.details-grid {
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label {
  color: var(--white);
  font-weight: 500;
  min-width: 150px;
}

.value {
  color: var(--muted);
  flex: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  margin-left: 1rem;
  padding-bottom: 0.25rem;
}

/* TIPS CONTAINER */
.tips-container {
  margin-top: 2rem;
}

.tip {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-number {
  background: var(--red);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tip-text p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tip-text strong {
  color: var(--red);
}

/* CTA SECTION */
.cta-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.cta-content h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #dc2626);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .insurance-warranty__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card-header {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .insurance-warranty-section {
    padding: 60px 0;
  }
  
  .section__header h2 {
    font-size: 2.5rem;
  }
  
  .card-header {
    height: 160px;
    padding: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.75rem;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .value {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .card-header {
    height: 140px;
  }
  
  .card-header h3 {
    font-size: 1.5rem;
  }
  
  .card-header p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .tip {
    padding: 1.25rem;
  }
  
  .tip-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}


/* QUICK MINOR REPAIRS SECTION - UNIQUE STYLES */
.quick-minor-repairs {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

/* SHOWCASE CAROUSEL - UNIQUE STYLES */
.repairs-showcase {
  margin-bottom: 4rem;
}

.showcase-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 36, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 450px;
}

.showcase-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-slide.active {
  opacity: 1;
}

.showcase-image {
  flex: 1;
  height: 450px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-slide.active .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(90deg, rgba(15, 23, 36, 0.9), rgba(15, 23, 36, 0.7));
}

.showcase-content h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.showcase-content p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 38, 38, 0.9);
  border: none;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.3rem;
}

.showcase-nav:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.showcase-prev {
  left: 30px;
}

.showcase-next {
  right: 30px;
}

.showcase-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--red);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
  background: var(--red);
}

/* BENEFITS SECTION - UNIQUE STYLES */
.repair-benefits {
  margin-bottom: 4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* PRICING SECTION - UNIQUE STYLES */
.repair-pricing {
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pricing-tier {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-tier:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tier-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
}

.tier-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.tier-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.tier-pricing {
  padding: 0;
}

.price-table {
  width: 100%;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: background 0.3s ease;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.header {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--red);
  font-weight: 700;
}

.price-row:not(.header):hover {
  background: rgba(255, 255, 255, 0.03);
}

.service-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-type {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.service-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: right;
}

/* CTA SECTION - UNIQUE STYLES */
.repair-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 25px;
  overflow: hidden;
}

.cta-container {
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}

.cta-content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-action {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.badge-content i {
  color: var(--red);
  font-size: 1.2rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .showcase-slide {
    flex-direction: column;
  }
  
  .showcase-image {
    height: 300px;
    flex: none;
  }
  
  .showcase-content {
    padding: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .quick-minor-repairs {
    padding: 60px 0;
  }
  
  .showcase-track {
    height: auto;
  }
  
  .showcase-nav {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .showcase-prev {
    left: 15px;
  }
  
  .showcase-next {
    right: 15px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-container {
    padding: 3rem 2rem;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .showcase-content h3 {
    font-size: 1.5rem;
  }
  
  .price-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }
  
  .price-row.header {
    display: none;
  }
  
  .service-name::before {
    content: "Service: ";
    font-weight: 700;
    color: var(--white);
  }
  
  .service-type::before {
    content: "Type: ";
    font-weight: 700;
    color: var(--white);
  }
  
  .cta-container {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.75rem;
  }
}


/* SLOWER CAROUSEL TRANSITIONS */
.showcase-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* Slower transition */
  height: 450px;
}

.showcase-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease; /* Slower fade */
}

.showcase-slide.active {
  opacity: 1;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease; /* Slower zoom */
}

.showcase-slide.active .showcase-image img {
  transform: scale(1.05);
}

/* Slower navigation hover effects */
.showcase-nav {
  transition: all 0.4s ease; /* Slower hover */
}

/* Slower indicator transitions */
.indicator {
  transition: all 0.4s ease; /* Slower indicator changes */
}

/* Slower benefit card animations */
.benefit-card {
  transition: all 0.4s ease; /* Slower card animations */
}

.benefit-card::before {
  transition: left 0.8s ease; /* Slower shimmer effect */
}

.benefit-icon {
  transition: transform 0.4s ease; /* Slower icon animation */
}

/* Slower pricing tier animations */
.pricing-tier {
  transition: all 0.4s ease; /* Slower card lift */
}

/* Slower price row hover */
.price-row {
  transition: background 0.4s ease; /* Slower row highlight */
}

/* Slower button animations */
.action-btn {
  transition: all 0.4s ease; /* Slower button effects */
}
/* QUICK MINOR REPAIRS SECTION - MOBILE RESPONSIVE */
.quick-minor-repairs {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 60px 0;
  position: relative;
}

/* MOBILE FIRST APPROACH */
@media (max-width: 768px) {
  .quick-minor-repairs {
    padding: 40px 0;
  }
  
  .section__header h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
  }
  
  .section__header p {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
}

/* SHOWCASE CAROUSEL - MOBILE OPTIMIZED */
.repairs-showcase {
  margin-bottom: 3rem;
}

.showcase-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 36, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.showcase-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 450px;
}

.showcase-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.showcase-slide.active {
  opacity: 1;
}

.showcase-image {
  flex: 1;
  height: 450px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-slide.active .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  flex: 1;
  padding: 2.5rem;
  background: linear-gradient(90deg, rgba(15, 23, 36, 0.9), rgba(15, 23, 36, 0.7));
}

.showcase-content h3 {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.showcase-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 38, 38, 0.9);
  border: none;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.1rem;
}

.showcase-nav:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.showcase-prev {
  left: 20px;
}

.showcase-next {
  right: 20px;
}

.showcase-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: var(--red);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* MOBILE RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .showcase-slide {
    flex-direction: column;
  }
  
  .showcase-image {
    height: 300px;
    flex: none;
  }
  
  .showcase-content {
    padding: 2rem;
    text-align: center;
  }
  
  .showcase-content h3 {
    font-size: 1.5rem;
  }
  
  .showcase-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .repairs-showcase {
    margin-bottom: 2rem;
  }
  
  .showcase-container {
    border-radius: 12px;
    margin: 0 1rem;
  }
  
  .showcase-track {
    height: auto;
    min-height: 400px;
  }
  
  .showcase-image {
    height: 250px;
  }
  
  .showcase-content {
    padding: 1.5rem;
  }
  
  .showcase-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  
  .showcase-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .showcase-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .showcase-prev {
    left: 10px;
  }
  
  .showcase-next {
    right: 10px;
  }
  
  .showcase-indicators {
    margin-top: 1rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .showcase-container {
    margin: 0 0.5rem;
    border-radius: 10px;
  }
  
  .showcase-track {
    min-height: 350px;
  }
  
  .showcase-image {
    height: 200px;
  }
  
  .showcase-content {
    padding: 1.25rem;
  }
  
  .showcase-content h3 {
    font-size: 1.3rem;
  }
  
  .showcase-content p {
    font-size: 0.85rem;
  }
  
  .showcase-nav {
    width: 35px;
    height: 35px;
  }
}

/* BENEFITS SECTION - MOBILE RESPONSIVE */
.repair-benefits {
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.7rem;
}

.benefit-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 0.85rem;
}

/* BENEFITS MOBILE BREAKPOINTS */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .repair-benefits {
    margin-bottom: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem 1rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .benefit-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .benefit-card {
    padding: 1.25rem 0.75rem;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .benefit-card h4 {
    font-size: 1rem;
  }
}

/* PRICING SECTION - MOBILE RESPONSIVE */
.repair-pricing {
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pricing-tier {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.tier-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.tier-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.tier-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.tier-pricing {
  padding: 0;
}

.price-table {
  width: 100%;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.price-row.header {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid var(--red);
  font-weight: 700;
}

.service-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-type {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.service-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  text-align: right;
}

/* PRICING MOBILE BREAKPOINTS */
@media (max-width: 768px) {
  .repair-pricing {
    margin-bottom: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .tier-header {
    padding: 1.5rem 1rem;
  }
  
  .tier-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .tier-header h3 {
    font-size: 1.2rem;
  }
  
  .price-row {
    grid-template-columns: 1fr 1fr;
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }
  
  .price-row.header {
    display: none; /* Hide header on mobile */
  }
  
  /* Mobile-friendly price table layout */
  .service-name::before {
    content: "Service: ";
    font-weight: 700;
    color: var(--white);
  }
  
  .service-type::before {
    content: "Type: ";
    font-weight: 700;
    color: var(--white);
  }
  
  .service-name, .service-type {
    text-align: left;
  }
  
  .service-price {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 480px) {
  .price-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.25rem;
  }
  
  .service-name::before,
  .service-type::before {
    display: none;
  }
  
  .service-price {
    grid-column: 1;
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }
}

/* CTA SECTION - MOBILE RESPONSIVE */
.repair-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 15px;
  overflow: hidden;
  margin: 0 0.5rem;
}

.cta-container {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* CTA MOBILE BREAKPOINTS */
@media (max-width: 768px) {
  .repair-cta {
    margin: 0 0.25rem;
    border-radius: 12px;
  }
  
  .cta-container {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.875rem 1.25rem;
  }
  
  .cta-badge {
    padding: 0.625rem 1.25rem;
  }
  
  .badge-content {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 1.5rem 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .action-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  .cta-badge {
    padding: 0.5rem 1rem;
  }
  
  .badge-content {
    font-size: 0.8rem;
  }
}

/* EXTRA SMALL DEVICES (under 360px) */
@media (max-width: 360px) {
  .quick-minor-repairs {
    padding: 30px 0;
  }
  
  .section__header h2 {
    font-size: 1.75rem !important;
  }
  
  .section__header p {
    font-size: 0.9rem !important;
  }
  
  .showcase-image {
    height: 180px;
  }
  
  .showcase-content {
    padding: 1rem;
  }
  
  .showcase-content h3 {
    font-size: 1.2rem;
  }
  
  .benefit-card {
    padding: 1rem 0.5rem;
  }
  
  .price-row {
    padding: 0.75rem 0.5rem;
  }
  
  .cta-container {
    padding: 1.25rem 0.75rem;
  }
}

/* TOUCH-FRIENDLY SIZES FOR MOBILE */
@media (max-width: 768px) {
  .showcase-nav,
  .indicator,
  .action-btn {
    min-height: 44px; /* Apple's recommended touch target size */
    min-width: 44px;
  }
  
  .benefit-card,
  .pricing-tier {
    cursor: pointer; /* Better touch indication */
  }
}

/* IMPROVE READABILITY ON MOBILE */
@media (max-width: 768px) {
  .service-name,
  .service-type,
  .service-price,
  .benefit-card p,
  .showcase-content p,
  .cta-content p {
    line-height: 1.4; /* Better readability on small screens */
  }
}

/* PAINT INTRO SECTION WITH CAROUSEL */
.paint-intro-section {
  margin-bottom: 4rem;
}

.paint-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.paint-intro-text h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}

.paint-intro-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Paint Benefits Grid */
.paint-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.paint-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.paint-benefit:hover {
  border-color: var(--red);
  transform: translateX(5px);
}

.paint-benefit i {
  color: var(--red);
  font-size: 1.2rem;
  width: 20px;
}

.paint-benefit span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* PAINT CAROUSEL STYLES */
.paint-carousel-side {
  position: sticky;
  top: 120px;
}

.paint-carousel-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 36, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.paint-carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  height: 400px;
}

.paint-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.paint-carousel-slide.active {
  opacity: 1;
}

.paint-slide-image {
  flex: 1;
  overflow: hidden;
}

.paint-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.paint-carousel-slide.active .paint-slide-image img {
  transform: scale(1.05);
}

.paint-slide-caption {
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.paint-slide-caption h4 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.paint-slide-caption p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Paint Carousel Navigation */
.paint-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 38, 38, 0.9);
  border: none;
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.1rem;
}

.paint-carousel-nav:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.paint-carousel-prev {
  left: 15px;
}

.paint-carousel-next {
  right: 15px;
}

/* Paint Carousel Indicators */
.paint-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.paint-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.paint-indicator.active {
  background: var(--red);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.paint-indicator:hover {
  background: var(--red);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .paint-intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .paint-carousel-side {
    position: static;
    order: -1;
  }
  
  .paint-carousel-track {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .paint-intro-text h3 {
    font-size: 1.75rem;
  }
  
  .paint-intro-text p {
    font-size: 1rem;
  }
  
  .paint-benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .paint-benefit {
    padding: 0.875rem;
  }
  
  .paint-carousel-track {
    height: 300px;
  }
  
  .paint-slide-caption {
    padding: 1.25rem;
  }
  
  .paint-slide-caption h4 {
    font-size: 1.2rem;
  }
  
  .paint-carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .paint-carousel-track {
    height: 250px;
  }
  
  .paint-slide-caption {
    padding: 1rem;
  }
  
  .paint-slide-caption h4 {
    font-size: 1.1rem;
  }
  
  .paint-slide-caption p {
    font-size: 0.85rem;
  }
  
  .paint-carousel-nav {
    width: 35px;
    height: 35px;
  }
  
  .paint-indicator {
    width: 10px;
    height: 10px;
  }
}
/* DETAILING SECTION WITH HEADER IMAGES */
.detailing-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.detailing__packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.detailing__card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.detailing__card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* DETAILING HEADER IMAGES */
.detailing__header {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.silver-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/c11.png') center/cover no-repeat;
}

.gold-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/S7.JPG') center/cover no-repeat;
}

.platinum-header {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('assets/S10.JPG') center/cover no-repeat;
}

.detailing__header .header-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.detailing__header .header-content p {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* DETAILING PRICES */
.detailing__prices {
  padding: 1.5rem 2rem 0;
}

.price__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price__tier:last-child {
  border-bottom: none;
}

.vehicle-type {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

/* DETAILING FEATURES */
.detailing__features {
  padding: 1rem 2rem 2rem;
  list-style: none;
  margin: 0;
}

.detailing__features li {
  color: var(--muted);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.detailing__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ADDITIONAL SERVICES */
.additional-services {
  margin-bottom: 4rem;
}

.additional-services h3 {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 2rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service__item:hover {
  border-color: var(--red);
  transform: translateX(5px);
}

.service__name {
  color: var(--muted);
  font-size: 0.95rem;
}

.service__price {
  color: var(--white);
  font-weight: 600;
}

/* CTA SECTION */
.packages-cta {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.cta__content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.cta__content p {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta__btn.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
}

.cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .detailing__packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .detailing-section {
    padding: 60px 0;
  }
  
  .detailing__packages {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .detailing__header {
    height: 160px;
    padding: 1.5rem;
  }
  
  .detailing__header .header-content h3 {
    font-size: 1.5rem;
  }
  
  .detailing__prices {
    padding: 1.25rem 1.5rem 0;
  }
  
  .detailing__features {
    padding: 1rem 1.5rem 1.5rem;
  }
  
  .additional-services h3 {
    font-size: 1.75rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .packages-cta {
    padding: 3rem 1.5rem;
  }
  
  .cta__content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .detailing__header {
    height: 140px;
    padding: 1.25rem;
  }
  
  .detailing__header .header-content h3 {
    font-size: 1.4rem;
  }
  
  .detailing__header .header-content p {
    font-size: 0.9rem;
  }
  
  .price__tier {
    padding: 0.625rem 0;
  }
  
  .vehicle-type {
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 1rem;
  }
  
  .detailing__features li {
    font-size: 0.85rem;
  }
  
  .service__item {
    padding: 0.875rem 1.25rem;
  }
  
  .service__name {
    font-size: 0.9rem;
  }
  
  .packages-cta {
    padding: 2.5rem 1.25rem;
  }
  
  .cta__content h3 {
    font-size: 1.75rem;
  }
  
  .cta__content p {
    font-size: 1.1rem;
  }
  
  .cta__btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* QUICK MINOR REPAIRS SECTION - IMPROVED TYPOGRAPHY */
.quick-minor-repairs .section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px; /* Add letter spacing */
  line-height: 1.6; /* Better line height */
  font-weight: 400;
}

/* Also fix other section headers for consistency */
.section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.6;
  font-weight: 400;
}

/* MOBILE OPTIMIZATION FOR TEXT */
@media (max-width: 768px) {
  .quick-minor-repairs .section__header p {
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .quick-minor-repairs .section__header p {
    font-size: 1rem;
    letter-spacing: 0.1px;
    line-height: 1.4;
  }
}

/* UNIVERSAL TEXT SPACING FIX FOR ALL SECTION HEADERS */
.section__header p,
.section__subtitle {
  letter-spacing: 0.3px;
  line-height: 1.7;
  word-spacing: 0.5px;
  font-weight: 400;
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Specific fixes for each section */
.quick-minor-repairs .section__header p,
.paint-packages-section .section__subtitle,
.detailing-section .section__header p {
  letter-spacing: 0.3px;
  line-height: 1.7;
  word-spacing: 0.5px;
}

/* Mobile optimization for all sections */
@media (max-width: 768px) {
  .section__header p,
  .section__subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section__header p,
  .section__subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
  }
}
/* MAKE ALL SECTION SUBTITLES MATCH QUICK MINOR DAMAGE REPAIR */
.section__header p,
.section__subtitle {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.7;
  word-spacing: 0.5px;
  font-weight: 400;
  font-family: var(--header-font);
}

/* SPECIFIC OVERRIDES TO ENSURE CONSISTENCY */
.quick-minor-repairs .section__header p,
.paint-packages-section .section__subtitle,
.detailing-section .section__header p {
  color: var(--muted) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.3px !important;
  line-height: 1.7 !important;
  word-spacing: 0.5px !important;
  font-weight: 400 !important;
  font-family: var() !important;
}

/* MOBILE OPTIMIZATION - CONSISTENT ACROSS ALL SECTIONS */
@media (max-width: 768px) {
  .section__header p,
  .section__subtitle {
    font-size: 1.1rem !important;
    letter-spacing: 0.2px !important;
    line-height: 1.6 !important;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .section__header p,
  .section__subtitle {
    font-size: 1.05rem !important;
    letter-spacing: 0.1px !important;
    line-height: 1.5 !important;
  }
}

/* MAKE APPOINTMENT & ESTIMATION HEADERS MATCH THE REST */
.appointment__header,
.estimation__header {
  text-align: center;
  margin-bottom: 4rem;
}

.appointment__header h2,
.estimation__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
}

.appointment__header p,
.estimation__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.7;
  word-spacing: 0.5px;
  font-weight: 400;
  font-family: var(--header-font);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .appointment__header,
  .estimation__header {
    margin-bottom: 3rem;
  }
  
  .appointment__header h2,
  .estimation__header h2 {
    font-size: 2.5rem;
  }
  
  .appointment__header p,
  .estimation__header p {
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .appointment__header h2,
  .estimation__header h2 {
    font-size: 2rem;
  }
  
  .appointment__header p,
  .estimation__header p {
    font-size: 1.05rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
  }
}



/* JotForm Mobile Scroll Only */
@media (max-width: 768px) {
  .appointment__form,
  .estimation__form {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 500px;
  }
}










/* ======= PREMIUM FOOTER STYLES ======= */
.site-footer {
  background: linear-gradient(180deg, #071028 0%, #0a1428 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.footer__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Main Footer Content */
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Column */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo .brand-logo img {
  height: 99px;
  width: auto;
  filter: brightness(1) invert(0);
}

.footer__description {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social .social__link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer__social .social__link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Footer Links */
.footer__links h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer__links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__menu li a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__menu li a::before {
  content: '›';
  color: var(--red);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.footer__menu li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer__menu li a:hover::before {
  transform: translateX(3px);
}

/* Contact Info */
.footer__contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer__contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__item i {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 16px;
}

.contact__item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__item strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact__item span,
.contact__item a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.contact__item a:hover {
  color: var(--red);
}

/* Trust Badges */
.footer__trust {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.trust__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust__badge:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust__badge i {
  color: var(--red);
  font-size: 1.5rem;
  width: 24px;
}

.trust__badge span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer__copyright a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__copyright a:hover {
  color: var(--red);
}

.payment__methods {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.payment__methods i {
  font-size: 1.5rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.payment__methods i:hover {
  color: var(--white);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .trust__badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust__badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 0 1rem;
  }
  
  .contact__item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact__item i {
    align-self: center;
  }
  
  .payment__methods {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ======= PREMIUM CTA BUTTONS ======= */
.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  white-space: nowrap;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.cta-primary {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
  background: linear-gradient(90deg, var(--red-dark), var(--red));
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem var(--container-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  border: 2px solid transparent;
}

.mobile-cta-primary {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

.mobile-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.mobile-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .nav-cta {
    gap: 0.5rem;
  }
  
  .cta-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 868px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
}


/* Move carousel cards down */
.carousel-track {
  transform: translateY(30px); /* Push down 20px */
}

/* Move logo down */
.hero-logo {
  top: 18%;
  transform: translateY(28px); /* Additional downward shift */
}
















/* Fix Carousel Layout */
.hero-photo.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.carousel-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
  padding: 10px 0;
  width: 100%;
  height: 100%;
  align-items: center;
}

.car-card {
  flex: 0 0 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  min-height: 180px;
  transition: all 0.3s ease;
}

.car-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.car-thumb {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.car-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .car-thumb img {
  transform: scale(1.05);
}

.car-meta {
  flex: 1;
  width: 100%;
}

.car-meta h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--white);
  font-weight: 600;
}

.car-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.car-time {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  margin-top: auto;
}

/* Carousel Navigation */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 36, 0.9);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 16px;
  padding: 0.8rem;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Hero Logo */
.hero-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 45px;
  width: auto;
  filter: brightness(1) invert(0);
  z-index: 15;
  opacity: 0.9;
}

/* Floating Services */
.services-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 0.8rem;
  z-index: 15;
  flex-wrap: wrap;
}

.service-pill {
  background: linear-gradient(90deg, rgba(220,38,38,0.15), rgba(255,255,255,0.05));
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.service-pill:hover {
  background: linear-gradient(90deg, rgba(220,38,38,0.25), rgba(255,255,255,0.08));
  transform: translateY(-2px);
}

/* NEW CTA Buttons */
.hero-actions-premium {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.cta-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .hero-right {
    order: -1;
    min-height: 400px;
  }
  
  .car-card {
    flex: 0 0 260px;
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .hero-actions-premium {
    flex-direction: column;
  }
  
  .cta-btn {
    justify-content: center;
    text-align: center;
  }
  
  .car-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    padding: 0.6rem;
  }
  
  .hero-logo {
    height: 30px;
    top: 15px;
    right: 15px;
  }
  
  .services-floating {
    bottom: 15px;
    left: 15px;
  }
  
  .service-pill {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .car-card {
    flex: 0 0 90%;
    min-width: 90%;
  }
  
  .car-thumb {
    height: 100px;
  }
  
  .car-meta h4 {
    font-size: 1rem;
  }
  
  .car-meta p {
    font-size: 0.85rem;
  }
}
/* ======= SIMPLE PROMO SECTION STYLES ======= */
.promo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* Promo Image Container */
.promo-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-height: 300px;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 36, 0.7) 0%,
    rgba(220, 38, 38, 0.4) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.promo-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.promo-content {
  text-align: center;
  color: white;
}

.promo-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.promo-subtitle {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  opacity: 0.95;
  font-weight: 600;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-features span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Claim Button */
.promo-claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.promo-claim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.promo-claim-btn:active {
  transform: translateY(-1px);
}

/* Promo Code */
.promo-code {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.promo-code strong {
  color: #ffd700;
  font-weight: 700;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1100px) {
  .promo-title {
    font-size: 1.75rem;
  }
  
  .promo-subtitle {
    font-size: 1rem;
  }
  
  .promo-claim-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .promo-section {
    gap: 0.75rem;
  }
  
  .promo-overlay {
    padding: 1.25rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-subtitle {
    font-size: 0.9rem;
  }
  
  .promo-claim-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .promo-features {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .promo-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-claim-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .promo-code {
    font-size: 0.85rem;
    padding: 0.6rem;
  }
}
/* ======= SIMPLE PROMO SECTION STYLES ======= */
.promo-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* Promo Image Container */
.promo-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-height: 300px;
}
/* ALTERNATIVE FIX - Using Aspect Ratio */
.promo-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3; /* This creates a consistent 4:3 ratio */
  width: 100%;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-image:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 36, 0.7) 0%,
    rgba(220, 38, 38, 0.4) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.promo-badge {
  align-self: flex-start;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.promo-content {
  text-align: center;
  color: white;
}

.promo-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.promo-subtitle {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  opacity: 0.95;
  font-weight: 600;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-features span {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Claim Button */
.promo-claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.promo-claim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.promo-claim-btn:active {
  transform: translateY(-1px);
}

/* Hidden Promo Code */
.promo-code.hidden {
  display: none;
}

.promo-code {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  animation: slideDown 0.5s ease-out;
}

.success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.success-message i {
  font-size: 1.3rem;
}

.code-instruction {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.code-display {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 2px;
}

/* Show More Promos Button */
.show-more-promos-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.show-more-promos-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.show-more-promos-btn i {
  transition: transform 0.3s ease;
}

.show-more-promos-btn:hover i {
  transform: translateY(2px);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1100px) {
  .promo-title {
    font-size: 1.75rem;
  }
  
  .promo-subtitle {
    font-size: 1rem;
  }
  
  .promo-claim-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .code-display {
    font-size: 1.3rem;
    padding: 0.875rem;
  }
}

@media (max-width: 768px) {
  .promo-section {
    gap: 0.75rem;
  }
  
  .promo-overlay {
    padding: 1.25rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-subtitle {
    font-size: 0.9rem;
  }
  
  .promo-claim-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .promo-features {
    font-size: 0.85rem;
  }
  
  .promo-code {
    padding: 1.25rem;
  }
  
  .success-message {
    font-size: 1rem;
  }
  
  .show-more-promos-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .promo-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-claim-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .code-display {
    font-size: 1.1rem;
    padding: 0.75rem;
    letter-spacing: 1px;
  }
  
  .show-more-promos-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}


















/* ======= PROMOTIONS SECTION STYLES - SCOPED ======= */
.promotions-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 100px 0;
  position: relative;
}

.promotions-section .section__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.promotions-section .section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.promotions-section .section__header h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0;
}

.promotions-section .section__header p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

/* Promotions Grid - Scoped */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Promo Card - Scoped */
.promo-section-card {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.promo-section-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promo-section-card.featured {
  border: 2px solid rgba(220, 38, 38, 0.5);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2);
}

.promo-section-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Promo Image - Scoped */
.promo-section-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.promo-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-section-card:hover .promo-section-image img {
  transform: scale(1.05);
}

.promo-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Promo Content - Scoped */
.promo-section-content {
  padding: 2rem;
  position: relative;
}

.promo-section-icon {
  position: absolute;
  top: -24px;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.promo-section-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.promo-section-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.promo-section-description2 {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.6rem;
}
.promo-section-description3 {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.promo-section-description strong {
  color: var(--red);
  font-weight: 600;
}

/* Promo Details - Scoped */
.promo-section-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-section-value {
  text-align: center;
}

.promo-value-amount {
  display: block;
  color: var(--red);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.promo-value-text {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-section-expiry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.promo-section-expiry i {
  color: var(--red);
}

.promo-section-savings,
.promo-section-bonus,
.promo-section-discount {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

.promo-section-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-original-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.promo-sale-price {
  color: var(--red);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Promo Actions - Scoped */
.promo-section-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-section-claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a202c;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-section-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.promo-section-claim-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.promo-section-claim-btn.secondary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.promo-section-code.hidden {
  display: none;
}

.promo-section-code {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  animation: promoSlideDown 0.5s ease-out;
}

.promo-section-code strong {
  color: #22c55e;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
}

/* Trust Section - Scoped */
.promo-trust-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.promo-trust-section h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem 0;
}

.promo-trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.promo-trust-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.promo-trust-feature i {
  color: var(--red);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.promo-trust-feature h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.promo-trust-feature p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Scoped Animations */
@keyframes promoSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toast Styles */
.promo-success-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  z-index: 10000;
  max-width: 400px;
  animation: promoToastSlideIn 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.toast-content i.fa-check-circle {
  font-size: 1.25rem;
  margin-top: 0.1rem;
  color: white;
}

.toast-text {
  flex: 1;
}

.toast-text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.toast-text p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.toast-text code {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.9rem;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes promoToastSlideIn {
  from { 
    transform: translateX(100%); 
    opacity: 0; 
  }
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* ======= RESPONSIVE DESIGN - SCOPED ======= */
@media (max-width: 1024px) {
  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 60px 0;
  }
  
  .promotions-section .section__header h2 {
    font-size: 2.5rem;
  }
  
  .promotions-section .section__header p {
    font-size: 1.1rem;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .promo-section-content {
    padding: 1.5rem;
  }
  
  .promo-section-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    top: -20px;
  }
  
  .promo-section-content h3 {
    font-size: 1.3rem;
  }
  
  .promo-trust-section {
    padding: 2rem;
  }
  
  .promo-trust-section h3 {
    font-size: 1.5rem;
  }
  
  .promo-trust-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .promotions-section .section__header h2 {
    font-size: 2rem;
  }
  
  .promotions-section .section__header p {
    font-size: 1rem;
  }
  
  .promo-section-content {
    padding: 1.25rem;
  }
  
  .promo-section-details {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .promo-section-claim-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .promo-trust-section {
    padding: 1.5rem;
  }
}
/* Success Message Styles for Promo Cards */
.promo-code {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  animation: promoSlideDown 0.5s ease-out;
  margin-top: 1rem;
}

.promo-code.hidden {
  display: none;
}

.success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.success-message i {
  font-size: 1.3rem;
}

.code-instruction {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.code-display {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: 2px;
}

/* Animation for code reveal */
@keyframes promoSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






  






/* Add Review Button Styles */
.add-review-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.add-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--white);
  background:  rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
  text-decoration: none;
}

.add-review-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.add-review-btn:hover::before {
  left: 100%;
}

.add-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
  background: rgba(255, 255, 255, 0.08) ;
}

.add-review-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.add-review-btn i {
  font-size: 1.1rem;
}

/* Button container layout */
.reviews-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* For larger screens - side by side */
@media (min-width: 768px) {
  .reviews-actions-container {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  
  .load-more-container,
  .add-review-container {
    margin-top: 0;
  }
}

/* Mobile optimization */
@media (max-width: 767px) {
  .add-review-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* ======= INSURANCE PARTNERS SECTION ======= */
.insurance-partners-section {
  background: linear-gradient(180deg, var(--bg), #071028 120%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.insurance-partners-section .section__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.insurance-partners-section .section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.insurance-partners-section .section__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.insurance-partners-section .section__header p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partners Carousel */
.partners-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.partners-track {
  display: flex;
  gap: 3rem;
  animation: scrollPartners 40s linear infinite;
  width: max-content;
}

.partner-logo {
  flex: 0 0 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.partner-logo:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(220, 38, 38, 0.5));
}

/* Infinite Scroll Animation */
@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 8 - 3rem * 8)); /* Logo width + gap multiplied by number of logos */
  }
}

/* Pause animation on hover */
.partners-carousel-container:hover .partners-track {
  animation-play-state: paused;
}

/* Partners CTA */
.partners-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-cta p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.partners-cta a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partners-cta a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .partner-logo {
    flex: 0 0 130px;
    height: 70px;
  }
  
  @keyframes scrollPartners {
    100% {
      transform: translateX(calc(-130px * 8 - 3rem * 8));
    }
  }
}

@media (max-width: 768px) {
  .insurance-partners-section {
    padding: 60px 0;
  }
  
  .insurance-partners-section .section__header h2 {
    font-size: 2rem;
  }
  
  .insurance-partners-section .section__header p {
    font-size: 1rem;
  }
  
  .partners-track {
    gap: 2rem;
  }
  
  .partner-logo {
    flex: 0 0 110px;
    height: 60px;
    padding: 0.75rem;
  }
  
  @keyframes scrollPartners {
    100% {
      transform: translateX(calc(-110px * 8 - 2rem * 8));
    }
  }
}

@media (max-width: 480px) {
  .insurance-partners-section .section__header h2 {
    font-size: 1.75rem;
  }
  
  .partners-track {
    gap: 1.5rem;
  }
  
  .partner-logo {
    flex: 0 0 90px;
    height: 50px;
    padding: 0.5rem;
  }
  
  @keyframes scrollPartners {
    100% {
      transform: translateX(calc(-90px * 8 - 1.5rem * 8));
    }
  }
  
  .partners-cta p {
    font-size: 0.9rem;
  }
}

/* ======= ADDITIONAL BUSINESSES STYLES ======= */
.additional-businesses {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.business-card {
  background: rgba(15, 23, 36, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.business-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Business Header with Image */
.business-header.with-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.business-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover .business-image img {
  transform: scale(1.05);
}

.business-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 36, 0.8) 0%,
    rgba(220, 38, 38, 0.4) 100%
  );
}

.business-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.business-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  backdrop-filter: blur(10px);
}

.business-header-content h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.business-tagline {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.business-content {
  padding: 2rem;
}

.business-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.business-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateX(5px);
}

.feature i {
  color: var(--red);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.feature span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.business-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.business-stats .stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-stats .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.business-stats .label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.business-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.business-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.business-cta .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.business-cta .cta-btn.secondary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Fallback for missing images */
.business-image img {
  background: linear-gradient(135deg, #1e293b, #334155);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
  .businesses-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .additional-businesses {
    margin-top: 4rem;
    padding-top: 3rem;
  }
  
  .businesses-grid {
    gap: 1.5rem;
  }
  
  .business-header.with-image {
    height: 180px;
  }
  
  .business-header-content {
    padding: 1.5rem;
  }
  
  .business-content {
    padding: 1.5rem;
  }
  
  .business-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .business-cta {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .businesses-grid {
    grid-template-columns: 1fr;
  }
  
  .business-header.with-image {
    height: 160px;
  }
  
  .business-header-content {
    padding: 1.25rem;
  }
  
  .business-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .business-header-content h4 {
    font-size: 1.3rem;
  }
  
  .business-content {
    padding: 1.25rem;
  }
  
  .feature {
    padding: 0.625rem;
  }
  
  .business-stats .number {
    font-size: 1.5rem;
  }
}
/* ======= RESPONSIVE BREAKPOINTS FOR HERO RIGHT SECTION ======= */

/* Medium Devices (Tablets, 768px and down) */
@media (max-width: 768px) {
  .hero-right {
    min-height: 350px;
    padding: 0.75rem;
  }
  
  .promo-section {
    max-width: 350px;
    gap: 0.875rem;
  }
  
  .promo-image-container {
    aspect-ratio: 3/2;
  }
  
  .promo-overlay {
    padding: 1.25rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-subtitle {
    font-size: 0.9rem;
  }
  
  .promo-claim-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .promo-features {
    font-size: 0.85rem;
  }
}

/* Small Devices (Phones, 480px and down) */
@media (max-width: 480px) {
  .hero-right {
    min-height: 300px;
    padding: 0.5rem;
  }
  
  .promo-section {
    max-width: 300px;
    gap: 0.75rem;
  }
  
  .promo-image-container {
    aspect-ratio: 1/1;
  }
  
  .promo-overlay {
    padding: 1rem;
  }
  
  .promo-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-subtitle {
    font-size: 0.85rem;
  }
  
  .promo-claim-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .promo-features {
    font-size: 0.8rem;
  }
  
  .show-more-promos-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* Extra Small Devices (360px and down) */
@media (max-width: 360px) {
  .hero-right {
    min-height: 280px;
  }
  
  .promo-section {
    max-width: 280px;
  }
  
  .promo-overlay {
    padding: 0.875rem;
  }
  
  .promo-title {
    font-size: 1.2rem;
  }
  
  .promo-claim-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}




.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 10px 14px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 15px;
  color: #fff;
  position: relative;
  padding-left: 30px;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  color: #4ade80; /* green check */
  font-size: 14px;
}






</style>