/* Hizmetler & AI Botlar - Laravel: hizmetlerimiz.html ve ai-botlar.html'de yükle */

.service-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
  margin-bottom: 48px;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 2.25rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(15, 23, 42, 0.06);
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
}

.pricing-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--dark-soft);
}

.pricing-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* AI Bot Demo */
.bot-demo-section {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.bot-demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99,102,241,0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(236,72,153,0.15) 0%, transparent 50%);
}

.bot-demo-content {
  position: relative;
  z-index: 1;
}

.bot-demo-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.bot-demo-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.bot-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.bot-channel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.bot-channel:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.bot-channel .channel-icon-img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 10px;
}

.bot-channel .channel-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.bot-channel .channel-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.bot-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  transition: all var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.bot-feature-row:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateX(8px);
}

.bot-feature-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--white);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.bot-feature-row h3 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.bot-feature-row p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 767.98px) {
  .bot-demo-section { padding: 40px 24px; }
  .service-hero-card { padding: 28px; }
}
