/*=====================================================
    WHY CHOOSE US SECTION - Dark Theme
======================================================*/

.why-choose-us {
  position: relative;
  padding: 50px 0;
  background: var(--otto-bg-dark);
  overflow: hidden;
}

/* Background Effects */
.why-choose-us::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: var(--otto-radial-magenta-medium);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  transform: translateY(-50%);
}

/* Floating Shape Images */
.why-choose-us .shape-floating {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 60px;
  height: auto;
  opacity: 0.45;
  animation: float-and-rotate 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float-and-rotate {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(30px, -20px) rotate(270deg);
  }
}

.why-choose-us .shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 150px;
  height: auto;
  opacity: 0.1;
  animation: float-diagonal 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.why-choose-us .shape-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 130px;
  height: auto;
  opacity: 0.12;
  animation: float-spin 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.why-choose-us .shape-3 {
  position: absolute;
  top: 40%;
  right: 3%;
  width: 90px;
  height: auto;
  opacity: 0.08;
  animation: float-bounce 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-diagonal {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 40px) rotate(180deg);
  }
}

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

@keyframes float-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.15);
  }
}

/* Title Section */
.why-choose-us__title-box {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Column spacing */
.why-choose-us .row > [class*="col-"] {
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 30px;
}

.why-choose-us__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--otto-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-us__title-highlight {
  background: var(--otto-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-us__subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--otto-text-gray);
  margin: 0;
  opacity: 0.9;
}

/* Item Card */
.why-choose-us__item {
  position: relative;
  text-align: center;
  padding: 40px 30px;
  background: var(--otto-bg-medium);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-us__item:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 176, 233, 0.3);
  box-shadow: 0 20px 50px rgba(92, 176, 233, 0.15);
  background: linear-gradient(135deg, var(--otto-bg-medium) 0%, rgba(92, 176, 233, 0.05) 100%);
}

/* Icon */
.why-choose-us__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--otto-bg-slate);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.why-choose-us__icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--otto-gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-us__item:hover .why-choose-us__icon {
  border-color: transparent;
  transform: scale(1.05);
}

.why-choose-us__item:hover .why-choose-us__icon::before {
  opacity: 1;
}

.why-choose-us__icon i {
  font-size: 40px;
  color: var(--otto-white);
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-us__item:hover .why-choose-us__icon i {
  opacity: 1;
  transform: scale(1.1);
  color: var(--otto-white);
}

/* Legacy image support - in case images are still used */
.why-choose-us__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-us__item:hover .why-choose-us__icon img {
  opacity: 1;
  transform: scale(1.1);
}

/* Item Title */
.why-choose-us__item-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--otto-white);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.why-choose-us__item:hover .why-choose-us__item-title {
  background: var(--otto-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Item Text */
.why-choose-us__item-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--otto-text-gray);
  margin: 0;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 80px 0;
  }
  
  .why-choose-us__title {
    font-size: 38px;
  }
  
  .why-choose-us__title-box {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: 60px 0;
  }
  
  /* Column spacing for mobile */
  .why-choose-us .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  
  .why-choose-us__title {
    font-size: 32px;
  }
  
  .why-choose-us__subtitle {
    font-size: 15px;
  }
  
  .why-choose-us__item {
    padding: 30px 20px;
    margin-bottom: 0;
  }
  
  .why-choose-us__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .why-choose-us__icon i {
    font-size: 28px;
  }
  
  .why-choose-us__icon img {
    width: 35px;
    height: 35px;
  }
  
  .why-choose-us__item-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .why-choose-us__item-text {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  /* Column spacing for small mobile */
  .why-choose-us .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  
  .why-choose-us__title {
    font-size: 26px;
  }
  
  .why-choose-us__subtitle {
    font-size: 14px;
  }
  
  .why-choose-us__item {
    padding: 25px 15px;
    margin-bottom: 0;
  }
  
  .why-choose-us__icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }
  
  .why-choose-us__icon i {
    font-size: 26px;
  }
  
  .why-choose-us__icon img {
    width: 32px;
    height: 32px;
  }
  
  .why-choose-us__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .why-choose-us__item-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

