/* Custom CSS for Onix Korsan Taksi */

/* Typography Glow */
.neon-text-glow {
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5), 0 0 20px rgba(251, 191, 36, 0.3);
}

.drop-shadow-gold {
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

/* Glassmorphism */
.glass-nav {
    background: rgba(5, 8, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Button Animations */
.btn-glow {
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(254, 252, 232, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-glow:hover::after {
    animation: shimmer 1s forwards;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateY(-100%); }
    100% { transform: rotate(45deg) translateY(100%); }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* Hero Background */
.hero-gradient {
    background: radial-gradient(circle at center, rgba(251, 191, 36, 0.08) 0%, rgba(5, 8, 15, 1) 70%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite alternate;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Premium Cards */
.premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 0 rgba(251, 191, 36, 0);
    transition: all 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 20px rgba(251, 191, 36, 0.1);
}

.premium-card:hover::before {
    box-shadow: inset 0 0 20px rgba(251, 191, 36, 0.1);
}

.premium-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(254, 252, 232, 0.1), transparent);
    transform: skewX(-20deg);
    animation: card-shimmer 1.5s forwards;
}

@keyframes card-shimmer {
    100% { left: 200%; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee for Reviews */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    gap: 2rem;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Particles base class */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
