/* ============================================================ */
/* RESET & BASE */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.gold {
    color: #f1c40f;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-sub {
    color: #f1c40f;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-top: 5px;
    font-family: 'BHoma', 'Playfair Display', serif;
}

.section-header h2 .gold {
    color: #f1c40f;
}

.section-header p {
    font-size: 16px;
    color: #999;
    margin-top: 5px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ============================================================ */
/* PRELOADER */
/* ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0d0d;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.loader-text {
    margin-top: 15px;
    color: #f1c40f;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ============================================================ */
/* PARTICLES BACKGROUND */
/* ============================================================ */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #0d0d0d;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(241, 196, 15, 0.15);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) scale(1) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================================ */
/* TOP BAR */
/* ============================================================ */
.top-bar {
    background: rgba(20, 20, 30, 0.95);
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
    padding: 6px 0;
    font-size: 13px;
    position: relative;
    z-index: 10;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info span {
    margin-left: 18px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.top-bar-info i {
    color: #f1c40f;
    margin-left: 5px;
}

.top-bar-social a {
    display: inline-block;
    margin-right: 10px;
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.top-bar-social a:hover {
    color: #f1c40f;
}

/* ============================================================ */
/* HEADER */
/* ============================================================ */
.site-header {
    background: rgba(13, 13, 13, 0.95);
    padding: 12px 0;
    border-bottom: 2px solid rgba(241, 196, 15, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
}

.logo-gold {
    color: #f1c40f;
}

.logo-sub {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ===== منو ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.menu li a {
    padding: 10px 18px;
    color: #ccc;
    font-weight: 400;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.menu li a:hover,
.menu li a.active {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.08);
}

/* ===== دکمه همبرگر ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #f1c40f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================ */
/* HERO - SLIDER */
/* ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider .slide-item {
    display: none;
    width: 100%;
    min-height: 80vh;
    align-items: center;
    position: relative;
}

.hero-slider .slide-item.active {
    display: flex;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-slider .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 40px 0;
}

.hero-slider .slide-content h2 {
    font-size: 46px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-slider .slide-content h2 .gold {
    color: #f1c40f;
}

.hero-slider .slide-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.hero-slider .slide-content .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f1c40f, #d4a800);
    color: #0d0d0d;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'BHoma', 'Playfair Display', serif;
    border: none;
    cursor: pointer;
}

.hero-slider .slide-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.3);
}

.hero-slider .slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-slider .slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-slider .slide-dots .dot.active {
    background: #f1c40f;
    transform: scale(1.2);
}

.hero-slider .slide-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ===== هیرو پیش‌فرض (بدون اسلاید) ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 650px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: 1px solid rgba(241, 196, 15, 0.1);
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-text h1 .gold {
    color: #f1c40f;
}

.hero-text p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.hero-text p strong {
    color: #f1c40f;
}

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

.btn-primary {
    background: linear-gradient(135deg, #f1c40f, #d4a800);
    color: #0d0d0d;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(241, 196, 15, 0.2);
    font-family: 'BHoma', 'Playfair Display', serif;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.4);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    font-family: 'BHoma', 'Playfair Display', serif;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    display: block;
}

/* ============================================================ */
/* STATS */
/* ============================================================ */
.stats {
    padding: 50px 0;
    background: rgba(20, 20, 30, 0.5);
    border-top: 1px solid rgba(241, 196, 15, 0.05);
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
    color: #f1c40f;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #999;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ============================================================ */
/* FEATURES */
/* ============================================================ */
.features {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 196, 15, 0.2);
    background: rgba(241, 196, 15, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #f1c40f;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.feature-card p {
    font-size: 14px;
    color: #999;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ============================================================ */
/* FEATURED CARS */
/* ============================================================ */
.featured-cars {
    padding: 70px 0;
    background: rgba(20, 20, 30, 0.3);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.car-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 196, 15, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f1c40f, #d4a800);
    color: #0d0d0d;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.car-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.car-emoji-large {
    font-size: 55px;
}

.car-info {
    padding: 18px 20px 22px;
    text-align: center;
}

.car-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.car-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.car-price {
    margin-bottom: 14px;
}

.car-price .price {
    font-size: 19px;
    font-weight: 700;
    color: #f1c40f;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.car-price .currency {
    font-size: 13px;
    color: #888;
    margin-right: 4px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.btn-buy {
    background: transparent;
    border: 1px solid rgba(241, 196, 15, 0.3);
    color: #f1c40f;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
    cursor: pointer;
}

.btn-buy:hover {
    background: #f1c40f;
    color: #0d0d0d;
}

.center-btn {
    text-align: center;
    margin-top: 35px;
}

.btn-show-all {
    background: transparent;
    border: 2px solid rgba(241, 196, 15, 0.2);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'BHoma', 'Playfair Display', serif;
    cursor: pointer;
}

.btn-show-all i {
    margin-right: 10px;
}

.btn-show-all:hover {
    border-color: #f1c40f;
    background: rgba(241, 196, 15, 0.05);
    transform: translateY(-3px);
}

/* ============================================================ */
/* LOAN SECTION */
/* ============================================================ */
.loan-section {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(13, 13, 13, 0.9));
    border-top: 1px solid rgba(241, 196, 15, 0.05);
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
}

.loan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.loan-text .section-sub {
    display: block;
    text-align: right;
}

.loan-text h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
    margin: 5px 0 10px;
}

.loan-text h2 .gold {
    color: #f1c40f;
}

.loan-text p {
    color: #999;
    font-size: 17px;
    margin-bottom: 15px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.loan-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.loan-features li {
    padding: 5px 0;
    color: #ccc;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.loan-features i {
    color: #f1c40f;
    margin-left: 10px;
}

.btn-loan {
    background: linear-gradient(135deg, #f1c40f, #d4a800);
    color: #0d0d0d;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'BHoma', 'Playfair Display', serif;
    border: none;
    cursor: pointer;
}

.btn-loan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.2);
}

.loan-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loan-emoji {
    font-size: 110px;
    animation: loanFloat 4s ease-in-out infinite;
}

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

/* ============================================================ */
/* TESTIMONIALS */
/* ============================================================ */
.testimonials {
    padding: 70px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(241, 196, 15, 0.15);
    transform: translateY(-5px);
}

.quote {
    font-size: 48px;
    color: rgba(241, 196, 15, 0.15);
    font-family: 'Georgia', serif;
    line-height: 0.5;
}

.testimonial-card p {
    color: #bbb;
    font-size: 15px;
    margin: 8px 0 15px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.testimonial-author strong {
    color: #f1c40f;
    display: block;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.testimonial-author span {
    font-size: 13px;
    color: #666;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

/* ============================================================ */
/* CTA SECTION */
/* ============================================================ */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.05), rgba(13, 13, 13, 0.8));
    border-top: 1px solid rgba(241, 196, 15, 0.05);
    border-bottom: 1px solid rgba(241, 196, 15, 0.05);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'BHoma', 'Playfair Display', serif;
}

.cta-content h2 .gold {
    color: #f1c40f;
}

.cta-content p {
    color: #999;
    font-size: 17px;
    margin: 8px 0 25px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================ */
/* FOOTER */
/* ============================================================ */
.site-footer {
    background: #0a0a0a;
    padding: 50px 0 0;
    border-top: 1px solid rgba(241, 196, 15, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-brand h3 {
    font-size: 26px;
    font-family: 'BHoma', 'Playfair Display', serif;
}

.footer-brand h3 .gold {
    color: #f1c40f;
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    margin: 10px 0 18px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #888;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f1c40f;
    color: #0d0d0d;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #f1c40f;
    font-size: 17px;
    margin-bottom: 12px;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.footer-links ul li a:hover {
    color: #f1c40f;
}

.footer-contact p {
    color: #888;
    font-size: 14px;
    padding: 4px 0;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.footer-contact i {
    color: #f1c40f;
    width: 22px;
    margin-left: 8px;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: #555;
    font-family: 'BNazanin', 'Tajawal', 'Tahoma', sans-serif;
}

.footer-bottom strong {
    color: #f1c40f;
}

/* ============================================================ */
/* ===== ریسپانسیو کامل ===== */
/* ============================================================ */

/* ===== تبلت ===== */
@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== موبایل ===== */
@media (max-width: 768px) {
    /* ===== هدر ===== */
    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-wrap: nowrap;
        gap: 0;
        position: relative;
    }
    
    /* لوگو سمت راست */
    .logo {
        text-align: right;
        flex-shrink: 0;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    
    /* همبرگر سمت چپ */
    .main-nav {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .hamburger {
        display: flex !important;
        flex-shrink: 0;
        margin: 0;
        padding: 6px 10px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    /* ===== منو ===== */
    .menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 12px 16px;
        gap: 0;
        border-bottom: 2px solid rgba(241, 196, 15, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .menu.active {
        display: flex !important;
    }
    
    .menu li a {
        padding: 10px 14px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-size: 14px;
        white-space: normal;
    }
    
    .menu li:last-child a {
        border-bottom: none;
    }
    
    /* ===== هیرو - متن اصلی یک خط ===== */
    .hero-slider .slide-content h2,
    .hero-text h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
    
    .hero-slider .slide-content h2 br,
    .hero-text h1 br {
        display: none;
    }
    
    .hero-slider .slide-content p,
    .hero-text p {
        font-size: 14px !important;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .hero-slider .slide-content .btn-primary,
    .hero-text .btn-primary,
    .hero-text .btn-secondary {
        padding: 10px 22px !important;
        font-size: 13px !important;
    }
    
    .hero-slider {
        min-height: 70vh;
    }
    
    .hero-slider .slide-item {
        min-height: 70vh;
    }
    
    .hero-slider .slide-bg {
        background-attachment: scroll;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 4px 14px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    /* ===== توپ بار ===== */
    .top-bar-flex {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .top-bar-info span {
        margin-left: 10px;
        font-size: 12px;
    }
    
    .top-bar-social a {
        font-size: 13px;
        margin-right: 8px;
    }
    
    /* ===== بخش‌ها ===== */
    .section-header {
        margin-bottom: 28px;
    }
    
    .section-header h2 {
        font-size: 22px !important;
    }
    
    .section-header p {
        font-size: 13px !important;
    }
    
    .section-sub {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    /* ===== آمار ===== */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* ===== مزایا ===== */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .feature-card h4 {
        font-size: 15px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    /* ===== محصولات ===== */
    .cars-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    .car-card {
        border-radius: 12px;
    }
    
    .car-image {
        height: 140px;
        font-size: 40px;
    }
    
    .car-emoji-large {
        font-size: 40px;
    }
    
    .car-info {
        padding: 12px 14px 16px;
    }
    
    .car-info h3 {
        font-size: 14px !important;
    }
    
    .car-info p {
        font-size: 11px;
    }
    
    .car-price .price {
        font-size: 16px !important;
    }
    
    .car-price .currency {
        font-size: 11px;
    }
    
    .car-badge {
        font-size: 10px;
        padding: 3px 12px;
        top: 10px;
        right: 10px;
    }
    
    .btn-buy {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .btn-show-all {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* ===== وام ===== */
    .loan-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .loan-text .section-sub {
        text-align: center;
    }
    
    .loan-text h2 {
        font-size: 28px;
    }
    
    .loan-text p {
        font-size: 15px;
    }
    
    .loan-features {
        text-align: right;
        display: inline-block;
    }
    
    .loan-emoji {
        font-size: 70px;
    }
    
    /* ===== نظرات ===== */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    /* ===== CTA ===== */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    /* ===== فوتر ===== */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 22px;
    }
    
    .footer-links ul li a,
    .footer-contact p {
        font-size: 13px;
    }
}

/* ===== گوشی‌های خیلی کوچک ===== */
@media (max-width: 480px) {
    /* ===== هدر ===== */
    .logo h2 {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 7px;
    }
    
    .hamburger {
        padding: 5px 8px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
    
    /* ===== هیرو ===== */
    .hero-slider .slide-content h2,
    .hero-text h1 {
        font-size: 22px !important;
        white-space: nowrap !important;
    }
    
    .hero-slider .slide-content p,
    .hero-text p {
        font-size: 13px !important;
    }
    
    .hero-slider .slide-content .btn-primary,
    .hero-text .btn-primary,
    .hero-text .btn-secondary {
        padding: 8px 18px !important;
        font-size: 12px !important;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 3px 12px;
    }
    
    .hero-slider .slide-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* ===== آمار ===== */
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* ===== مزایا ===== */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 26px;
    }
    
    .feature-card h4 {
        font-size: 13px;
    }
    
    .feature-card p {
        font-size: 11px;
    }
    
    /* ===== محصولات ===== */
    .cars-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .car-image {
        height: 160px;
    }
    
    /* ===== وام ===== */
    .loan-text h2 {
        font-size: 24px;
    }
    
    .loan-emoji {
        font-size: 55px;
    }
    
    /* ===== CTA ===== */
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .btn-show-all {
        padding: 10px 24px;
        font-size: 13px;
    }
}