/* Custom Styles for Modern Why Choose Section */
.why-choose-modern {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  padding: 120px 0;
}

.why-choose-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.why-choose-modern .section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.why-choose-modern .section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: #38bdf8;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.why-choose-modern .section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-modern .section-header p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-left,
.why-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-left {
  align-items: flex-end;
  text-align: right;
}

.why-right {
  align-items: flex-start;
  text-align: left;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-width: 450px;
}

.why-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-feature:hover::before {
  opacity: 1;
}

.why-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.feature-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
  visibility: visible !important;
  opacity: 1 !important;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
  margin-bottom: 15px;
  color: #38bdf8;
  font-size: 24px;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Align icons right in left column for desktop */
.why-left .feature-icon {
  margin-left: auto;
}

.why-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.why-feature p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.center-visual {
  position: relative;
  width: 350px;
  height: 350px;
}

.visual-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-inner {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(59, 130, 246, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(20px);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.5);
  }
}

.circle-icon {
  font-size: 48px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.circle-text {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.circle-label {
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.orb-1 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  top: 10%;
  left: 10%;
  animation: float-1 6s ease-in-out infinite;
}

.orb-2 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  bottom: 20%;
  right: 5%;
  animation: float-2 5s ease-in-out infinite;
}

.orb-3 {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  bottom: 10%;
  left: 20%;
  animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 15px);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 25px);
  }
}

.center-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
}

.stat-label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.why-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-cta p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.cta-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-modern .section-header {
    margin-bottom: 60px;
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-left,
  .why-right {
    align-items: center;
    text-align: center;
  }

  .why-feature {
    max-width: 550px;
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon {
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .feature-number {
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .feature-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .why-center {
    order: -1;
  }

  .center-visual {
    width: 300px;
    height: 300px;
  }

  .circle-inner {
    width: 220px;
    height: 220px;
  }

  .circle-icon {
    font-size: 42px;
  }

  .circle-text {
    font-size: 48px;
  }

  .circle-label {
    font-size: 12px;
  }

  .center-stats {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 400px;
  }

  .stat-item {
    padding: 18px 25px;
    flex: 1 1 calc(50% - 12.5px);
    min-width: 150px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-suffix {
    font-size: 16px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .why-choose-modern {
    padding: 100px 0;
  }

  .why-choose-modern .section-header h2 {
    font-size: 38px;
  }

  .why-choose-modern .section-header p {
    font-size: 16px;
  }

  .why-wrapper {
    gap: 40px;
  }

  .why-feature {
    max-width: 480px;
    padding: 28px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon {
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .feature-number {
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .feature-icon {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .center-visual {
    width: 260px;
    height: 260px;
  }

  .circle-inner {
    width: 190px;
    height: 190px;
  }

  .circle-icon {
    font-size: 38px;
  }

  .circle-text {
    font-size: 42px;
  }

  .circle-label {
    font-size: 11px;
  }

  .center-stats {
    max-width: 360px;
    gap: 20px;
  }

  .stat-item {
    padding: 16px 22px;
    min-width: 140px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-suffix {
    font-size: 14px;
  }

  .stat-label {
    font-size: 11px;
  }

  .why-cta {
    padding: 45px 40px;
    margin-top: 70px;
  }

  .why-cta h3 {
    font-size: 26px;
  }

  .why-cta p {
    font-size: 15px;
  }
}

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

  .why-choose-modern .section-header h2 {
    font-size: 32px;
  }

  .why-choose-modern .section-header p {
    font-size: 16px;
  }

  .why-wrapper {
    gap: 40px;
  }

  .center-visual {
    width: 220px;
    height: 220px;
  }

  .circle-inner {
    width: 160px;
    height: 160px;
  }

  .circle-icon {
    font-size: 36px;
  }

  .circle-text {
    font-size: 32px;
  }

  .why-feature {
    padding: 25px;
    gap: 15px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .why-feature h3 {
    font-size: 18px;
  }

  .why-feature p {
    font-size: 13px;
  }

  .center-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    padding: 12px 20px;
    width: 100%;
    max-width: 200px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-suffix {
    font-size: 12px;
  }

  .stat-label {
    font-size: 10px;
  }

  .why-cta {
    padding: 40px 30px;
    margin-top: 60px;
  }

  .why-cta h3 {
    font-size: 24px;
  }

  .why-cta p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .why-feature {
    flex-direction: column;
    text-align: center;
  }

  .why-left .why-feature,
  .why-right .why-feature {
    align-items: center;
    text-align: center;
  }

  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .why-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .why-cta h3 {
    font-size: 20px;
  }

  .why-cta p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}
