.services-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 255, 200, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.services-header {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.services-header::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%);
  transform: translateX(-50%);
  animation: glowPulse 6s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.services-title-content {
  position: relative;
  z-index: 2;
}

/* Main Title */
.services-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #ffd580, #ff7b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: fadeInDown 1s ease forwards;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.services-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.7;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accent Line */
.services-line {
  width: 120px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ff7b00, #ffb84d);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,180,100,0.6);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.8; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
  .services-main-title {
    font-size: 2.5rem;
  }
  .services-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
}




/* Main Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 100px;
  min-height: 600px;
}

/* Service List */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(10px);
}

.service-item-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  position: relative;
  z-index: 2;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-item.active .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-text {
  flex: 1;
}

.service-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.service-text p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-arrow {
  color: #b0b0b0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.service-item.active .service-arrow {
  color: #FF6B35;
  transform: translateX(5px);
}

.service-indicator {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #FF6B35;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-item.active .service-indicator {
  opacity: 1;
  right: 20px;
}

/* Service Details */
.service-details {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.details-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.details-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.details-content {
  position: relative;
  z-index: 10;
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.details-header {
  margin-bottom: 40px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.badge-icon {
  color: #FF6B35;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
}

.details-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.details-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Grid */
.details-features {
  margin-bottom: 40px;
}

.details-features h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  color: #FF6B35;
  font-size: 0.8rem;
}

.feature-card span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Stats */
.details-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-card h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.8rem;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Actions */
.details-actions {
  display: flex;
  gap: 15px;
}

.btn-primary-large {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #FF6B35;
  color: white;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.btn-primary-large:hover {
  background: #FF8C42;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary-outline {
  padding: 15px 30px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-secondary-outline:hover {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* CTA Section */
.services-cta {
  position: relative;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  border-radius: 30px;
  padding: 60px;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.cta-buttons .btn-primaryyy {
  background: white;
  color: #FF6B35;
}

.cta-buttons .btn-primaryyy:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondaryyy {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondaryyy:hover {
  background: white;
  color: #FF6B35;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .services-main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 60px 0;
  }
  
  .services-main-title {
    font-size: 2.5rem;
  }
  
  .services-stats {
    gap: 30px;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
  
  .details-content {
    padding: 30px;
  }
  
  .details-header h3 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .details-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .details-actions {
    flex-direction: column;
  }
  
  .services-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
}

/* Dark Mode Compatibility */
[data-theme="dark"] .services-modern {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}