/* Why Choose MAZENWARE Section */
:root {
  --blue: #004AAD;
  --orange: #FF914D;
  --white: #fff;
  --light-grey: #F0F0F0;
}

.why-choose {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 74, 173, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 145, 77, 0.03) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.why-choose__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.why-choose__header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.why-choose__header.animate {
  opacity: 1;
  transform: translateY(0);
}

.why-choose__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.why-choose__subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Grid */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.why-choose__card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose__card.animate {
  opacity: 1;
  transform: translateY(0);
}

.why-choose__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-choose__card:hover::before {
  transform: scaleX(1);
}

.why-choose__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 74, 173, 0.15);
  border-color: rgba(0, 74, 173, 0.2);
}

.why-choose__card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.25);
}

.why-choose__card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
  transition: transform 0.4s ease;
}

.why-choose__card:hover .why-choose__card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.35);
}

.why-choose__card:hover .why-choose__card-icon svg {
  transform: scale(1.1);
}

.why-choose__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-choose__card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-choose__card-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.1), rgba(255, 145, 77, 0.1));
  color: var(--blue);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(0, 74, 173, 0.2);
  transition: all 0.3s ease;
}

.why-choose__card:hover .why-choose__card-badge {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* CTA Section */
.why-choose__cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 74, 173, 0.25);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.why-choose__cta.animate {
  opacity: 1;
  transform: translateY(0);
}


.why-choose__cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-choose__cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.why-choose__cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.why-choose__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose__title {
    font-size: 2.5rem;
  }

  .why-choose__subtitle {
    font-size: 1.1rem;
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose__card {
    padding: 2rem;
  }

  .why-choose__card-title {
    font-size: 1.3rem;
  }

  .why-choose__cta {
    padding: 3rem 1.5rem;
  }

  .why-choose__cta-title {
    font-size: 1.8rem;
  }

  .why-choose__cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .why-choose__container {
    padding: 0 1rem;
  }

  .why-choose__title {
    font-size: 2rem;
  }

  .why-choose__card {
    padding: 1.5rem;
  }
}

