/* ==========================
   1. VARIABLES
========================== */

/* ==========================
   2. RESET
========================== */

/* ==========================
   3. GLOBAL
========================== */

/* ==========================
   4. TYPOGRAPHY
========================== */

/* ==========================
   5. BUTTONS
========================== */

/* ==========================
   6. NAVBAR
========================== */

/* ==========================
   7. HERO
========================== */

/* ==========================
   8. SECTION TITLE
========================== */

/* ==========================
   9. CARDS
========================== */

/* ==========================
   10. FORMS
========================== */

/* ==========================
   11. FOOTER
========================== */

/* ==========================
   12. ANIMATIONS
========================== */

/* ==========================
   13. RESPONSIVE
========================== */
:root{

    --primary:#D4AF37;
    --primary-light:#F4D76C;

    --bg:#0B0B0B;
    --surface:#151515;
    --surface-2:#1D1D1D;

    --text:#FFFFFF;
    --text-muted:#BEBEBE;

    --border:rgba(255,255,255,.08);

    --shadow:0 15px 45px rgba(0,0,0,.45);

    --radius:18px;

    --transition:.35s ease;

    --container:1200px;

}
*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Vazirmatn",sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.8;

}

img{

    display:block;

    width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

}

input,
textarea{

    font-family:inherit;

}
.container{

    width:min(var(--container),92%);

    margin:auto;

}
::selection{

    background:var(--primary);

    color:#000;

}
::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}
.section{

    padding:120px 0;

}

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}
/*==================================
            NAVBAR
==================================*/

.navbar{

    position:fixed;

    top:0;
    right:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(8,8,8,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.35s ease;

}

.nav-container{

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}

.logo h2{

    font-size:22px;

    font-weight:800;

    letter-spacing:1px;

}

.logo span{

    font-size:12px;

    color:var(--text-muted);

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    font-size:16px;

    font-weight:500;

    color:var(--text);

    transition:var(--transition);

    padding:6px 0;

}

/* خط طلایی زیر لینک */

.nav-menu a::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s ease;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a:hover::after{

    width:100%;

}

.menu-toggle{

    display:none;

    background:none;

    color:white;

    font-size:30px;

}

/* وقتی اسکرول شد */

.navbar.scrolled{

    height:70px;

    background:rgba(0,0,0,.92);

    box-shadow:0 10px 35px rgba(0,0,0,.45);

}
/*==================================
            HERO
==================================*/

#hero{

    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.72),
        rgba(0,0,0,.78)
    ),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transform:scale(1.08);

    animation:heroZoom 16s linear infinite alternate;

}

.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    width:min(900px,92%);

}

.hero-small{

    display:inline-block;

    padding:10px 22px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:40px;

    background:rgba(255,255,255,.05);

    color:var(--primary);

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;

    line-height:1.2;

    font-weight:900;

    margin-bottom:25px;

}

.hero-text{

    font-size:22px;

    color:var(--text-muted);

    max-width:760px;

    margin:auto;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:210px;

}

.trust-badges{

    margin-top:70px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.trust-badges span{

    padding:14px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#ddd;

    transition:.35s;

}

.trust-badges span:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    color:white;

}

/* نور طلایی */

#hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    background:radial-gradient(circle,
    rgba(212,175,55,.18),
    transparent 70%);

    top:-220px;

    right:-220px;

    pointer-events:none;

}

/* انیمیشن تصویر */

@keyframes heroZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1.18);

    }

}
/*==================================
        BUTTONS
==================================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:16px 38px;

    border-radius:999px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

    user-select:none;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;

}

.btn:hover::before{

    left:120%;

}

/* دکمه طلایی */

.btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        #f0cb55
    );

    color:#111;

    box-shadow:0 12px 35px rgba(212,175,55,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(212,175,55,.40);

}

/* دکمه شیشه‌ای */

.btn-outline{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.15);

    color:white;

    backdrop-filter:blur(12px);

}

