/* Why Choose Us Section */
#why-choose {
  padding: 80px 0;
  background-image: url('images/about/why.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

#why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
  z-index: 0;
}

.why-intro {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.why-intro h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.why-intro p {
  color: #e0e0e0;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.why-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #D32F2F, #B71C1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, #FFD700, #FFC700);
  color: #D32F2F;
  transform: scale(1.1);
}

.why-content {
  flex: 1;
}

.why-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: #FFD700;
}

.why-card p {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #why-choose {
    padding: 60px 0;
    min-height: auto;
  }

  .why-intro h2 {
    font-size: 2.5rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  #why-choose {
    padding: 50px 0;
  }

  .why-intro {
    margin-bottom: 40px;
  }

  .why-intro h2 {
    font-size: 2rem;
  }

  .why-intro p {
    font-size: 1rem;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 25px 20px;
    gap: 15px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .why-intro h2 {
    font-size: 1.75rem;
  }

  .why-card {
    padding: 20px 15px;
    gap: 12px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .why-card h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.8rem;
  }
}