/* SuperCV.ie Custom Styles - Gen Z Modern Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --neon-green: #c1ff72;
    --cyber-blue: #5ce1e6;
    --deep-blue: #16497b;
    --dark-bg: #0a0e1a;
    --dark-card: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --gradient-primary: linear-gradient(135deg, var(--cyber-blue) 0%, var(--neon-green) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--deep-blue) 100%);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    --border-radius: 16px;
    --shadow-glow: 0 0 40px rgba(193, 255, 114, 0.3);
    --shadow-cyber: 0 0 30px rgba(92, 225, 230, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background: var(--gradient-dark);
    color: var(--text-primary);
    font-weight: 400;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Hero Section - Gen Z Style */
.hero-section {
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 10% 20%, rgba(193, 255, 114, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 90% 80%, rgba(92, 225, 230, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 120% 100% at 50% 60%, rgba(22, 73, 123, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, var(--dark-bg) 0%, #0f1623 40%, var(--deep-blue) 70%, var(--dark-bg) 100%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

/* Removed hero animation - causing crashes */

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(193, 255, 114, 0.5));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-guarantee {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-guarantee i {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(3px);
    opacity: 0.5;
    z-index: -1;
    animation: titlePulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--cyber-blue) 100%);
    border: 2px solid transparent;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 
        0 8px 32px rgba(193, 255, 114, 0.4),
        0 0 0 1px rgba(193, 255, 114, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(193, 255, 114, 0.6),
        0 0 0 2px rgba(193, 255, 114, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--dark-bg);
    background: linear-gradient(135deg, #d4ff85 0%, #6ef1f7 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}



/* Floating Elements - DISABLED FOR PERFORMANCE */
.floating-elements {
    display: none;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.floating-elements::after {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: -50px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes heroGlow {
    0% {
        filter: brightness(1) hue-rotate(0deg);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.2) hue-rotate(10deg);
        transform: scale(1.02);
    }
    100% {
        filter: brightness(1.1) hue-rotate(-5deg);
        transform: scale(1.01);
    }
}

@keyframes heroSweep {
    0% {
        transform: translateX(-100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(360deg);
        opacity: 0;
    }
}

/* Matrix Rain Effect - DISABLED FOR PERFORMANCE */
.matrix-rain {
    display: none;
}

.matrix-rain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(180deg, transparent 0%, rgba(92, 225, 230, 0.2) 50%, transparent 100%);
    background-size: 3px 150px;
    background-repeat: repeat-x;
    animation: matrixDrop 16s linear infinite reverse;
    will-change: transform;
}

@keyframes matrixDrop {
    0% {
        transform: translate3d(0, -100%, 0);
    }
    100% {
        transform: translate3d(0, 100vh, 0);
    }
}

/* Geometric Shapes - DISABLED FOR PERFORMANCE */
.geometric-shapes {
    display: none;
}

.geometric-shapes::before,
.geometric-shapes::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(193, 255, 114, 0.2);
    background: none;
}

.geometric-shapes::before {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    border-radius: 50%;
    animation: geometricFloat 15s ease-in-out infinite;
}

.geometric-shapes::after {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 8%;
    transform: rotate(45deg);
    border-color: rgba(92, 225, 230, 0.2);
    animation: geometricFloat 20s ease-in-out infinite reverse;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Enhanced Cyber Particles - DISABLED FOR PERFORMANCE */
.cyber-particles {
    display: none;
}

@keyframes particleField {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(0px) translateX(10px);
    }
    75% {
        transform: translateY(10px) translateX(5px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 2px rgba(193, 255, 114, 0.3),
            0 0 4px rgba(92, 225, 230, 0.2),
            0 0 6px rgba(22, 73, 123, 0.1);
    }
    100% {
        text-shadow: 
            0 0 4px rgba(193, 255, 114, 0.4),
            0 0 8px rgba(92, 225, 230, 0.3),
            0 0 12px rgba(22, 73, 123, 0.2);
    }
}

@keyframes titlePulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

/* Cyber Particles Effect */
.cyber-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cyber-particles::before,
.cyber-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 
        0 0 6px var(--neon-green),
        0 0 12px var(--neon-green),
        0 0 18px var(--neon-green);
    animation: particles 15s linear infinite;
}

.cyber-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cyber-particles::after {
    top: 60%;
    right: 15%;
    background: var(--cyber-blue);
    box-shadow: 
        0 0 6px var(--cyber-blue),
        0 0 12px var(--cyber-blue),
        0 0 18px var(--cyber-blue);
    animation-delay: 7s;
}

@keyframes particles {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) scale(0);
        opacity: 0;
    }
}

/* Cards - Cyberpunk Style */
.card {
    background: var(--dark-card);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-cyber);
    border-color: var(--cyber-blue);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-body {
    color: var(--text-primary);
}

.card-header {
    background: rgba(92, 225, 230, 0.1);
    border-bottom: 1px solid rgba(92, 225, 230, 0.2);
    color: var(--text-primary);
}

/* Features Section */
.features-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.feature-card {
    background: rgba(26, 31, 46, 0.4);
    border: 1px solid rgba(92, 225, 230, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(92, 225, 230, 0.3);
    box-shadow: 0 8px 24px rgba(92, 225, 230, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-description {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Packages Section */
.packages-section {
    background: var(--deep-blue);
    padding: 6rem 0;
    position: relative;
}



.package-card {
    background: rgba(26, 31, 46, 0.9);
    border: 2px solid rgba(92, 225, 230, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    height: 100%;
    margin-bottom: 2rem;
}



.package-card.featured {
    border-color: var(--neon-green);
    background: rgba(26, 31, 46, 0.95);
}



.package-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--cyber-blue) 100%);
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(193, 255, 114, 0.4);
}

.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 0.9rem;
}

.package-features li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Process Steps - Clean Minimal */
.process-section {
    background: var(--dark-bg);
    padding: 4rem 0;
}

.step-block {
    background: rgba(26, 31, 46, 0.4);
    border: 1px solid rgba(92, 225, 230, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-block:hover {
    border-color: rgba(92, 225, 230, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Order Form Styles */
.section-header h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Package Selection - Modern Design */
.package-selection {
    margin: 3rem 0;
    padding-top: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.package-option {
    position: relative;
    height: 100%;
}

.package-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card-modern {
    background: var(--dark-card);
    border: 2px solid rgba(92, 225, 230, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.02) 0%, rgba(92, 225, 230, 0.02) 100%);
    pointer-events: none;
}

.package-card-modern:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.2);
}

.package-radio:checked + .package-card-modern {
    border-color: var(--neon-green);
    background: rgba(193, 255, 114, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(193, 255, 114, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-price-modern {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.package-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features-modern li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.package-features-modern li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.package-popular {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(193, 255, 114, 0.4);
}

/* Modern Submit Button */
.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.submit-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(193, 255, 114, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(193, 255, 114, 0.4);
}

.button-text {
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

/* Modern Sidebar Cards */
.sidebar-card {
    background: var(--dark-card);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.02) 0%, rgba(92, 225, 230, 0.02) 100%);
    pointer-events: none;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(92, 225, 230, 0.1);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-title i {
    color: var(--neon-green);
    font-size: 1rem;
}

.sidebar-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.summary-placeholder {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    text-align: center;
    padding: 2rem 0;
}

.tips-section,
.contact-section {
    margin-bottom: 1.5rem;
}

.tips-section:last-child,
.contact-section:last-child {
    margin-bottom: 0;
}

.tips-title,
.contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.tips-list li::before {
    content: '→';
    color: var(--cyber-blue);
    font-weight: bold;
    margin-right: 0.75rem;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--cyber-blue);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.02) 0%, rgba(92, 225, 230, 0.02) 100%);
    pointer-events: none;
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 40s linear infinite;
    width: calc(300px * 12 + 2rem * 11);
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 2rem * 5));
    }
}

.testimonial-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid rgba(92, 225, 230, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 300px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(193, 255, 114, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--neon-green);
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(193, 255, 114, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(92, 225, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-button-large {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--cyber-blue) 100%);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 32px rgba(193, 255, 114, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(193, 255, 114, 0.4);
    color: var(--dark-bg);
    background: linear-gradient(135deg, #d4ff85 0%, #6ef1f7 100%);
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-notice {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-notice i {
    color: var(--cyber-blue);
    margin-right: 0.5rem;
}

/* CV Example Section */
.cv-example-section {
    padding: 5rem 0;
    background: var(--dark-card);
    position: relative;
}

.example-content {
    padding: 2rem 0;
}

.example-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.example-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.example-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.example-stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.example-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.example-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(193, 255, 114, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.example-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(193, 255, 114, 0.4);
    color: var(--dark-bg);
}

/* CV Preview */
.cv-preview {
    position: relative;
}

.browser-frame {
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.browser-header {
    background: #e0e0e0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
}

.browser-buttons {
    display: flex;
    gap: 0.5rem;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close {
    background: #ff5f56;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #27ca3f;
}

.browser-url {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
    flex-grow: 1;
    max-width: 200px;
    text-align: center;
    border: 1px solid #ddd;
}

.cv-content {
    background: #fff;
    padding: 2rem;
    color: #333;
    min-height: 400px;
}

.cv-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 1.5rem;
}

.cv-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-blue), var(--neon-green));
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-intro h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.cv-role {
    color: #5a67d8;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.cv-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cv-contact span {
    color: #888;
    font-size: 0.85rem;
}

.cv-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cv-section h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.cv-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cv-position {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cv-position strong {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.company {
    color: #666;
    font-size: 0.85rem;
}

.cv-date {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(135deg, var(--cyber-blue), var(--neon-green));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Modern Form Styling */
.form-container {
    background: var(--gradient-dark);
    min-height: 100vh;
    padding: 2rem 0;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.order-form-card {
    background: var(--dark-card);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-cyber);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.order-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 255, 114, 0.02) 0%, rgba(92, 225, 230, 0.02) 100%);
    pointer-events: none;
}

.form-section {
    margin-bottom: 3rem;
    position: relative;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--neon-green);
    font-size: 1.2rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.optional {
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: none;
    font-size: 0.85rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(193, 255, 114, 0.05);
    box-shadow: 0 0 0 3px rgba(193, 255, 114, 0.1);
}

.form-input:hover {
    border-color: rgba(92, 225, 230, 0.4);
}

/* File Upload Styling */
.form-input[type="file"] {
    border: 2px dashed rgba(92, 225, 230, 0.3);
    padding: 2rem 1.25rem;
    background: rgba(92, 225, 230, 0.02);
    cursor: pointer;
    text-align: center;
    position: relative;
}

.form-input[type="file"]:hover {
    border-color: var(--neon-green);
    background: rgba(193, 255, 114, 0.05);
}

/* Work Experience Container */
.work-experience-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6 !important;
    position: relative;
}

.work-experience-item .remove-experience {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

/* Admin Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 15px;
    border-left: 2px solid #dee2e6;
    padding-left: 25px;
    margin-bottom: 10px;
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-item i {
    position: absolute;
    left: -8px;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

/* Success/Cancel Pages */
.success-icon, .cancel-icon {
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: calc(100vh - 70px);
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .features-section,
    .packages-section,
    .process-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .section-subtitle {
        padding: 0 1rem;
    }
    
    .package-card {
        margin-bottom: 2rem;
    }
    
    .package-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .package-selection {
        padding-top: 1.5rem;
    }
    
    .feature-card,
    .step-block {
        margin-bottom: 2rem;
    }
    
    .floating-elements::before,
    .floating-elements::after {
        display: none;
    }
}

/* DISABLE ALL ANIMATIONS TO PREVENT CRASHES */
* {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Re-enable only essential transitions for buttons */
.cta-button,
.cta-button-large,
.example-cta {
    transition: opacity 0.2s ease !important;
}

.cta-button:hover,
.cta-button-large:hover,
.example-cta:hover {
    opacity: 0.9 !important;
}
    
    /* Reduce background effects on mobile for performance */
    .matrix-rain {
        opacity: 0.15;
        background-size: 4px 80px;
    }
    
    .geometric-shapes::before,
    .geometric-shapes::after {
        width: 60px;
        height: 60px;
    }
    
    .cyber-particles {
        opacity: 0.4;
        background-size: 150px 80px;
    }
    
    /* CV Example Mobile */
    .cv-example-section {
        padding: 3rem 0;
    }
    
    .example-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .browser-frame {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .browser-url {
        font-size: 0.75rem;
        max-width: 150px;
    }
    
    .cv-content {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .cv-hero {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cv-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .features-section,
    .packages-section,
    .process-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card,
    .step-block {
        padding: 1.5rem;
    }
}

/* Form Mobile Optimization */
@media (max-width: 768px) {
    .form-container {
        padding: 1rem 0;
    }
    
    .order-form-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .form-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-input[type="file"] {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .section-title i {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    /* Hero Logo Mobile */
    .hero-logo-img {
        height: 130px;
    }
    
    /* Hero Stats Mobile */
    .hero-stats {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-guarantee {
        font-size: 0.85rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    /* Final CTA Mobile */
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-notice {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .order-form-card {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .form-input {
        padding: 0.75rem;
    }
    
    .form-input[type="file"] {
        padding: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    /* Package Cards Mobile */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card-modern {
        padding: 1.5rem;
    }
    
    .package-name-modern {
        font-size: 1.3rem;
    }
    
    .package-price-modern {
        font-size: 2rem;
    }
    
    .package-features-modern li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .package-popular {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Submit Button Mobile */
    .form-submit {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Sidebar Mobile */
    .sidebar-card {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-header {
        padding: 1rem;
    }
    
    .sidebar-content {
        padding: 1rem;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tips-section,
    .contact-section {
        margin-bottom: 1rem;
    }
    
    /* Fake Orders Mobile */
    .order-notification {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
    }
    
    .order-notification span {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Custom Bootstrap Overrides */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Navbar - Modern Dark Mobile-First */
.navbar {
    background: rgba(10, 14, 26, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(92, 225, 230, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    min-height: 70px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.fake-orders {
    display: flex;
    align-items: center;
}

.order-notification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(193, 255, 114, 0.1);
    border: 1px solid rgba(193, 255, 114, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-green);
    animation: pulseGlow 2s ease-in-out infinite;
    white-space: nowrap;
}

.order-notification i {
    color: var(--neon-green);
    font-size: 0.9rem;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(193, 255, 114, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(193, 255, 114, 0.5);
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 2px;
    position: relative;
    background: var(--neon-green);
    display: block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.navbar-collapse {
    background: rgba(10, 14, 26, 0.98);
    margin: 0 -15px;
    padding: 1rem 15px;
    border-top: 1px solid rgba(92, 225, 230, 0.1);
    margin-top: 0.5rem;
}

.navbar-nav {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0.25rem 0;
}

.navbar-nav .nav-link:hover {
    color: var(--neon-green) !important;
    background: rgba(193, 255, 114, 0.1);
}

/* Desktop navbar adjustments */
@media (min-width: 992px) {
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .order-notification {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .navbar-collapse {
        background: none;
        margin: 0;
        padding: 0;
        border: none;
        margin-top: 0;
    }
    
    .navbar-nav .nav-link {
        text-align: left;
        margin: 0;
        padding: 0.5rem 1rem !important;
    }
}

/* Footer - Cyber Style */
footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(92, 225, 230, 0.2);
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sticky Elements */
.sticky-top {
    top: 1rem !important;
}

/* Alert Improvements */
.alert {
    border: none;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-success {
    border-left-color: var(--success-color);
}

.alert-danger {
    border-left-color: var(--danger-color);
}

.alert-warning {
    border-left-color: var(--warning-color);
}

.alert-info {
    border-left-color: var(--info-color);
}