.btn-outline:hover{

    border-color:var(--primary);

    background:rgba(212,175,55,.08);

    color:var(--primary);

    transform:translateY(-4px);

}



/*==================================
        SECTION TITLE
==================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

    margin-bottom:14px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:48px;

    font-weight:900;

    margin-bottom:18px;

}

.section-title p{

    max-width:650px;

    margin:auto;

    color:var(--text-muted);

    font-size:18px;

    line-height:1.9;

}
/*==================================
            CARD SYSTEM
==================================*/

.cards-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    align-items:stretch;

}

.card{

    position:relative;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    transition:.45s ease;

    backdrop-filter:blur(16px);

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.45);

    box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    0 0 30px rgba(212,175,55,.10);

}

/* نوار طلایی بالا */

.card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

}

/* تصویر */

.card-image{

    position:relative;

    overflow:hidden;

    height:260px;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s ease;

}

.card:hover .card-image img{

    transform:scale(1.08);

}

/* گرادینت روی تصویر */

.card-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.35)
    );

}

/* محتوا */

.card-content{

    padding:30px;

}

.card-content h3{

    font-size:28px;

    margin-bottom:14px;

    font-weight:800;

}

.card-content p{

    color:var(--text-muted);

    line-height:2;

    margin-bottom:28px;

}

/* اطلاعات */

.card-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:24px;

    color:#d6d6d6;

    font-size:15px;

}

/* دکمه */

.card .btn{

    width:100%;

}

/* Badge */

.card-badge{

    position:absolute;

    top:18px;

    right:18px;

    background:var(--primary);

    color:#111;

    font-size:13px;

    font-weight:700;

    padding:8px 16px;

    border-radius:999px;

    z-index:5;

    box-shadow:0 10px 25px rgba(212,175,55,.35);

}
/*==================================
            SERVICES
==================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service{

    position:relative;

    padding:45px 35px;

    border-radius:24px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:.4s ease;

}

.service:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.45);

    box-shadow:
    0 25px 55px rgba(0,0,0,.45),
    0 0 25px rgba(212,175,55,.12);

}

.service::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

    font-size:34px;

    color:var(--primary);

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.25);

    transition:.35s;

}

.service:hover .service-icon{

    transform:rotate(8deg) scale(1.08);

    background:var(--primary);

    color:#111;

}

.service h3{

    font-size:26px;

    margin-bottom:18px;

    font-weight:800;

}

.service p{

    color:var(--text-muted);

    line-height:2;

}
/*==================================
            GALLERY
==================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

}

.gallery-item img{

    width:100%;

    height:340px;

    object-fit:cover;

    transition:.7s ease;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    background:linear-gradient(

        rgba(0,0,0,.05),

        rgba(0,0,0,.82)

    );

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:white;

    font-size:30px;

    margin-bottom:10px;

}

.gallery-overlay p{

    color:#d4d4d4;

}

.gallery-overlay .btn{

    margin-top:24px;

}
/*==================================
        CONTACT SECTION
==================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:stretch;

}

.contact-info{

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px;

}

.contact-info h2{

    font-size:36px;

    margin-bottom:25px;

}

.contact-info p{

    color:var(--text-muted);

    margin-bottom:18px;

    line-height:2;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:24px;

}

.contact-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(212,175,55,.12);

    color:var(--primary);

    font-size:24px;

}

/* فرم */

.contact-form{

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    padding:45px;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    color:#fff;

    transition:.3s;

    font-size:15px;

}

.contact-form textarea{

    resize:vertical;

    min-height:170px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#999;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(212,175,55,.12);

}
/*==================================
            FOOTER
==================================*/

footer{

    position:relative;

    background:#070707;

    border-top:1px solid rgba(255,255,255,.08);

    padding:90px 0 30px;

    overflow:hidden;

}

/* نور پس زمینه */

footer::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(

        rgba(212,175,55,.08),

        transparent 70%

    );

    top:-350px;

    left:-250px;

}

/* گرید */

.footer-grid{

    position:relative;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

}

/* لوگو */

