/* Landing Page Custom Styles - Dark Neon Theme */

/* Fixed navbar compensation - Updated to account for logo height and padding */
body {
    padding-top: 90px; /* Increased to account for 65px logo + navbar padding and borders */
}

/* Additional utility class for content that needs navbar spacing */
.content-with-fixed-navbar {
    padding-top: 90px;
}

/* Ensure first sections on pages have proper spacing */
section.py-5:first-of-type {
    padding-top: 3rem !important;
}

/* Neon Green Color Variables */
:root {
    --neon-green: #00ff41;
    --neon-green-bright: #39ff14;
    --black: #000000;
    --dark-card: #0a0a0a;
    --dark-secondary: #111111;
    --light-gray: #cccccc;
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: brightness(0.3);
}

.hero-background-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(13,110,253,0.3) 100%);
}

.hero-overlay-neon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.min-vh-75 {
    min-height: 75vh;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dark Theme Colors */
.bg-black { background-color: #000000 !important; }
.bg-dark-card { background-color: #0a0a0a !important; }
.bg-dark-secondary { background-color: #111111 !important; }
.text-neon-green { color: #00ff41 !important; }
.text-light-gray { color: #cccccc !important; }

/* Neon Text Effects */
.neon-text {
    text-shadow: 
        0 0 5px #00ff41,
        0 0 10px #00ff41,
        0 0 15px #00ff41;
}

/* Neon Buttons */
.btn-neon-green {
    background-color: #00ff41;
    border-color: #00ff41;
    color: #000000;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
}

.btn-neon-green:hover {
    background-color: #39ff14;
    border-color: #39ff14;
    color: #000000;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
}

/* Dark Cards */
.service-card-dark {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
}

.service-card-dark:hover {
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

.review-card-dark {
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.review-card-dark:hover {
    border: 2px solid #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

/* Neon Effects */
.border-neon { border: 1px solid rgba(0, 255, 65, 0.5) !important; }
.border-neon-glow { border: 2px solid #00ff41 !important; box-shadow: 0 0 20px rgba(0, 255, 65, 0.3); }
.shadow-neon { box-shadow: 0 0 20px rgba(0, 255, 65, 0.3) !important; }
.shadow-dark { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important; }

.neon-icon {
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease;
}

.neon-icon:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
    transform: scale(1.05);
}

/* CTA Section */
.cta-section-neon {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    position: relative;
}

.cta-section-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.6s both;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-15px); }
    70% { transform: translateY(-8px); }
    90% { transform: translateY(-3px); }
}

@keyframes neonPulse {
    0%, 100% { 
        text-shadow: 
            0 0 5px #00ff41,
            0 0 10px #00ff41;
    }
    50% { 
        text-shadow: 
            0 0 10px #39ff14,
            0 0 20px #39ff14,
            0 0 30px #39ff14;
    }
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.2) !important;
}

.hover-lift-subtle {
    transition: all 0.3s ease;
}

.hover-lift-subtle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

.hover-lift-neon {
    transition: all 0.3s ease;
}

.hover-lift-neon:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 65, 0.4) !important;
}

.hover-text-neon:hover {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: #00ff41;
}

/* Review Cards */
.review-card {
    transition: all 0.3s ease;
}

.stars {
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

/* Enhanced Feature Icons */
.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: scale(1.1);
}

/* Avatar Styles */
.avatar {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Slightly less padding on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 2rem !important;
    }
    
    .neon-text {
        text-shadow: 
            0 0 3px #00ff41,
            0 0 6px #00ff41;
    }
}