/* =======================================================
   💎 DO'STLIK CITY & MALL — PREMIUM STYLE ARCHITECTURE
   ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
body {
    background-color: #ffffff;
    color: #111827;
    scroll-behavior: smooth;
}

/* HEADER NAVIGATION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-konteyner img {
    height: 55px;
    object-fit: contain;
}
.logo-text {
    font-size: 20px;
    font-weight: 800; /* Qalin premium shrift */
    letter-spacing: 1px; /* Harflar aro nafis masofa */
    color: #0f3d32; /* Brendning to'q yashil rangi */
    text-transform: uppercase;
    line-height: 1;
}

/* Mobil telefonda yozuv siqilib qolmasligi uchun biroz kichrayadi */
@media (max-width: 480px) {
    .logo-text {
        font-size: 15px;
    }
}
.header-right-zone {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* SEARCH SYSTEM */
.header-search-box {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 15px;
    width: 170px;
    transition: all 0.3s ease;
}
.header-search-box:focus-within {
    width: 230px;
    border-color: #0f3d32;
    background: #ffffff;
}
.header-search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 13px;
    color: #111827;
}
.header-search-box .search-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    margin-right: 8px;
}

.language-switcher {
    display: flex;
    gap: 10px;
    justify-content: flex-end; /* Tepada o'ng tomonga joylashtirish */
    padding: 10px;
}

.language-switcher button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-switcher button:hover {
    background-color: #053d21; /* Bosilganda yoki sichqoncha borganda ko'k rang */
    color: white;
    border-color: #09350f;
}

/* MENU TRIGGER BUTTON */
.menu-open-btn {
    background: #0f3d32;
    color: white;
    border: none;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.menu-open-btn:hover {
    background: #d4af37;
    color: #0f3d32;
}

/* CINEMATIC HERO VIDEO BANNER */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
    background-color: #0b1f1b;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(11, 31, 27, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}
.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero p {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 35px;
}
.hero .btn {
    display: inline-block;
    background: #ffffff;
    color: #111827;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}
.hero .btn:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid white;
}

/* STATS SECTION (CITY MALL GRID) */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 70px 8%;
    background: #ffffff;
    gap: 40px;
}
.stat-box {
    border-left: 1px solid #e5e7eb;
    padding-left: 30px;
}
.stat-box h2 {
    font-size: 50px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-box p {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CARDS GALLERY SECTION */
.section-title {
    padding: 40px 8% 20px 8%;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b7280;
    font-weight: 600;
}
.sections-container {
    padding: 0 8% 100px 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    transition: 0.4s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}
.card-img-wrapper {
    height: 400px;
    overflow: hidden;
    background: #eaeaea;
}
.card-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card-img {
    transform: scale(1.04);
}
.card-content {
    padding: 40px 30px;
}
.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}
.card-content p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

/* FORM APPLICATION SECTION */
.form-section {
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.form-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}
.form-text p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}
.form-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 45px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #374151;
}
.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 15px;
}
.form-group input:focus {
    border-color: #111827;
    outline: none;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #0f3d32;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover {
    background-color: #155747;
}

/* SKRINSHOTDAGI FULL-SCREEN INTERAKTIV MENYU */
.full-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 61, 50, 0.4);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.full-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.menu-modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 850px;
    border-radius: 40px;
    padding: 60px 80px;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.full-menu-overlay.active .menu-modal-card {
    transform: translateY(0) scale(1);
}
.menu-close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111827;
    transition: 0.3s;
}
.menu-close-btn svg { width: 30px; height: 30px; }
.menu-close-btn:hover { transform: rotate(90deg); color: #d4af37; }

.menu-main-title {
    font-size: 54px;
    font-weight: 300;
    color: #111827;
    margin-bottom: 50px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 60px;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #111827;
    transition: 0.3s ease;
}
.menu-icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4b5563;
    transition: 0.3s ease;
}
.menu-icon-box svg { width: 18px; height: 18px; }
.menu-item span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menu-item:hover .menu-icon-box {
    background: #0f3d32;
    color: #ffffff;
    border-color: #0f3d32;
}
.menu-item:hover span { color: #d4af37; padding-left: 5px; }

/* RESPONSIVE DESIGN (MOBIL MOSLASHUVCHANLIK) */
@media (max-width: 850px) {
    .header-search-box { display: none; }
    .stats-section, .sections-container, .form-section, .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 { font-size: 40px; }
    .menu-modal-card { padding: 40px 20px; border-radius: 20px; }
    .menu-main-title { font-size: 34px; }
}

/* =======================================================
   🤖 AI ASSISTANT PLATFORM STILI
   ======================================================= */
.ai-chat-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Dumaloq interaktiv tugma */
.ai-chat-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0f3d32; /* Brendning to'q yashil rangi */
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 61, 50, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-chat-trigger svg { width: 26px; height: 26px; }
.ai-chat-trigger:hover {
    transform: scale(1.08);
    background: #d4af37; /* Oltin rangga o'zgaradi */
}

/* Tugma ustidagi kichik AI yozuvi */
.ai-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #d4af37;
    color: #0f3d32;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
}

