:root {
    /* Təmiz fon */
    --bg-color: #F6F8FD;
    
    /* Təbii Şüşə (Glass) */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    
    /* Loqodan gələn rənglər */
    --primary-yellow: #F5A623; /* Qızılı sarı */
    --primary-yellow-hover: #E0961E;
    --text-main: #0B0C10; /* Tünd qara */
    --text-muted: #747E91;
    
    /* Zərif kölgələr */
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.05);
    --shadow-hover: 0 15px 45px rgba(245, 166, 35, 0.15);
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- ARXA PLAN AMBIENT İŞIQLARI (Qızılı tonlarda) --- */
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    animation: moveBlobs 20s infinite alternate;
}

.blob-1 { width: 500px; height: 500px; background: #FFE099; top: -100px; right: -100px; }
.blob-2 { width: 600px; height: 600px; background: #E2E8FF; top: 40%; left: -200px; }
.blob-3 { width: 400px; height: 400px; background: #FFF4D6; bottom: -50px; right: 10%; }

@keyframes moveBlobs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
    100% { transform: translate(-30px, -20px) scale(0.9); }
}

/* --- SƏHİFƏ YÜKLƏNMƏ ANİMASİYALARI --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --- DÜYMƏLƏR --- */
.btn {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.btn i.fa-arrow-right { transition: transform 0.3s ease; }
.btn:hover { border-color: var(--primary-yellow); color: var(--primary-yellow); transform: translateY(-2px); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-main); /* Sarı fonda qara mətn */
    border: none;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-yellow-hover);
    color: var(--text-main); transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(245, 166, 35, 0.4);
    border-color: transparent;
}

/* --- KARTLAR (Glassmorphism) --- */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(245, 166, 35, 0.4); }

/* --- HEADER --- */
header {
    padding: 15px 0; position: sticky; top: 0; z-index: 1000;
    background: rgba(246, 248, 253, 0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

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

/* Yenilənmiş Loqo Dizaynı */
.logo { 
    display: flex; align-items: center; gap: 12px;
    color: var(--text-main);
}
.logo i { 
    color: var(--primary-yellow); 
    font-size: 32px; 
    transform: rotate(-45deg);
    filter: drop-shadow(0 4px 6px rgba(245, 166, 35, 0.3));
}
.logo-text {
    display: flex; flex-direction: column; line-height: 1.1;
}
.logo-text-main { font-weight: 900; font-size: 22px; letter-spacing: 1px; }
.logo-text-sub { font-weight: 800; font-size: 11px; color: var(--primary-yellow); letter-spacing: 2px; }

.nav-links {
    display: flex; gap: 8px; background: rgba(255, 255, 255, 0.5);
    padding: 6px; border-radius: 100px; border: 1px solid var(--glass-border);
}
.nav-links a { padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: 14px; color: var(--text-muted); }
.nav-links a.active, .nav-links a:hover { background: #FFFFFF; color: var(--text-main); box-shadow: 0 2px 10px rgba(0,0,0,0.03);}

/* --- HERO BÖLMƏSİ --- */
.hero-section { display: flex; align-items: center; justify-content: space-between; min-height: 550px; margin-top: 40px; position: relative; }
.hero-content { flex: 1; max-width: 500px; z-index: 2; }
.hero-content h1 { font-size: 60px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px; }
.hero-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; font-weight: 500;}

@keyframes floatCar {
    0% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-15px); }
    100% { transform: translateY(-50%) translateY(0); }
}

.car-image-container {
    position: absolute; right: 15%; top: 50%;
    width: 55%; z-index: 1; pointer-events: none;
    animation: floatCar 6s ease-in-out infinite;
}
.car-image-container img { width: 100%; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.1)); }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.smart-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.3);
    padding: 30px; width: 380px; position: absolute; right: 0; z-index: 10;
    animation: slideInRight 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.panel-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-weight: 800; font-size: 16px;}
