Applying enhanced card animations with hover effects and staggered entrance transitions.
```

```replit_final_file
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff8c00;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: 2px solid #000;
    font-weight: bold;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    font-weight: bold;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Enhanced Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Smart Parking Visual */
.smart-parking-visual {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.1);
}

.ai-parking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.smart-zone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.3);
}

.parking-space {
    height: 50px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.parking-space.ai-detected {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.parking-space.ai-predicted {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(34,197,94,0.3);
    animation: aiPrediction 3s ease-in-out infinite;
}

.parking-space.ai-reserved {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(59,130,246,0.3);
}

.ai-control-center {
    text-align: center;
    margin-bottom: 25px;
    z-index: 10;
    position: relative;
}

.ai-brain-center {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    z-index: 10;
}

.ai-brain-main {
    font-size: 3rem;
    color: #fbbf24;
    animation: brainPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.neural-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, #fbbf24, transparent);
    height: 3px;
    animation: connectionPulse 3s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.connection-line.c1 {
    width: 40px;
    top: 20px;
    left: 30px;
    transform: rotate(45deg);
}

.connection-line.c2 {
    width: 40px;
    top: 60px;
    left: 30px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.connection-line.c3 {
    width: 40px;
    top: 40px;
    left: 10px;
    transform: rotate(90deg);
    animation-delay: 1s;
}

.connection-line.c4 {
    width: 40px;
    top: 40px;
    right: 10px;
    transform: rotate(90deg);
    animation-delay: 1.5s;
}

.advanced-ai-parking {
    text-align: center;
    margin-bottom: 25px;
}

.ai-parking-image {
    position: relative;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.parking-matrix {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.parking-row {
    display: flex;
    gap: 12px;
}

.smart-car {
    width: 40px;
    height: 20px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.smart-car.occupied-ai {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

.smart-car.available-ai {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    animation: availablePulse 3s ease-in-out infinite;
}

.smart-car.reserved-ai {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #ff8c00;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.ai-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.scanning-lines {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    animation: scanningEffect 3s linear infinite;
}

.ai-detection-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.detection-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff8c00;
    border-radius: 50%;
    animation: detectionPulse 2s ease-in-out infinite;
}

.detection-point.p1 {
    top: 30%;
    left: 25%;
}

.detection-point.p2 {
    top: 60%;
    right: 30%;
    animation-delay: 0.7s;
}

.detection-point.p3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 1.4s;
}

.ai-text-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ai-status-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff8c00;
}

.ai-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.metric {
    font-size: 0.9rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.smart-features-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-bubble {
    background: rgba(0,0,0,0.7);
    color: #ffd700;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.feature-bubble.camera-vision {
    animation-delay: 0s;
}

.feature-bubble.predictive-ai {
    animation-delay: 1s;
}

.feature-bubble.real-time {
    animation-delay: 2s;
}

/* Feature Icon Stacks */
.feature-icon-stack {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-icon-stack i:first-child {
    font-size: 3rem;
    color: #2563eb;
}

.ai-chip, .ai-robot, .ai-security, .ai-valet, .ai-touch, .ai-ar {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem !important;
    color: #fbbf24 !important;
    background: #2d1b69;
    border-radius: 50%;
    padding: 5px;
    animation: aiGlow 3s ease-in-out infinite;
    border: 2px solid #fbbf24;
}

/* AI Visualization Elements */
.ai-visualization {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.data-flow {
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #ffd700, #ffed4e);
    border-radius: 2px;
    animation: dataFlow 1.5s ease-in-out infinite;
}

.data-flow:nth-child(2) {
    animation-delay: 0.3s;
}

.data-flow:nth-child(3) {
    animation-delay: 0.6s;
}

/* Neural Network Visualization */
.neural-network {
    margin-top: 15px;
    position: relative;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.node {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    margin: 0 10px;
    animation: nodeActivation 2s ease-in-out infinite;
}

.node:nth-child(2) {
    animation-delay: 0.4s;
}

.node:nth-child(3) {
    animation-delay: 0.8s;
}

.connection {
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: connectionFlow 2s linear infinite;
}

.connection:first-of-type {
    left: 20px;
}

.connection:last-of-type {
    right: 20px;
    animation-delay: 1s;
}

/* Step AI Enhancement */
.step-number {
    position: relative;
}

.step-ai {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem !important;
    color: #22c55e !important;
    animation: aiGlow 2s ease-in-out infinite;
}

.ai-processing {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.processing-dot {
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: processingPulse 1.5s ease-in-out infinite;
}

.processing-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.processing-dot:nth-child(3) {
    animation-delay: 0.6s;
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes brainPulse {
    0%, 100% { 
        transform: scale(1);
        color: #ffd700;
    }
    50% { 
        transform: scale(1.1);
        color: #ffed4e;
    }
}

@keyframes aiPulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes aiGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

@keyframes dataFlow {
    0% {
        height: 5px;
        opacity: 0.3;
    }
    50% {
        height: 25px;
        opacity: 1;
    }
    100% {
        height: 5px;
        opacity: 0.3;
    }
}

@keyframes nodeActivation {
    0%, 100% {
        background: #ffd700;
        transform: scale(1);
    }
    50% {
        background: #ffed4e;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }
}

@keyframes connectionFlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes processingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        background: #ffd700;
    }
}

@keyframes aiPrediction {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(34,197,94,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255,215,0,0.5);
    }
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

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

@keyframes availablePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
    }
}

@keyframes scanningEffect {
    0% {
        top: 20%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 80%;
        opacity: 0;
    }
}

@keyframes detectionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.8);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.feature-card i {
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(168, 85, 247, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #ffd700;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    text-align: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 3.5rem;
    color: #a855f7;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: bold;
    letter-spacing: 1px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 4px 0;
    border-left: 3px solid #ffd700;
    padding-left: 20px;
    margin-bottom: 3px;
    color: #64748b;
    line-height: 1.3;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card li:before {
    content: '✓';
    position: absolute;
    left: -12px;
    top: 8px;
    background: #ffd700;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.benefit-card li:hover {
    color: #1e293b;
    border-left-color: #ffd700;
}

.benefit-card li:hover:before {
    background: #ffd700;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
}

.technology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.tech-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.4));
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.tech-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;    }

    .tech-card ul {
        list-style: none;
        padding: 0;
    }

    .tech-card li {
        padding: 4px 0;
        border-left: 3px solid #ffd700;
        padding-left: 15px;
        margin-bottom: 4px;
        opacity: 0.9;
    }

    /* Live Demo Section */
    .live-demo {
        padding: 80px 0;
        background: #000;
        color: white;
    }

    .live-demo h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .demo-dashboard {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .dashboard-card {
        background: rgba(255,255,255,0.1);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .dashboard-card h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .occupancy-meter {
        width: 100%;
        height: 20px;
        background: rgba(255,255,255,0.2);
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .meter-fill {
        height: 100%;
        background: linear-gradient(90deg, #ffd700 0%, #ffed4e 70%, #ff6b6b 100%);
        border-radius: 10px;
        width: 67%;
        transition: width 0.5s ease;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        color: #ffd700;
        margin-bottom: 10px;
    }

    /* Pricing Section */
    .pricing {
        padding: 80px 0;
        background: #f8fafc;
    }

    .pricing h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #1e293b;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .pricing-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s;
        position: relative;
    }

    .pricing-card.featured {
        border: 3px solid #2563eb;
        transform: scale(1.05);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #1e293b;
    }

    .price {
        font-size: 3rem;
        font-weight: bold;
        color: #2563eb;
        margin-bottom: 30px;
    }

    .price span {
        font-size: 1rem;
        color: #64748b;
    }

    .pricing-card ul {
        list-style: none;
        margin-bottom: 30px;
    }

    .pricing-card li {
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
        color: #64748b;
    }

    .pricing-card li:last-child {
        border-bottom: none;
    }

    /* Get Our App Section */
    .get-app {
        padding: 80px 0;
        background: #f8fafc;
        text-align: center;
    }

    .get-app h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #1e293b;
    }

    .get-app p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: #64748b;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .app-store-btn, .google-play-btn {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 2px solid #ffd700;
    }

    .app-store-btn:hover, .google-play-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        background: #1a1a1a;
    }

    .app-store-btn i, .google-play-btn i {
        font-size: 2rem;
        color: #fbbf24;
    }

    .app-store-btn div, .google-play-btn div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .app-store-btn span, .google-play-btn span {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .app-store-btn strong, .google-play-btn strong {
        font-size: 1.2rem;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .app-buttons {
            flex-direction: column;
        }

        .app-store-btn, .google-play-btn {
            width: 100%;
            max-width: 300px;
        }
    }

    /* Contact Section */
    .contact {
        padding: 80px 0;
    }

    .contact h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #1e293b;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: #1e293b;
    }

    .contact-info p {
        margin-bottom: 30px;
        color: #64748b;
        line-height: 1.6;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        color: #64748b;
    }

    .contact-item i {
        color: #a855f7;
        font-size: 1.2rem;
    }

    /* Social Media Styles */
    .social-media {
        margin-top: 40px;
    }

    .social-media h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #1e293b;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        min-width: 120px;
        justify-content: center;
    }

    .social-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(45, 27, 105, 0.3);
        border-color: #fbbf24;
        background: linear-gradient(135deg, #11047a 0%, #2d1b69 100%);
    }

    .social-link i {
        font-size: 1.2rem;
        color: #fbbf24;
    }

    .social-link span {
        font-weight: 500;
        font-size: 0.95rem;
    }

    /* LinkedIn specific styling */
    .social-link[href*="linkedin"]:hover {
        background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    }

    /* Twitter specific styling */
    .social-link[href*="twitter"]:hover {
        background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    }

    /* Facebook specific styling */
    .social-link[href*="facebook"]:hover {
        background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    }

    /* Instagram specific styling */
    .social-link[href*="instagram"]:hover {
        background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    }

    /* YouTube specific styling */
    .social-link[href*="youtube"]:hover {
        background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #ffd700;
    }

    /* Footer */
    .footer {
        background: #000;
        color: white;
        padding: 60px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 24px;
        font-weight: bold;
        color: #fbbf24;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        margin-bottom: 20px;
        color: #fbbf24;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 10px;
    }

    .footer-section a {
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section a:hover {
        color: white;
    }

    .footer-bottom {
        border-top: 1px solid #fbbf24;
        padding-top: 20px;
        text-align: center;
        color: #94a3b8;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 15px;
        }

        .ai-parking-grid {
            grid-template-columns: 1fr;
        }

        .contact-content {
            grid-template-columns: 1fr;
        }

        .social-links {
            justify-content: center;
        }

        .social-link {
            min-width: 100px;
            padding: 10px 15px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .steps {
            grid-template-columns: 1fr;
        }

        .tech-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .parking-lot {
            grid-template-columns: repeat(2, 1fr);
        }

        .pricing-card.featured {
            transform: none;
        }
    }

    @keyframes ripple-animation {
        to {
            transform: scale(2);
            opacity: 0;
        }
    }

    /* Notification System */
    .notification {
        position: fixed;
        top: 90px;
        right: 20px;
        padding: 15px 20px;
        border-radius: 8px;
        color: white;
        font-weight: 500;
        z-index: 10000;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 300px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .notification.show {
        transform: translateX(0);
        opacity: 1;
    }

    .notification.info {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    }

    .notification.success {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .notification.warning {
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }

    .notification.error {
        background: linear-gradient(135deg, #ef4444, #dc2626);
    }

    /* Smart Search Styles */
    .smart-search {
        padding: 12px 20px;
        border: 2px solid var(--border-color-current);
        border-radius: 25px;
        font-size: 1rem;
        background: var(--bg-card-current);
        color: var(--text-primary-current);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 400px;
    }

    .smart-search:focus {
        outline: none;
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
    }

    /* Enhanced Accessibility */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Focus indicators for better accessibility */
    button:focus,
    .social-link:focus,
    .app-store-btn:focus,
    .google-play-btn:focus {
        outline: 2px solid var(--accent-gold);
        outline-offset: 2px;
    }

    /* Enhanced navbar scrolled state */
    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    }

    /* Innovation Lab Section */
    .innovation-lab {
        padding: 80px 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: white;
        position: relative;
        overflow: visible;
    }

    .innovation-lab::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        opacity: 0.5;
        pointer-events: none;
    }

    .innovation-lab h2 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 60px;
        color: #ffd700;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        position: relative;
        z-index: 2;
    }

    .innovation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .innovation-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 215, 0, 0.3);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .innovation-card.featured {
        border-color: #ffd700;
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
        transform: scale(1.05);
    }

    .innovation-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.15);
}

.innovation-card.featured:hover {
    transform: scale(1.1) translateY(-15px);
    animation: cardGlowPulse 2s ease-in-out infinite;
}

.innovation-card:hover i {
    animation: iconRotate 1.5s ease-in-out;
    color: #ffed4e;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

.innovation-card:hover h3 {
    animation: textGlow 2s ease-in-out infinite;
}

    .feature-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #000;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        letter-spacing: 1px;
        animation: badgePulse 3s ease-in-out infinite;
        z-index: 10;
    }

    .innovation-card i {
        font-size: 3.5rem;
        color: #ffd700;
        margin-bottom: 25px;
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
        display: block;
    }

    .innovation-card h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #ffd700;
        font-weight: bold;
    }

    .innovation-card p {
        margin-bottom: 25px;
        line-height: 1.6;
        opacity: 0.9;
        color: #ffffff;
    }

    .tech-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .spec {
        background: rgba(255, 215, 0, 0.2);
        color: #ffd700;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        border: 1px solid rgba(255, 215, 0, 0.3);
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .spec:hover {
        background: rgba(255, 215, 0, 0.3);
        transform: scale(1.05);
    }

    /* AI Insights Dashboard */
    .ai-insights {
        padding: 80px 0;
        background: #f8fafc;
    }

    .ai-insights h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #1e293b;
    }

    .insights-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .insight-card {
        background: white;
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 3px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .insight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
    }

    .insight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
    }

    .insight-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .insight-icon i {
        font-size: 2rem;
        color: #000;
    }

    .insight-card h3 {
        text-align: center;
        font-size: 1.4rem;
        margin-bottom: 25px;
        color: #1e293b;
    }

    .insight-data {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .data-point {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .data-point .label {
        color: #64748b;
        font-weight: 500;
    }

    .data-point .value {
        color: #1e293b;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .progress-bar {
        width: 100%;
        height: 8px;
        background: #e2e8f0;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 10px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
        border-radius: 4px;
        transition: width 2s ease;
    }

    .behavior-metric, .impact-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .behavior-metric:last-child, .impact-stat:last-child {
        border-bottom: none;
    }

    .metric-name, .stat-label {
        color: #64748b;
        font-weight: 500;
    }

    .metric-value, .stat-number {
        color: #1e293b;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
        color: #ffd700;
    }

    @keyframes badgePulse {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        }
        50% {
            box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
        }
    }

    /* Performance optimization: will-change for animated elements */
    .feature-card,
    .benefit-card,
    .dashboard-card,
    .step {
        will-change: transform, opacity;
    }

    .feature-card.animated,
    .benefit-card.animated,
    .dashboard-card.animated,
    .step.animated {
        will-change: auto;
    }

/* Interactive Parking Map */
.interactive-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.interactive-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1e293b;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.level-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.level-btn {
    padding: 12px 24px;
    border: 2px solid #ffd700;
    background: transparent;
    color: #1e293b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.level-btn.active,
.level-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.parking-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 8px;
    background: #f1f5f9;
    padding: 30px;
    border-radius: 15px;
    min-height: 400px;
}

.parking-spot {
    background: #22c55e;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.parking-spot:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.parking-spot.available {
    background: #22c55e;
    border-color: #16a34a;
}

.parking-spot.occupied {
    background: #ef4444;
    border-color: #dc2626;
    cursor: not-allowed;
}

.parking-spot.reserved {
    background: #3b82f6;
    border-color: #1d4ed8;
    cursor: not-allowed;
}

.parking-spot.disabled {
    background: #64748b;
    border-color: #475569;
    cursor: not-allowed;
}

.parking-spot.selected {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: scale(1.15);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-item .spot {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.reservation-panel {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.reservation-panel h3 {
    color: #ffd700;
    margin-bottom: 25px;
    text-align: center;
}

.selected-spot {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #ffd700;
}

.time-selector {
    margin-bottom: 20px;
}

.time-selector label {
    display: block;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: 600;
}

.time-selector select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.price-estimate {
    text-align: center;
    margin-top: 15px;
    color: #ffd700;
    font-weight: bold;
}

/* AI Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 10001;
    border: 3px solid #ffd700;
    overflow: hidden;
}

.chatbot-widget.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.close-chat {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bot-message .message-content {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: #000;
    color: white;
}

.chatbot-input {
    padding: 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
}

.chatbot-input input:focus {
    border-color: #ffd700;
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    background: #ffd700;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
    background: #ffed4e;
}

.chatbot-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    animation: chatPulse 3s infinite;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7), 0 0 0 10px rgba(255, 215, 0, 0.1);
    }
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: #ffd700;
}

/* Enhanced Animations */
@keyframes floatingFeature {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
    }

    .parking-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .chatbot-widget {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}

@media (max-width: 768px) {
    .parking-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .map-legend {
        gap: 10px;
    }

    .level-selector {
        gap: 5px;
    }

    .level-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes for Innovation Cards */
@keyframes cardGlowPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.7);
    }
}

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

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
    }
}

/* Card Entrance Animation */
.card-entrance {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.card-entrance.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* JavaScript to initialize scroll animations */
document.addEventListener('DOMContentLoaded', function() {
    const observer = new IntersectionObserver(entries => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('animated');
                observer.unobserve(entry.target);
            } else {
                entry.target.classList.remove('animated');
            }
        });
    }, {
        rootMargin: '0px',
        threshold: 0.1
    });

/* Initialize scroll animations with staggered entrance */
    const animatedElements = document.querySelectorAll('.feature-card, .step, .dashboard-card, .benefit-card, .tech-card, .insight-card');

    animatedElements.forEach((el, index) => {
        el.style.opacity = '0';
        el.style.transform = 'translateY(50px) scale(0.95)';
        el.style.transition = `opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) ${index * 0.15}s, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) ${index * 0.15}s`;

        // Add entrance animation class
        el.classList.add('card-entrance');
        observer.observe(el);
    });
});