/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .why-us-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    text-align: center;
  }
  
  .why-us-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .why-us-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .why-us-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .why-us-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .why-us-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--primary-glow), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
  }
  
  .why-us-card:hover::before {
    transform: translateX(100%);
  }
  
  .why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
  }
  
  .why-us-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
  }
  
  .why-us-card:hover .why-us-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(360deg);
  }
  
  .why-us-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .why-us-text {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
  }
  
  .process-timeline {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    padding: 30px 0;
  }
  
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    width: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
  }
  
  .process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.5s ease forwards;
  }
  
  .process-step:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .process-step:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .process-step:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .process-step:nth-child(4) {
    animation-delay: 0.8s;
    margin-bottom: 0;
  }
  
  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary-glow);
  }
  
  .process-content {
    flex: 1;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .process-step:hover .process-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
  }
  
  .process-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .process-text {
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  /* ===== TESTIMONIALS SECTION ===== */
  .testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
  }
  
  .testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    margin-bottom: 30px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .testimonial-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    min-width: 300px;
    max-width: 350px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
  }
  
  .testimonial-rating {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .testimonial-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
  }
  
  .testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover .testimonial-img {
    transform: scale(1.1);
  }
  
  .testimonial-info {
    flex: 1;
  }
  
  .testimonial-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .testimonial-car {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-glow);
  }
  
  /* ===== BRANDS SECTION ===== */
  .brands-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    position: relative;
  }
  
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .brand-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .brand-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .brand-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .brand-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .brand-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .brand-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  
  .brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
  }
  
  .brand-img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    padding: 10px;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
  }
  
  .brand-item:hover .brand-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
    .why-us-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline::before {
      right: 20px;
    }
    
    .process-number {
      margin-left: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonials-slider {
      flex-direction: column;
      gap: 20px;
    }
    
    .testimonial-card {
      min-width: 100%;
    }
    
    .brands-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .why-us-grid {
      grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
      display: none;
    }
    
    .process-step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .process-number {
      margin-left: 0;
      margin-bottom: 15px;
    }
    
    .brands-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .testimonial-avatar {
      width: 50px;
      height: 50px;
    }
  }