/* Chat Oynasi */
.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #c7cac9;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Aktiv holatga keltirish */
.ai-chat-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Chatning tepa qismi (Header) */
.ai-chat-header {
    background: #0f3d32;
    padding: 20px;
    color: rgb(253, 253, 253);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ai-profile { display: flex; align-items: center; gap: 12px; }
.ai-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4af37;
}
.ai-avatar svg { width: 18px; height: 18px; }
.ai-profile h4 { font-size: 14px; font-weight: 600; }
.ai-profile p { font-size: 11px; color: #9ca3af; }
.ai-close-btn { background: transparent; border: none; color: rgb(253, 253, 253); cursor: pointer; }

/* Xabarlar ro'yxati */
.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #eff0f1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.msg {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
}
.ai-msg {
    background: rgb(218, 235, 227);
    color: #111827;
    border-radius: 4px 18px 18px 18px;
    border: 1px solid #025a47;
    align-self: flex-start;
}

/* Matn yozish qismi */
.ai-chat-input-zone {
    padding: 15px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
}
.ai-chat-input-zone input {
    flex: 1;
    border: 1px solid #cfe2d3;
    border-radius: 30px;
    padding: 10px 20px;
    outline: none;
    font-size: 13px;
}
.ai-chat-input-zone input:focus { border-color: #0f3d32; }
.ai-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f3d32;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}
.ai-send-btn svg { width: 16px; height: 16px; }
.ai-send-btn:hover { background: #d4af37; }

/* Mobil ekranlar uchun moslashuvchanlik */
@media (max-width: 480px) {
    .ai-chat-window {
        width: calc(100vw - 40px);
        height: 450px;
        right: -10px;
    }
}

.stat-box h2 {
    font-variant-numeric: tabular-nums; /* Raqamlar aylanayotganda matn qimirlab ketmasligi uchun */
    transition: all 0.6s ease;
}


/* --- Hamkorlar va Tugmalar Umumiy Bo'limi --- */
.partners-section {
    padding: 80px 20px;
    background-color: #0d0d0d; /* Logotip foni bilan bir xil premium qora */
    text-align: center;
}

.partners-title h2 {
    font-size: 2.2rem;
    color: #d4af37; /* Logotipdagi oltin rang */
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.partners-title p {
    color: #e0e0e0;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

/* --- Egizak Logotiplar Qutisi (Double Logos Box) --- */
.main-partner {
    width: 100%;
    max-width: 750px; /* 2 ta logo sig'ishi uchun quti kengaytirildi */
    margin: 0 auto;
}

.double-logos-box {
    background: #141414; /* Premium mat qora fon */
    padding: 30px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Nozik oltin hoshiya */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logotiplar joylashadigan qism */
.logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.holding-logo {
    width: 100%;
    height: auto;
    max-height: 140px; /* Logolar bir xil balandlikda turishi uchun */
    object-fit: contain;
    display: block;
    
    /* Rasmlarni tiniqlashtirish filtri */
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.03) brightness(1.02);
    transition: transform 0.3s ease;
}

/* Markazdagi oltin-kumush rangli ajratuvchi chiziq */
.logo-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* --- HOVER EFFEKTI --- */
.double-logos-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6); /* Oltin nurlanish kuchayadi */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

/* Sichqoncha kelganda logolar biroz jonlanadi */
.double-logos-box:hover .holding-logo {
    transform: scale(1.03);
}

/* --- RESPONSIVE (Mobil telefonlar uchun moslashuv) --- */
@media (max-width: 650px) {
    .double-logos-box {
        flex-direction: column; /* Telefonlarda logolar ustma-ust tushadi */
        padding: 30px 20px;
        gap: 30px;
    }
    
    .logo-divider {
        width: 80%;
        height: 1px; /* Chiziq vertikaldan gorizontalga o'tadi */
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    
    .holding-logo {
        max-height: 120px;
    }
}
/* --- TUGMALAR VA ANIMATSIYA KONTEXTI --- */
.bottom-buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

/* Davlat tugmalarining premium ko'rinishi */
.country-btn {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Bayroq va matn orasi */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.country-btn span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Bayroq maydoni (3D effekt yaratish uchun) */
.btn-flag-wrapper {
    display: inline-block;
    perspective: 400px;
}

/* SVG Bayroq o'lchamlari */
.btn-flag {
    width: 38px;
    height: 24px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
    transform-origin: left center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

/* --- HOVER (Sichqoncha kelgandagi effektlar) --- */

.country-btn:hover {
    transform: translateY(-5px);
    border-color: #d4af37; /* Hoshiya oltin rangga kiradi */
    background: #1a1a1a;
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
}

.country-btn:hover span {
    color: #d4af37; /* Matn oltin rangga kiradi */
}

/* Tugma ustiga sichqoncha kelganda ichidagi bayroq JONLI HILPIRAYDI */
.country-btn:hover .btn-flag {
    animation: flag-wave-animation 0.6s ease-in-out infinite alternate;
}

/* --- CSS KEYFRAMES (Hilpirash To'lqini) --- */
@keyframes flag-wave-animation {
    0% {
        transform: rotateY(15deg) skewY(-4deg) scale(1.02);
    }
    100% {
        transform: rotateY(30deg) skewY(5deg) scale(1.1);
    }
}

/* Mobil telefonlar uchun moslashtirish */
@media (max-width: 600px) {
    .bottom-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .country-btn {
        width: 85%;
    }
}



/* ======================================================== */
/* 🤖 AI TUGMASI UCHUN NUR TARATISH ANIMATSIYASI */
/* ======================================================== */

/* 1. Tugmaning o'zining asosiy ko'rinishini yangilaymiz (Nur chiqishi uchun) */
.ai-chat-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #0f3d32; /* Siz aytgan to'q yashil */
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 61, 50, 0.3);
    z-index: 9999; /* Saytning hamma narsasidan tepada turadi */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #d4af37; /* Oltin rangli hoshiya */
}

/* 2. Tugmaning atrofiga nur taratuvchi animatsiyali qavat (Ripple Effect) */
.ai-chat-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit; /* Asosiy tugma rangini oladi */
    opacity: 0.8;
    z-index: -1; /* Asosiy tugmaning orqasiga o'tadi */
    animation: pulse-glow 2s infinite; /* 2 soniyada miltillab turadi */
}

/* Hover effekti (Odam mishkani olib borganda) */
.ai-chat-trigger:hover {
    transform: scale(1.1); /* Sal kattalashadi */
    box-shadow: 0 6px 20px rgba(15, 61, 50, 0.5);
}

/* 3. Animatsiya logikasi (Ochib-yonish va kengayish) */
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(15, 61, 50, 0.7);
    }
    50% {
        opacity: 0; /* O'rtasida batamom yo'qoladi (Nur so'nadi) */
    }
    100% {
        transform: scale(2.6); /* Kengayib ketadi (Nur taraladi) */
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(15, 61, 50, 0); /* Nur tarqab ketadi */
    }
}



/* Sahifaning silliq aylanishi uchun */
html {
    scroll-behavior: smooth;
}

.parking-container {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.parking-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.parking-image-side {
    flex: 1;
    min-width: 300px;
}

.parking-image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.parking-info-side {
    flex: 1;
    min-width: 300px;
}

.sub-title {
    color: #ff6b6b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.parking-info-side h2 {
    font-size: 36px;
    color: #2d3748;
    margin: 10px 0 20px 0;
    font-weight: 700;
}

.parking-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 30px;
    background: #f7fafc;
    padding: 10px;
    border-radius: 8px;
}

.stat-details h3 {
    margin: 0;
    font-size: 20px;
    color: #1a202c;
    font-weight: 600;
}

.stat-details p {
    margin: 5px 0 0 0;
    color: #a0aec0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .parking-content {
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .parking-info-side h2 {
        font-size: 28px;
    }
}