/* Custom CSS for Neelps Website */

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #cba6f7 0%, #9400FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
}

::-webkit-scrollbar-thumb {
    background: #cba6f7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9400FF;
}

/* Navigation active state */
.nav-link.active {
    color: #cba6f7 !important;
    font-weight: 600;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hero background */
.hero-bg {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0f1a 50%, #0f0f0f 100%);
}

/* Loading animations */
#loader {
    transition: opacity 0.5s ease-out;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Button styles */
.neon-button {
    background: linear-gradient(135deg, #cba6f7 0%, #9400FF 100%);
    color: #000;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.neon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(203, 166, 247, 0.3);
}

/* Form styles */
input, textarea, select {
    background-color: #0f0f0f !important;
    border-color: #27272a !important;
    color: #ffffff !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #cba6f7 !important;
    box-shadow: 0 0 0 1px #cba6f7 !important;
}

/* Success/Error messages */
.message {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
}

.message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Make intro video letterbox to avoid cropping faces on phones */
    #intro-video-overlay video {
        object-fit: contain;
        background: #000;
    }
    .hero-bg h1 {
        font-size: 2.5rem;
    }
    
    .hero-bg p {
        font-size: 1.1rem;
    }
    
    #navbar {
        padding: 12px 16px;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Order form styles */
.order-step {
    display: none;
}

.order-step.active {
    display: block;
    animation: fadeUp 0.5s ease-out;
}

.progress-bar {
    background: linear-gradient(135deg, #cba6f7 0%, #9400FF 100%);
    transition: width 0.5s ease;
}

.service-option {
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #cba6f7;
    background-color: rgba(203, 166, 247, 0.05);
}

.service-option.selected {
    border-color: #cba6f7;
    background-color: rgba(203, 166, 247, 0.1);
}

/* Budget slider */
.budget-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #27272a;
    border-radius: 9999px;
    outline: none;
}

.budget-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #cba6f7 0%, #9400FF 100%);
    border-radius: 50%;
    border: 2px solid #0f0f0f;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(203, 166, 247, 0.35);
}

.budget-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #cba6f7 0%, #9400FF 100%);
    border-radius: 50%;
    border: 2px solid #0f0f0f;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(203, 166, 247, 0.35);
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
}

.budget-labels #budgetValue {
    color: #cba6f7;
    font-weight: 600;
}

/* Team member cards */
.team-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Portfolio hover effects */
.portfolio-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* WhatsApp float animation */
.whatsapp-float {
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation-play-state: paused;
}

/* Intro video overlay */
#intro-video-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#intro-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevent page scroll during intro */
body.intro-active {
    overflow: hidden;
}

/* (removed) intro skip button styles */