/* Home Page - Laravel: sadece index sayfasında yükle */

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #fdf2f8 100%);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-shape.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.25);
  top: -10%;
  right: -5%;
}

.hero-bg-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(236, 72, 153, 0.2);
  bottom: 10%;
  left: -10%;
}

.hero-bg-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.2);
  top: 40%;
  left: 30%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-avatars span:nth-child(1) { background: #6366f1; }
.hero-trust-avatars span:nth-child(2) { background: #8b5cf6; }
.hero-trust-avatars span:nth-child(3) { background: #ec4899; }
.hero-trust-avatars span:nth-child(4) { background: #f59e0b; }

.hero-trust-text {
  font-size: 0.875rem;
  color: var(--gray);
}

.hero-trust-text strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-mockup {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-mockup-dot.red { background: #ef4444; }
.hero-mockup-dot.yellow { background: #f59e0b; }
.hero-mockup-dot.green { background: #22c55e; }

.chat-bubble {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}

.chat-bubble.incoming {
  background: #f1f5f9;
  color: var(--dark);
  border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
  background: var(--gradient);
  color: var(--white);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  box-shadow: var(--shadow-glow);
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background: #f1f5f9;
  border-radius: 18px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: var(--gray-light);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.floating-card.card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 1s;
}

.floating-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-card .icon.green { background: #d1fae5; }
.floating-card .icon.purple { background: #ede9fe; }

/* ---- Platforms ---- */
.platforms-section {
  padding: 40px 0;
  background: var(--white);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.04);
}

.platforms-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.platform-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.platform-item .platform-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.platform-item .platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon--whatsapp { background: #25D366; }
.platform-icon--tiktok { background: #000000; }
.platform-icon--twitter { background: #000000; }
.platform-icon--web { background: #6366f1; }

/* ---- Services Preview ---- */
.service-card-featured {
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.service-card-featured h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  margin-bottom: 24px;
}

.service-card-featured .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  position: relative;
}

.service-card-featured .feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-card-featured .btn-white-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
  position: relative;
}

.service-card-featured .btn-white-sm:hover {
  transform: translateY(-2px);
  color: var(--primary-dark);
}

/* ---- Process ---- */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(99, 102, 241, 0.15);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--gray);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: all var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gray);
}

@media (max-width: 991.98px) {
  .hero-visual { margin-top: 48px; }
  .floating-card { display: none; }
}
