/* Vehicle Parking Page Styles */

/* Surveillance Style Hero */
.parking-hero {
    padding: 180px 0 100px 0;
    background:
        linear-gradient(to bottom, rgba(2, 3, 4, 0.8), rgba(2, 3, 4, 1)),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%2310b981' fill-opacity='0.05'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}

.scanner-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: scan 4s linear infinite;
    z-index: 1;
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Glass Console Layout */
.console-box {
    background: rgba(16, 185, 129, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid #10b981;
    border-radius: 4px;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.corner-accent {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #10b981;
    opacity: 0.5;
}
.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Detection Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    background: rgba(16, 185, 129, 0.03);
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: rgba(16, 185, 129, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Global Matrix */
.location-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.location-tag:hover {
    background: #10b981;
    color: #000;
    border-color: #10b981;
    transform: translateY(-2px);
}

/* Deep Learning Spotlight Section */
.deep-learning-spotlight {
    position: relative;
    overflow: hidden;
}

.deep-learning-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Console Animation */
.console-animation {
    position: relative;
    overflow: hidden;
}

.console-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: console-glow 3s ease-in-out infinite;
}

@keyframes console-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* CTA Button */
.parking-cta-button {
    background: #10b981;
    color: #020304;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.parking-cta-button:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

@media (max-width: 1024px) {
    .parking-hero {
        padding: 140px 0 80px 0;
    }

    .console-box {
        padding: 30px 24px;
    }

    .step-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .parking-hero h1 {
        font-size: 2.5rem;
    }

    .console-box {
        padding: 24px 20px;
    }

    .location-tag {
        padding: 6px 12px;
        font-size: 10px;
    }
}