/* ===== MOBILE APPS SHOWCASE ===== */
.mobile-apps-showcase {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.mobile-apps-showcase .showcase-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0a1a2e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-apps-showcase .showcase-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #0a84ff, #00c6ff);
  border-radius: 2px;
  left: 20%;
}

.mobile-apps-showcase .showcase-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.mobile-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.mobile-app-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(10, 25, 47, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.mobile-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0a84ff, #00c6ff);
  transition: all 0.3s ease;
}

.mobile-app-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
  border-color: rgba(10, 132, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.mobile-app-card:hover::before {
  height: 8px;
}

.app-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a84ff, #00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(10, 132, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.app-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.mobile-app-card:hover .app-icon::before {
  transform: translateX(100%);
}

.mobile-app-card:hover .app-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.2);
}

.mobile-app-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.mobile-app-card h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0a84ff, #00c6ff);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.mobile-app-card:hover h4::after {
  width: 60px;
}

.mobile-app-card p {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
}

.app-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.app-badges .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.app-badges .badge i {
  margin-right: 5px;
  font-size: 0.9em;
}

.app-badges .ios {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.app-badges .android {
  background: rgba(61, 220, 145, 0.1);
  color: #3ddc91;
  border: 1px solid rgba(61, 220, 145, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mobile-apps-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .mobile-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-apps-showcase {
    padding: 3rem 0;
  }
  
  .mobile-apps-showcase .showcase-title {
    font-size: 2rem;
    padding: 0 1.5rem;
  }
  
  .mobile-apps-showcase .showcase-subtitle {
    font-size: 1.05rem;
    padding: 0 2rem;
  }
  
  .mobile-apps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 1.5rem;
  }
  
  .mobile-app-card {
    padding: 1.75rem;
  }
  
  .app-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* Category Tags */
.app-category {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 132, 255, 0.1);
  color: #0a84ff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.mobile-app-card:hover .app-category {
  background: #0a84ff;
  color: white;
  transform: translateY(-2px);
}

/* App Features */
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.app-feature {
  font-size: 0.75rem;
  background: rgba(10, 132, 255, 0.08);
  color: #0a84ff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-app-card:hover .app-feature {
  background: rgba(10, 132, 255, 0.15);
  transform: translateY(-1px);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-app-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Add staggered animation delay */
.mobile-app-card:nth-child(1) { animation-delay: 0.1s; }
.mobile-app-card:nth-child(2) { animation-delay: 0.2s; }
.mobile-app-card:nth-child(3) { animation-delay: 0.3s; }
.mobile-app-card:nth-child(4) { animation-delay: 0.4s; }
.mobile-app-card:nth-child(5) { animation-delay: 0.5s; }
.mobile-app-card:nth-child(6) { animation-delay: 0.6s; }
.mobile-app-card:nth-child(7) { animation-delay: 0.7s; }
.mobile-app-card:nth-child(8) { animation-delay: 0.8s; }
.mobile-app-card:nth-child(9) { animation-delay: 0.9s; }