.footer-brand img{

    width:70px;

    margin-bottom:18px;

}

.footer-brand h3{

    font-size:26px;

    margin-bottom:12px;

}

.footer-brand p{

    color:var(--text-muted);

    line-height:2;

}

/* عنوان */

.footer-title{

    font-size:20px;

    margin-bottom:22px;

    position:relative;

}

.footer-title::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-8px;

    width:45px;

    height:3px;

    border-radius:30px;

    background:var(--primary);

}

/* لیست */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:var(--text-muted);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-right:8px;

}

/* شبکه های اجتماعی */

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    font-size:22px;

}

.social-links a:hover{

    background:var(--primary);

    color:#111;

    transform:translateY(-5px);

}

/* پایین فوتر */

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#888;

    font-size:14px;

}
/*==================================
        RESPONSIVE
==================================*/

/* ==========================
   لپ‌تاپ
==========================*/

@media (max-width:1200px){

    .container{

        width:94%;

    }

}

/* ==========================
   تبلت
==========================*/

@media (max-width:992px){

    /* Navbar */

    .nav-menu{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    /* Hero */

    .hero-content h1{

        font-size:56px;

    }

    .hero-text{

        font-size:18px;

    }

    /* Contact */

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    /* Footer */

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================
   موبایل
==========================*/

@media (max-width:768px){

    .section{

        padding:90px 0;

    }

    .hero-content h1{

        font-size:42px;

        line-height:1.35;

    }

    .hero-text{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .section-title h2{

        font-size:34px;

    }

    .cards-grid{

        grid-template-columns:1fr;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-bottom{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

}

/* ==========================
   موبایل کوچک
==========================*/

@media (max-width:480px){

    .logo h2{

        font-size:18px;

    }

    .logo span{

        display:none;

    }

    .hero-content h1{

        font-size:34px;

    }

    .hero-small{

        font-size:12px;

        letter-spacing:2px;

    }

    .btn{

        width:100%;

        padding:15px;

    }

    .card-content{

        padding:22px;

    }

    .service{

        padding:35px 25px;

    }

    .contact-info,

    .contact-form{

        padding:30px 22px;

    }

/*==================================
        INVENTORY PAGE
==================================*/

.cars-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

.car-card{

background:#121212;

border-radius:22px;

overflow:hidden;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.car-card:hover{

transform:translateY(-10px);

border-color:var(--primary);

}

.car-card img{

width:100%;

height:260px;

object-fit:cover;

}

.car-body{

padding:28px;

}

.car-body h3{

margin-bottom:10px;

font-size:28px;

}

.car-body p{

color:#aaa;

margin-bottom:18px;

}

.car-price{

font-size:26px;

font-weight:800;

color:var(--primary);

margin-bottom:24px;

}
/*==================================
        REVEAL ANIMATION
==================================*/

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:.8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}
/*==================================
            LOADER
==================================*/

#loader{

    position:fixed;

    inset:0;

    background:#0b0b0b;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-logo{

    font-size:42px;

    font-weight:900;

    letter-spacing:8px;

    color:var(--primary);

    animation:pulse 1.5s infinite;

}

@keyframes pulse{

    0%{

        opacity:.4;

        transform:scale(.95);

    }

    50%{

        opacity:1;

        transform:scale(1);

    }

    100%{

        opacity:.4;

        transform:scale(.95);

    }

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}
/*==================================
        SCROLL PROGRESS
==================================*/

#progress-bar{

    position:fixed;

    top:0;

    right:0;

    width:0%;

    height:4px;

    background:linear-gradient(
        90deg,
        #d4af37,
        #ffd95e,
        #d4af37
    );

    z-index:9999999;

    box-shadow:

    0 0 18px rgba(212,175,55,.8),

    0 0 35px rgba(212,175,55,.45);

    transition:width .08s linear;

}
/*==================================
        CUSTOM CURSOR
==================================*/

body{

    cursor:none;

}

.cursor{

    position:fixed;

    width:38px;

    height:38px;

    border:2px solid #d4af37;

    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:999999;

    transition:

    width .25s,

    height .25s,

    border .25s,

    transform .08s;

}

.cursor-dot{

    position:fixed;

    width:8px;

    height:8px;

    background:#d4af37;

    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:999999;

}
/*==================================
        MOUSE GLOW
==================================*/

.mouse-glow{

    position:fixed;

    width:420px;

    height:420px;

    border-radius:50%;

    pointer-events:none;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.16) 0%,
        rgba(212,175,55,.08) 35%,
        rgba(212,175,55,0) 75%
    );

    filter:blur(30px);

    transform:translate(-50%,-50%);

    z-index:-1;

    transition:
        left .08s linear,
        top .08s linear;

}
/*==================================
        3D CARDS
==================================*/

.card,
.service,
.testimonial-card{

    transform-style:preserve-3d;

    transition:
        transform .18s ease,
        box-shadow .25s ease;

    will-change:transform;

}

.card:hover,
.service:hover,
.testimonial-card:hover{

    box-shadow:
        0 35px 80px rgba(0,0,0,.35);

}
/*==================================
        INSTAGRAM
==================================*/

.instagram{

    background:#0d0d0d;

}

.instagram-box{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:70px;

    align-items:center;

}

.instagram-tag{

    display:inline-block;

    color:var(--primary);

    letter-spacing:3px;

    margin-bottom:15px;

    font-weight:700;

}

.instagram-content h2{

    font-size:48px;

    margin-bottom:25px;

}

.instagram-content p{

    color:#b8b8b8;

    line-height:2;

    margin-bottom:35px;

    max-width:650px;

}

.instagram-phone{

    display:flex;

    justify-content:center;

}

.instagram-phone img{

    width:320px;

    border-radius:35px;

    box-shadow:

    0 40px 90px rgba(0,0,0,.45);

    transition:.4s;

}

.instagram-phone img:hover{

    transform:translateY(-10px);

}
/*==================================
        INSTAGRAM PREMIUM
==================================*/

.instagram{

    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,#3a2500 0%,transparent 30%),
    radial-gradient(circle at bottom left,#2a1b00 0%,transparent 35%),
    #090909;

}

.instagram::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:rgba(212,175,55,.05);

    border-radius:50%;

    filter:blur(120px);

    top:-250px;
    right:-250px;

}

.instagram-box{

    position:relative;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:90px;

    align-items:center;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    border-radius:35px;

    padding:70px;

    overflow:hidden;

}

.instagram-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        130deg,
        transparent,
        rgba(255,255,255,.03),
        transparent
    );

    pointer-events:none;

}