.ai-input { background: rgba(255,255,255,0.6); border: 1px solid var(--glass-border); border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; transition: var(--transition);}
.ai-input:focus-within { background: #FFFFFF; border-color: var(--primary-yellow); box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);}
.ai-input input { border: none; background: transparent; outline: none; width: 100%; font-size: 14px; color: var(--text-main); font-weight: 600;}

.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.filter-item { background: rgba(255, 255, 255, 0.5); border: 1px solid var(--glass-border); padding: 15px; border-radius: 16px; cursor: pointer; transition: var(--transition); }
.filter-item:hover { border-color: rgba(245, 166, 35, 0.6); background: #FFFFFF; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.03);}
.filter-item i { color: var(--primary-yellow); margin-bottom: 8px; font-size: 18px; }
.filter-item span { display: block; font-size: 13px; font-weight: 800; }

/* --- BÖLMƏLƏR --- */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin: 100px 0 40px; }
.section-title h2 { font-size: 34px; font-weight: 900; letter-spacing: -0.5px; }
.section-title p { color: var(--text-muted); font-size: 16px; margin-top: 5px; font-weight: 500;}

.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* KART DİZAYNI */
.item-card { display: flex; flex-direction: column; padding: 16px; }
.img-wrap { width: 100%; height: 190px; border-radius: 16px; overflow: hidden; margin-bottom: 16px; position: relative; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.item-card:hover .img-wrap img { transform: scale(1.08); }

.badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
    color: var(--text-main); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 6px 12px; border-radius: 100px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.price { font-size: 22px; font-weight: 900; color: var(--text-main); margin-bottom: 4px; display: flex; align-items: center; gap: 8px;}
.price::before { content: ''; display: block; width: 8px; height: 8px; background: var(--primary-yellow); border-radius: 50%;}
.title { font-size: 17px; font-weight: 800; margin-bottom: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.specs { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.05); font-size: 13px; color: var(--text-muted); font-weight: 600; }
.specs i { color: #A0A8B8; margin-right: 4px; }

/* --- VİDEO VƏ XƏBƏRLƏR --- */
.media-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }

.video-box { position: relative; border-radius: 24px; overflow: hidden; height: 100%; min-height: 380px; border: 1px solid var(--glass-border); box-shadow: var(--shadow-soft); }
.video-box img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 0.8s ease;}
.video-box:hover img { transform: scale(1.03); filter: brightness(0.7); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(245, 166, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; color: var(--text-main); font-size: 28px; cursor: pointer;
    backdrop-filter: blur(10px); transition: var(--transition);
    animation: pulse 2s infinite;
}

.play-icon:hover { background: var(--primary-yellow); transform: translate(-50%, -50%) scale(1.1); animation: none; }

.video-info { position: absolute; bottom: 30px; left: 30px; color: white; }
.video-info span { background: var(--primary-yellow); color: var(--text-main); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.3);}
.video-info h3 { font-size: 26px; font-weight: 900; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-card { display: flex; gap: 16px; align-items: center; padding: 16px; cursor: pointer;}
.news-card img { width: 90px; height: 90px; border-radius: 16px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.05);}
.news-text h4 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; font-weight: 800; transition: var(--transition);}
.news-card:hover .news-text h4 { color: var(--primary-yellow); }
.news-text p { font-size: 13px; color: var(--text-muted); font-weight: 600;}

/* --- USTALAR VƏ PARTNYORLAR --- */
.mechanic-card { 
    display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px; 
    transition: var(--transition); border: 1px solid var(--glass-border);
}
.mechanic-card:hover { border-color: var(--primary-yellow); background: #FFF; }
.mechanic-img { 
    width: 90px; height: 90px; border-radius: 50%; object-fit: cover; 
    margin-bottom: 16px; border: 3px solid #FFFFFF; box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
    transition: var(--transition);
}
.mechanic-card:hover .mechanic-img { transform: scale(1.05); border-color: var(--primary-yellow); }
.spec-tag { 
    display: inline-block; background: #F8FAFC; border: 1px solid #E2E8F0; color: var(--text-muted); 
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; 
    padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; transition: var(--transition);
}
.mechanic-card:hover .spec-tag { background: rgba(245, 166, 35, 0.1); color: var(--primary-yellow); border-color: var(--primary-yellow); }
.stars { color: var(--primary-yellow); font-size: 12px; margin: 8px 0; }

.partners-wrap {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px;
    margin-bottom: 80px; padding: 40px; border-radius: 30px;
}

.partner { font-size: 26px; font-weight: 900; color: #A4ADC0; display: flex; align-items: center; gap: 10px; transition: var(--transition); filter: grayscale(100%) opacity(0.6); }
.partner:hover { color: var(--text-main); filter: grayscale(0%) opacity(1); transform: translateY(-3px); }

/* --- FOOTER --- */
footer { background: rgba(255,255,255,0.5); backdrop-filter: blur(20px); padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { font-size: 17px; margin-bottom: 24px; font-weight: 900; }
.footer-col ul li { margin-bottom: 14px; color: var(--text-muted); font-size: 15px; font-weight: 600;}
.footer-col ul li a:hover { color: var(--primary-yellow); padding-left: 5px;}

.social-icons { display: flex; gap: 12px; margin-top: 24px; }
.social-icons a { width: 45px; height: 45px; border-radius: 50%; background: #FFFFFF; display: flex; justify-content: center; align-items: center; color: var(--text-main); border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 10px rgba(0,0,0,0.02);}
.social-icons a:hover { background: var(--primary-yellow); color: var(--text-main); border-color: var(--primary-yellow); box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3); transform: translateY(-3px);}

.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); font-size: 14px; font-weight: 600;}
