/* Other Services Page Styles */

/* Hero Section */
.other-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1e2e 0%, #2a2f42 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.other-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(123, 97, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 40%);
  animation: heroGradient 20s ease-in-out infinite;
}

@keyframes heroGradient {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -20px) scale(1.1); }
  66% { transform: translate(20px, -10px) scale(1.05); }
}

.other-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.other-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.other-hero__desc {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Services Grid */
.other-services {
  padding: 80px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* KIK Section */
.kik-section {
  padding: 80px 0;
}

.kik-card {
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.kik-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
  transform: translate(50%, -50%);
}

.kik-card__icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: rgba(123, 97, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.kik-card__icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--brand-secondary);
}

.kik-card__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.kik-card__content h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.kik-card__content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.kik-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 0 0 32px 0;
  padding: 0;
  list-style: none;
}

.kik-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.kik-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-secondary);
  flex-shrink: 0;
}

.kik-card__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* IT Preview Section */
.it-preview {
  background: rgba(0, 191, 255, 0.02);
  padding: 80px 0;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px 0;
}

.section-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0 0 48px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.it-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.it-card {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.it-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 191, 255, 0.3);
}

.it-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 191, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.it-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--brand-light);
}

.it-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.it-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.it-preview__note {
  background: rgba(255, 184, 0, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 12px;
  padding: 20px 32px;
  text-align: center;
}

.it-preview__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.it-preview__note svg {
  stroke: rgba(255, 184, 0, 0.8);
  flex-shrink: 0;
}

/* CTA Section */
.other-cta {
  background: #0a0f1e;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.other-cta-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.other-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(123, 97, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(0, 255, 157, 0.2) 0%, transparent 40%);
  filter: blur(60px);
  opacity: 0.6;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.other-cta-content {
  position: relative;
  background: rgba(26, 35, 50, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.other-cta-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 20px 40px rgba(123, 97, 255, 0.3);
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.other-cta-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.other-cta-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.other-cta-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.other-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .kik-card {
    flex-direction: column;
    text-align: center;
    padding: 48px;
  }
  
  .kik-card__icon {
    width: 100px;
    height: 100px;
  }
  
  .kik-card__icon svg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .other-hero {
    padding: 100px 0 60px;
  }
  
  .kik-card {
    padding: 32px 24px;
  }
  
  .kik-features {
    grid-template-columns: 1fr;
  }
  
  .kik-card__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .kik-card__actions .btn {
    width: 100%;
  }
  
  .it-preview__grid {
    grid-template-columns: 1fr;
  }
  
  .other-cta-content {
    padding: 48px 32px;
  }
  
  .other-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .other-cta-buttons .btn {
    width: 100%;
  }
}