.instagram-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:#d4af37;

    font-size:14px;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:25px;

    text-transform:uppercase;

}

.instagram-tag::before{

    content:"";

    width:55px;
    height:2px;

    background:#d4af37;

}

.instagram-content h2{

    font-size:58px;

    line-height:1.2;

    margin-bottom:30px;

    color:white;

}

.instagram-content p{

    font-size:18px;

    line-height:2.1;

    color:#bdbdbd;

    max-width:620px;

    margin-bottom:45px;

}

.instagram-content .btn{

    padding:18px 42px;

    border-radius:60px;

    font-size:17px;

    font-weight:700;

    box-shadow:

    0 15px 40px rgba(212,175,55,.25);

}

.instagram-phone{

    display:flex;

    justify-content:center;

    perspective:1200px;

}

.instagram-phone img{

    width:340px;

    border-radius:42px;

    border:8px solid #111;

    box-shadow:

    0 40px 100px rgba(0,0,0,.55);

    transition:.45s;

}

.instagram-phone img:hover{

    transform:

    rotateY(-10deg)

    rotateX(5deg)

    scale(1.04);

}
/*==================================
        HERO FEATURES
==================================*/

.hero-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:70px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 26px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    backdrop-filter:blur(15px);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-6px);

    border-color:#d4af37;

    box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.feature span{

    font-size:22px;

}

