.journey-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
.journey-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #c77dff, #9b4dca, #c77dff, #ff66b5, #c77dff);
  box-shadow: 0 0 20px rgba(199,125,255,0.8);
  border-radius: 4px;
  animation: blinkLine 3.5s ease-in-out infinite;
}
@keyframes blinkLine {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(199,125,255,0.5); }
  50% { opacity: 1; box-shadow: 0 0 30px rgba(199,125,255,0.9), 0 0 10px #ff66b5; }
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  animation: levitate 3s ease-in-out infinite;
  animation-play-state: paused;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation-play-state: running;
}
@keyframes levitate {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  width: 43%;
  background: rgba(30, 28, 45, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(199,125,255,0.3);
  transition: all 0.3s ease;
  position: relative;
}
.timeline-content:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #c77dff;
  box-shadow: 0 15px 35px rgba(199,125,255,0.2);
}
.timeline-step {
  display: inline-block;
  background: rgba(199,125,255,0.25);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c77dff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: 'Syne', sans-serif;
}
.timeline-content p {
  color: #e0dcff;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1rem;
}
.timeline-image {
  margin-top: 16px;
  border-radius: 20px;
  overflow-x: hidden;
overflow-y: auto;
  position: relative;
}
.timeline-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.timeline-image:hover img { transform: scale(1.05); }
.timeline-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199,125,255,0.2), transparent);
  pointer-events: none;
  border-radius: 16px;
}

.timeline-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #c77dff, #9b4dca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #0a0a0f;
  box-shadow: 0 0 25px rgba(199,125,255,0.6);
  z-index: 10;
  transition: all 0.3s ease;
}
.timeline-icon:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 35px rgba(199,125,255,0.9);
}
.timeline-item:nth-child(odd) .timeline-icon { right: -75px; }
.timeline-item:nth-child(even) .timeline-icon { left: -75px; }

.pollen-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ffd700, #c77dff);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 11;
  animation: floatPollen 4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,215,0,0.8);
}
@keyframes floatPollen {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(var(--tx, 30px), var(--ty, -30px)) scale(1.2); }
}

@media (max-width: 768px) {
  .journey-container::before { left: 30px; transform: none; width: 3px; }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
  }
  .timeline-content { width: 100%; margin-bottom: 20px; }
  .timeline-icon {
    left: -10px !important;
    right: auto !important;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  .timeline-content h3 { font-size: 1.3rem; }
  .timeline-content p { font-size: 0.9rem; }
}

/* ===== PREMIUM ADMIN PANEL UPGRADE ===== */

.premium-admin-panel,
.admin-panel,
.dashboard-panel {
    background:
        radial-gradient(circle at top left, rgba(120,119,198,0.20), transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #111827 40%, #1e293b 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.45),
        0 0 80px rgba(120,119,198,0.18);
    backdrop-filter: blur(18px);
    overflow-x: hidden;
overflow-y: auto;
    position: relative;
}

.premium-admin-panel::before,
.admin-panel::before,
.dashboard-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.06),
        transparent);
    transform: translateX(-100%);
    animation: premiumSweep 8s infinite linear;
    pointer-events: none;
}

@keyframes premiumSweep {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

.admin-panel button,
.dashboard-panel button {
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
    transition: all .35s ease;
}

.admin-panel button:hover,
.dashboard-panel button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 35px rgba(139,92,246,0.45);
}

.admin-panel h1,
.dashboard-panel h1 {
    letter-spacing: 0.04em;
    font-weight: 800;
    text-transform: uppercase;
}


/* ===== ADMIN SCROLL FIX ===== */

html, body {
    min-height: 100%;
    overflow-y: auto !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.admin-panel,
.dashboard-panel,
.admin-content,
.admin-wrapper {
    max-height: none !important;
    overflow-y: visible !important;
}