.feature p{

    color:#fff;

    font-weight:600;

}
/*==================================
        FEATURED CARS
==================================*/

.featured-cars{

    padding:120px 0;

    background:#080808;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

    margin-top:70px;

}

.featured-card{

    background:#121212;

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    position:relative;

}

.featured-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.featured-card img{

    width:100%;

    height:270px;

    object-fit:cover;

}

.featured-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#d4af37;

    color:#000;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.featured-content{

    padding:30px;

}

.featured-content h3{

    font-size:30px;

    margin-bottom:18px;

}

.car-specs{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.car-specs span{

    background:#1b1b1b;

    padding:8px 16px;

    border-radius:30px;

    color:#ccc;

    font-size:14px;

}

.featured-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    color:#d4af37;

    font-size:28px;

    font-weight:800;

}
/*==================================
        WHY US
==================================*/


.why-us{

background:#0b0b0b;

}


.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:60px;

}



.why-card{

padding:45px 30px;

text-align:center;

background:

linear-gradient(

145deg,

rgba(255,255,255,.07),

rgba(255,255,255,.02)

);

border:1px solid rgba(255,255,255,.1);

border-radius:30px;

backdrop-filter:blur(20px);

transition:.4s;

}



.why-card:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:

0 25px 60px rgba(212,175,55,.15);

}



.why-icon{

font-size:45px;

margin-bottom:25px;

}



.why-card h3{

font-size:25px;

margin-bottom:15px;

}



.why-card p{

color:#aaa;

line-height:2;

}
/*==================================
        PREMIUM NAVBAR
==================================*/

.navbar{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    max-width:1400px;

    background:rgba(10,10,10,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    z-index:9999;

    padding:15px 30px;

    transition:.4s;

}


.navbar:hover{

    border-color:rgba(212,175,55,.4);

}


.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.logo{

    display:flex;

    align-items:center;

    gap:15px;

}


.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}


.logo h2{

    font-size:22px;

    letter-spacing:2px;

    color:#fff;

}


.logo span{

    color:#b8b8b8;

    font-size:12px;

}


.nav-menu{

    display:flex;

    gap:35px;

    list-style:none;

}


.nav-menu a{

    color:#ddd;

    font-weight:500;

    position:relative;

}


.nav-menu a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    right:0;

    width:0;

    height:2px;

    background:#d4af37;

    transition:.3s;

}


.nav-menu a:hover{

    color:#fff;

}


.nav-menu a:hover::after{

    width:100%;

}
/*==================================
        PREMIUM HERO
==================================*/

#hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

}


.hero-bg{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(0,0,0,.85),

        rgba(0,0,0,.35),

        rgba(0,0,0,.85)

    ),

    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    transform:scale(1.05);

}


.hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:1000px;

    padding-top:80px;

}


.hero-small{

    color:#d4af37;

    letter-spacing:8px;

    font-size:16px;

    font-weight:700;

    margin-bottom:30px;

}


.hero-title,
.hero-content h1{

    font-size:clamp(50px,6vw,90px);

    line-height:1.15;

    font-weight:900;

    color:#fff;

    margin-bottom:30px;

    text-shadow:

    0 20px 50px rgba(0,0,0,.5);

}


.hero-text{

    font-size:22px;

    color:#ddd;

    margin-bottom:45px;

}


.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}


.btn{

    padding:17px 42px;

    border-radius:50px;

    transition:.35s;

    font-weight:700;

}


.btn-primary{

    background:#d4af37;

    color:#000;

    box-shadow:

    0 20px 40px rgba(212,175,55,.25);

}


.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:

    0 30px 60px rgba(212,175,55,.4);

}


.btn-outline{

    border:1px solid rgba(255,255,255,.4);

    color:white;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

}


.btn-outline:hover{

    background:white;

    color:black;

}
/*==================================
        PREMIUM SECTION TITLES
==================================*/

.section{

    padding:120px 0;

}


.section-title{

    text-align:center;

    margin-bottom:70px;

}


.section-title span{

    display:inline-flex;

    align-items:center;

    gap:15px;

    color:#d4af37;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}


.section-title span::before,
.section-title span::after{

    content:"";

    width:45px;

    height:1px;

    background:#d4af37;

}



.section-title h2{

    font-size:clamp(35px,4vw,55px);

    color:#fff;

    font-weight:900;

    margin-bottom:20px;

}



.section-title p{

    color:#aaa;

    max-width:650px;

    margin:auto;

    line-height:2;

    font-size:17px;

}


/* فاصله بهتر بین بخش‌ها */

.container{

    width:min(90%,1400px);

    margin:auto;

}
/*==================================
        PREMIUM CAR CARDS
==================================*/

.featured-card{

    background:#111;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    position:relative;

    transition:.45s;

}


.featured-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        transparent 40%,

        rgba(0,0,0,.9)

    );

    z-index:1;

    pointer-events:none;

}



.featured-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.7s;

}



.featured-card:hover img{

    transform:scale(1.08);

}



.featured-content{

    position:relative;

    z-index:2;

    padding:35px;

}



.featured-content h3{

    font-size:28px;

    color:#fff;

    margin-bottom:25px;

}



.car-specs{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:30px;

}



.car-specs span{

    padding:8px 15px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:#ccc;

    font-size:13px;

    border:1px solid rgba(255,255,255,.08);

}



.price{

    font-size:26px;

    font-weight:900;

    color:#d4af37;

}



.featured-badge{

    position:absolute;

    top:25px;

    right:25px;

    z-index:3;

    background:#d4af37;

    color:#000;

    padding:8px 20px;

    border-radius:50px;

    font-weight:800;

    font-size:13px;

}



.featured-footer .btn{

    padding:12px 25px;

    font-size:14px;

}
/*==================================
        PREMIUM SERVICES
==================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.service{

    position:relative;

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.02)

    );

    border:1px solid rgba(255,255,255,.1);

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    overflow:hidden;

    transition:.4s;

    backdrop-filter:blur(20px);

}



.service::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#d4af37;

    opacity:.08;

    border-radius:50%;

    top:-40px;

    right:-40px;

}



.service:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:

    0 30px 70px rgba(212,175,55,.15);

}



.service h3{

    color:#fff;

    font-size:25px;

    margin-top:25px;

}



.service::first-letter{

    font-size:50px;

}



.service:hover h3{

    color:#d4af37;

}



.service{

    font-size:40px;

}
/*==================================
        COLOR SYSTEM
==================================*/

:root{

    --black:#080808;

    --dark:#141414;

    --card:#1b1b1b;

    --gold:#c8a951;

    --white:#f5f3ee;

    --text:#bdbdbd;

    --green:#18352b;

}
.section{

    background:#f5f3ee;

}


.section-title h2{

    color:#111;

}


.section-title p{

    color:#666;

}
.featured-card,
.service,
.why-card{

    background:#171717;

}
.brands{

    background:

    linear-gradient(

        120deg,

        #eeeeeb,

        #ffffff

    );

}
/* MOBILE FIX */

*{
    box-sizing:border-box;
}

html,
body{

    overflow-x:hidden;

}


img{

    max-width:100%;

    height:auto;

}


.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}
.light-section h2,
.light-section h3,
.light-section p{

    color:#111;

}
.dark-section h2,
.dark-section h3,
.dark-section p{

    color:#fff;

}
/*==================================
        MOBILE RESPONSIVE
==================================*/

@media(max-width:768px){


    .navbar{

        width:94%;

        top:10px;

        padding:12px 18px;

    }


    .logo h2{

        font-size:16px;

    }


    .logo span{

        display:none;

    }


    .logo img{

        width:42px;

        height:42px;

    }


    .nav-menu{

        display:none;

    }


    .menu-toggle{

        display:block;

    }


    #hero{

        min-height:100svh;

    }


    .hero-content{

        padding:120px 20px 40px;

    }


    .hero-small{

        font-size:12px;

        letter-spacing:4px;

    }


    .hero-content h1{

        font-size:42px;

        line-height:1.3;

    }


    .hero-text{

        font-size:16px;

        line-height:2;

    }


    .hero-buttons{

        flex-direction:column;

        width:100%;

    }


    .hero-buttons .btn{

        width:100%;

    }



    .stats-grid{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }



    .featured-grid,
    .services-grid,
    .why-grid{

        grid-template-columns:1fr;

    }



    .featured-content h3{

        font-size:23px;

    }


    .section{

        padding:80px 0;

    }


    .section-title h2{

        font-size:32px;

    }


    .instagram-box{

        grid-template-columns:1fr;

        padding:35px 25px;

        gap:40px;

    }


    .instagram-content h2{

        font-size:34px;

    }


    .contact-box{

        grid-template-columns:1fr;

    }


}
/*==================================
        COLOR & READABILITY SYSTEM
==================================*/

:root{

    --bg-dark:#0b0b0b;

    --bg-card:#151515;

    --bg-light:#f3f1eb;

    --text-dark:#161616;

    --text-light:#ffffff;

    --text-gray:#a8a8a8;

    --gold:#c8a951;

}


/* DARK SECTIONS */

.dark,
.bg-dark,
.featured-cars,
.instagram,
footer{

    background:var(--bg-dark);

}


.dark h1,
.dark h2,
.dark h3,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.featured-cars h2,
.featured-cars h3,
.instagram h2,
footer h2,
footer h3{

    color:var(--text-light);

}


.dark p,
.bg-dark p,
.featured-cars p,
.instagram p,
footer p{

    color:var(--text-gray);

}



/* LIGHT SECTIONS */

.about,
.brands,
.light-section{

    background:var(--bg-light);

}


.about h1,
.about h2,
.about h3,
.brands h1,
.brands h2,
.brands h3,
.light-section h1,
.light-section h2,
.light-section h3{

    color:var(--text-dark);

}


.about p,
.brands p,
.light-section p{

    color:#555;

}



/* CARDS */

.card,
.service,
.why-card,
.featured-card{

    background:var(--bg-card);

}


.card h3,
.service h3,
.why-card h3{

    color:#fff;

}


.card p,
.service p,
.why-card p{

    color:#aaa;

}
@media(max-width:768px){

    .navbar{

        width:94%;
        padding:10px 15px;

    }


    .nav-container{

        width:100%;

        display:flex;

        justify-content:space-between;

        gap:10px;

    }


    .logo{

        max-width:75%;

        overflow:hidden;

    }


    .logo img{

        width:38px;

        height:38px;

        flex-shrink:0;

    }


    .logo h2{

        font-size:14px;

        white-space:nowrap;

    }


    .logo div{

        overflow:hidden;

    }


    .menu-toggle{

        flex-shrink:0;

        font-size:22px;

    }

}
/*==================================
        PREMIUM FOOTER
==================================*/


.premium-footer{

    background:

    linear-gradient(
        145deg,
        #080808,
        #151515
    );

    padding:90px 0 30px;

    border-top:1px solid rgba(212,175,55,.2);

}



.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}



.footer-brand h2{

    color:#fff;

    font-size:35px;

    letter-spacing:3px;

    margin-bottom:15px;

}



.footer-brand p{

    color:#c8a951;

    font-weight:700;

}



.footer-brand span{

    color:#999;

    display:block;

    margin-top:20px;

}



.premium-footer h3{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}



.footer-links a,
.footer-social a{

    display:block;

    color:#aaa;

    margin-bottom:15px;

    transition:.3s;

}



.footer-links a:hover,
.footer-social a:hover{

    color:#c8a951;

}



.footer-contact p{

    color:#aaa;

}



.footer-social strong{

    display:block;

    color:#c8a951;

    margin-top:15px;

}



.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}



.footer-bottom p{

    color:#777;

}
@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

        gap:35px;

    }


    .footer-brand h2{

        font-size:25px;

    }

}