﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #ffffff 30%, #ffd48a 100%);
    color: #151515;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --gold: #d4af37;
    --gold-dark: #b8962e;
    --gold-light: #f5e7b0;
    --black: #141414;
    --white: #ffffff;
    --gray: #f2f2ef;
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.04), 0 10px 24px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 40px 80px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.04);
    --radius: 32px;
    --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--gold);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 50px 0 30px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

    .section-title:after {
        content: '';
        position: absolute;
        right: 0;
        bottom: -12px;
        width: 70%;
        height: 5px;
        background: linear-gradient(90deg, var(--gold), #f7e05e);
        border-radius: 10px;
    }

.btn {
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    background: var(--black);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #1a1a1a;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

    .btn-gold:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--black);
}

    .btn-outline:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
    }

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(145deg, #1a1a1a 30%, #d4af37 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

    .logo h1 i {
        -webkit-text-fill-color: initial;
        color: var(--gold);
        margin-left: 6px;
    }

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

    .nav-menu a {
        text-decoration: none;
        color: var(--black);
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
        padding-bottom: 4px;
    }

        .nav-menu a:after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 0;
            height: 2.5px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--black);
    transition: var(--transition);
}

    .hamburger:hover {
        color: var(--gold);
    }

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        padding: 24px 20px;
        border-radius: 30px;
        box-shadow: var(--shadow);
        margin-top: 16px;
        gap: 18px;
        border: 1px solid #eee;
    }

        .nav-menu.open {
            display: flex;
        }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hamburger {
        display: block;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin: 20px 0 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    background: #111;
}

.hero-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

    .hero-slide img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
    }

    .hero-slide .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    }

    .hero-slide .slide-text {
        position: absolute;
        bottom: 50px;
        right: 50px;
        color: white;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        padding: 18px 36px;
        border-radius: 80px;
        font-size: 1.8rem;
        font-weight: 800;
        border-right: 6px solid var(--gold);
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .hero-slide .slide-text i {
            color: var(--gold);
            font-size: 2rem;
        }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
}

    .slider-dots span {
        width: 14px;
        height: 14px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
    }

        .slider-dots span.active {
            background: var(--gold);
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 28px;
    margin: 20px 0 40px;
}

.service-card {
    background: white;
    padding: 32px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.06);
    transition: var(--transition);
    cursor: default;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

    .service-card i {
        font-size: 3.2rem;
        color: var(--gold);
        margin-bottom: 16px;
        display: inline-block;
        transition: var(--transition);
    }

    .service-card:hover i {
        transform: scale(1.1) rotate(-4deg);
    }

    .service-card h4 {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #777;
        margin-top: 4px;
    }

/* ===== ABOUT MOLECULAR ===== */
.about-molecular {
    background: var(--black);
    color: white;
    padding: 80px 0;
    border-radius: 60px 60px 30px 30px;
    margin: 30px 0 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.molecular-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.molecule {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    animation: floatMolecule 20s infinite alternate ease-in-out;
}

    .molecule:nth-child(1) {
        width: 350px;
        height: 350px;
        top: -140px;
        left: -120px;
    }

    .molecule:nth-child(2) {
        width: 500px;
        height: 500px;
        bottom: -200px;
        right: -140px;
        animation-duration: 26s;
    }

    .molecule:nth-child(3) {
        width: 220px;
        height: 220px;
        top: 15%;
        right: 10%;
        background: rgba(212, 175, 55, 0.03);
        animation-duration: 18s;
    }

    .molecule:nth-child(4) {
        width: 280px;
        height: 280px;
        bottom: 10%;
        left: 5%;
        background: rgba(212, 175, 55, 0.02);
        animation-duration: 24s;
    }

@keyframes floatMolecule {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(40px, -50px) scale(1.2) rotate(15deg);
    }
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

    .about-content h3 {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--gold);
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

        .about-content h3 i {
            margin-left: 10px;
        }

    .about-content p {
        font-size: 1.2rem;
        opacity: 0.85;
        line-height: 1.9;
    }

.about-badge {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    padding: 14px 36px;
    border-radius: 80px;
    display: inline-block;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 1.05rem;
}

    .about-badge i {
        color: var(--gold);
        margin-left: 8px;
    }

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin: 20px 0 40px;
}

.stat-item {
    background: white;
    padding: 30px 12px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f0ede5;
    transition: var(--transition);
}

    .stat-item:hover {
        transform: scale(1.04);
        border-color: var(--gold);
        box-shadow: var(--shadow-hover);
    }

    .stat-item .number {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--gold);
        line-height: 1.2;
    }

    .stat-item .label {
        font-weight: 500;
        color: #555;
        margin-top: 6px;
        font-size: 0.95rem;
    }

        .stat-item .label i {
            color: var(--gold);
            margin-left: 4px;
        }

/* ===== CAR SLIDER (NEW - PERFECT) ===== */
.car-slider-wrapper {
    position: relative;
    padding: 10px 0 30px;
}

.car-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 8px 4px 12px;
    border-radius: var(--radius);
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #eee;
}

    .car-slider-container::-webkit-scrollbar {
        height: 6px;
    }

    .car-slider-container::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 10px;
    }

    .car-slider-container::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }

.car-slider-track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding: 0 4px;
}

.car-slide {
    width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 16px 24px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .car-slide:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

    .car-slide .car-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 22px;
        background: #ddd;
        transition: var(--transition);
    }

    .car-slide:hover .car-image {
        transform: scale(1.02);
    }

    .car-slide .car-badge {
        position: absolute;
        top: 24px;
        left: 20px;
        background: var(--gold);
        color: #1a1a1a;
        padding: 4px 16px;
        border-radius: 40px;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .car-slide h5 {
        font-weight: 800;
        margin: 14px 0 4px;
        font-size: 1.3rem;
    }

    .car-slide .price {
        color: var(--gold);
        font-weight: 700;
        font-size: 1.2rem;
    }

    .car-slide .car-specs {
        display: flex;
        gap: 12px;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #777;
    }

        .car-slide .car-specs i {
            color: var(--gold);
            margin-left: 4px;
        }

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

    .slider-nav button {
        background: white;
        border: 2px solid #e8e5dd;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
        cursor: pointer;
        transition: var(--transition);
        color: var(--black);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .slider-nav button:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #fff;
            transform: scale(1.06);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        }

/* ===== TESTIMONIALS GRID ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 20px 0 40px;
}

.testimonial-card {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-right: 6px solid var(--gold);
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

    .testimonial-card i {
        color: var(--gold);
        font-size: 2.2rem;
        margin-bottom: 12px;
        opacity: 0.5;
    }

    .testimonial-card p {
        font-style: italic;
        color: #2a2a2a;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-card .name {
        font-weight: 700;
        margin-top: 14px;
        color: var(--black);
        font-size: 1.05rem;
    }

    .testimonial-card .role {
        font-size: 0.8rem;
        color: #999;
    }

/* ===== BRANDS ===== */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 70px;
    margin: 20px 0 40px;
}

    .brands-grid img {
        height: 48px;
        filter: grayscale(1) opacity(0.3);
        transition: var(--transition);
        cursor: default;
    }

        .brands-grid img:hover {
            filter: grayscale(0) opacity(1);
            transform: scale(1.12);
        }

/* ===== CONTACT + MAP ===== */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0 40px;
}

.contact-box,
.map-box {
    background: white;
    padding: 34px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f0ede5;
    transition: var(--transition);
}

    .contact-box:hover,
    .map-box:hover {
        box-shadow: var(--shadow-hover);
    }

    .contact-box h4,
    .map-box h4 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-box i {
        color: var(--gold);
        width: 28px;
        font-size: 1.1rem;
    }

    .contact-box p {
        margin: 10px 0;
    }

.address-detail {
    background: #f8f6f0;
    padding: 14px 28px;
    border-radius: 60px;
    display: inline-block;
    margin-top: 16px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-box iframe {
    width: 100%;
    height: 250px;
    border-radius: 22px;
    border: 0;
    filter: grayscale(0.1) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: #ccc;
    padding: 50px 0 20px;
    border-radius: 60px 60px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin: 4px 0;
}

    .footer a:hover {
        color: var(--gold);
        transform: translateX(-4px);
    }

.footer .social-icons {
    display: flex;
    gap: 22px;
    font-size: 2rem;
    margin: 16px 0;
}

    .footer .social-icons a {
        color: #aaa;
        transition: var(--transition);
    }

        .footer .social-icons a:hover {
            color: var(--gold);
            transform: scale(1.15) translateY(-4px);
        }

.footer .credit {
    border-top: 1px solid #2a2a2a;
    padding-top: 28px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.95rem;
    color: #888;
}

    .footer .credit a {
        color: var(--gold);
        font-weight: 600;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-slide img {
        height: 360px;
    }

    .hero-slide .slide-text {
        font-size: 1.3rem;
        bottom: 30px;
        right: 30px;
        padding: 12px 24px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .car-slide {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .car-slide {
        width: 200px;
    }

    .hero-slide img {
        height: 280px;
    }

    .hero-slide .slide-text {
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
    }

        .hero-slide .slide-text i {
            font-size: 1.2rem;
        }

    .about-content h3 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .slider-nav button {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .car-slide {
        width: 170px;
    }

        .car-slide .car-image {
            height: 130px;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

:root {
    --gold: #C9A84C;
    --gold-dark: #A68A3C;
    --gold-light: #E8D48B;
    --gold-pale: #F8F3E6;
    --black: #0D0D0D;
    --black-soft: #1A1A1A;
    --white: #FFFFFF;
    --white-warm: #FDFBF7;
    --gray-light: #F5F5F5;
    --gray-mid: #E0E0E0;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}



/* پس‌زمینه تزئینی */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 80% 60%, rgba(201, 168, 76, 0.03) 0%, transparent 50%), radial-gradient(ellipse at 50% 90%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    opacity: 0.8;
}

/* ============================================= */
/* کانتینر ایزوله برای اسلایدر با جهت LTR */
/* ============================================= */
.slider-ltr-container {
    direction: ltr; /* فقط این بخش ltr می‌شود */
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 20px 10px;
    margin: 0 auto;
}

/* هدر اسلایدر (rtl برای خوانایی فارسی) */
.slider-header {
    text-align: center;
    margin-bottom: 45px;
    direction: rtl; /* بازگشت به rtl برای متن فارسی */
}

    .slider-header .subtitle {
        font-family: 'Vazirmatn', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--gold-dark);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

.subtitle-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    display: inline-block;
}

.slider-header .title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

    .slider-header .title .gold-dot {
        color: var(--gold);
        font-size: 1.1em;
    }

.title-underline {
    display: block;
    margin: 12px auto 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* === اسلایدر اصلی (ltr) === */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 15px 5px;
    direction: ltr; /* تضمین ltr بودن */
}

.slider-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
    cursor: grab;
    direction: ltr; /* جهت flex در ltr */
}

    .slider-track:active {
        cursor: grabbing;
    }

    .slider-track.dragging {
        transition: none;
    }

/* === کارت === */
.slider-card {
    flex-shrink: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--transition-bounce);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    direction: rtl; /* محتوای کارت rtl برای متن فارسی */
    text-align: right;
}

    .slider-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(201, 168, 76, 0.25);
        border-color: rgba(201, 168, 76, 0.3);
    }

/* تصویر */
.card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f4f4f4;
    direction: ltr; /* تصویر و نشان ltr باشند */
}

    .card-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        display: block;
    }

.slider-card:hover .card-image-wrap img {
    transform: scale(1.08);
}

.card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.01) 40%, rgba(201,168,76,0.08) 100%);
    pointer-events: none;
    z-index: 2;
}

/* نشان ویژه */
.card-badge {
    position: absolute;
    top: 16px;
    left: 16px; /* تغییر به left برای ltr */
    z-index: 3;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-light);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    direction: rtl; /* متن نشان rtl */
}

.badge-icon {
    font-size: 0.8rem;
}

/* بدنه کارت */
.card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
    background: var(--white);
    text-align: right;
}

    .card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20px;
        right: 20px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0.5;
    }

.card-brand {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}

.card-model {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.card-detail {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.75rem;
    color: #777;
    font-weight: 400;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-icon {
    font-size: 0.9rem;
    color: var(--gold);
}

.card-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    font-weight: 800;
    color: var(--gold-dark);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px dashed rgba(0,0,0,0.08);
    padding-top: 14px;
}

    .card-price .currency {
        font-size: 0.7em;
        font-weight: 600;
        color: var(--gold);
        align-self: flex-start;
        margin-top: 2px;
    }

/* === دکمه‌های ناوبری === */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: var(--black);
    opacity: 0.9;
    outline: none;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

    .slider-arrow:hover {
        background: var(--black);
        border-color: var(--black);
        color: var(--gold-light);
        box-shadow: 0 12px 28px rgba(201,168,76,0.3);
        opacity: 1;
        transform: translateY(-50%) scale(1.07);
    }

    .slider-arrow:active {
        transform: translateY(-50%) scale(0.93);
    }

.slider-arrow--prev {
    left: 10px;
}

.slider-arrow--next {
    right: 10px;
}

.slider-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    background: #f5f5f5;
    color: #aaa;
    border-color: #eee;
}

/* === نقطه‌ها === */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
    direction: ltr;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5d5d5;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
    outline: none;
}

    .slider-dot:hover {
        background: #b0b0b0;
        transform: scale(1.3);
    }

    .slider-dot.active {
        background: var(--gold);
        width: 36px;
        border-radius: 20px;
        box-shadow: 0 2px 14px rgba(201, 168, 76, 0.6);
    }

/* === ریسپانسیو === */
@media (max-width: 1023px) {
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }

    .card-body {
        padding: 16px 18px 18px;
    }

        .card-body::before {
            left: 18px;
            right: 18px;
        }

    .slider-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 639px) {
    .slider-ltr-container {
        padding: 10px 2px;
    }

    .slider-container {
        padding: 10px 0;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .slider-arrow--prev {
        left: 2px;
    }

    .slider-arrow--next {
        right: 2px;
    }

    .slider-header {
        margin-bottom: 20px;
    }

        .slider-header .subtitle {
            font-size: 0.7rem;
            letter-spacing: 3px;
            gap: 8px;
        }

    .subtitle-line {
        width: 25px;
    }

    .slider-header .title {
        font-size: 1.6rem;
    }

    .title-underline {
        width: 50px;
        height: 2px;
        margin-top: 8px;
    }

    .card-body {
        padding: 14px 16px 16px;
    }

        .card-body::before {
            left: 16px;
            right: 16px;
        }

    .card-badge {
        top: 10px;
        left: 10px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 22px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

        .slider-dot.active {
            width: 28px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .slider-track {
        transition: transform 0.2s ease;
    }

    .slider-card {
        transition: none;
    }

        .slider-card:hover {
            transform: none;
        }

    .card-image-wrap img {
        transition: none;
    }
}



/* ===== Advertisement Section ===== */

.ubfpz {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.ubfpz-item {
    overflow: hidden;
    border-radius: 18px;
}

    .ubfpz-item img {
        width: 100%;
        display: block;
        border-radius: 18px;
        transition: 0.4s ease;
    }

    .ubfpz-item:hover img {
        transform: scale(1.03);
    }

/* موبایل */
@media (max-width:768px) {
    .ubfpz {
        grid-template-columns: 1fr;
    }
}






/* ===== باکس خفن ===== */
.golden-card {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
    background: linear-gradient(165deg, #1e1a14 0%, #2c241b 100%);
    border-radius: 48px;
    padding: 2.8rem 2rem 2.2rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

    /* هاله طلایی دور کارت */
    .golden-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 50px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(248, 219, 125, 0.05), rgba(255, 255, 255, 0.3));
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

/* هدر با استایل ویژه */
.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

    .card-header::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #d4af37, #f5d78c);
        border-radius: 4px;
    }

.header-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #2f271c, #1f1a12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,215,0,0.1);
}

    .header-icon i {
        font-size: 1.5rem;
        color: #d4af37;
        filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.2));
    }

.header-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f5d78c, #d4af37, #b8962e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.header-badge {
    margin-right: auto;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

    .header-badge i {
        margin-left: 4px;
        font-size: 0.5rem;
        color: #f5d78c;
    }

/* متن اصلی با شکوه */
.address-text {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.7;
    color: #e8ddcc;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
}

    .address-text .highlight {
        font-weight: 700;
        background: linear-gradient(135deg, #f5d78c, #d4af37, #f5d78c);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s ease-in-out infinite;
        display: inline-block;
    }

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.address-text .gold-pin {
    display: inline-block;
    margin: 0 0.2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

    .address-text .gold-pin i {
        color: #d4af37;
        font-size: 1.6rem;
        vertical-align: middle;
    }

.address-text .sub-location {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: #b8a68b;
    margin-top: 0.3rem;
    padding-right: 0.3rem;
    border-right: 2px solid rgba(212, 175, 55, 0.2);
    padding-right: 0.8rem;
}

    .address-text .sub-location i {
        color: #d4af37;
        margin-left: 6px;
        font-size: 0.8rem;
        opacity: 0.8;
    }

/* ===== دکمه نقشه ===== */
.map-button-wrapper {
    margin: 1.8rem 0 1.2rem;
    position: relative;
}

.map-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.map-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, #2a2218, #1d1710);
    border-radius: 60px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 215, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    /* افکت نور طلایی روی دکمه */
    .map-button::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05), transparent 60%);
        pointer-events: none;
        transition: 0.5s;
    }

    .map-button:hover {
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.08), inset 0 0 30px rgba(212, 175, 55, 0.03);
        transform: translateY(-2px) scale(1.01);
    }

    .map-button:active {
        transform: scale(0.97) translateY(0px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    }

    .map-button .label-group {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .map-button .label-group span {
            color: #d4c5b0;
            font-weight: 400;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

            .map-button .label-group span i {
                color: #d4af37;
                margin-left: 8px;
                font-size: 0.9rem;
            }

        .map-button .label-group .main-label {
            font-weight: 600;
            background: linear-gradient(135deg, #f5d78c, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

/* آیکن گوگل مپ با استایل اپلیکیشن موبایل */
.google-maps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2), inset 0 2px 0 rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(145deg, #fcfcfc, #f0ede8);
}

    .google-maps-icon i.fa-google {
        font-size: 2.4rem;
        color: #1a73e8;
        filter: drop-shadow(0 2px 6px rgba(26, 115, 232, 0.2));
    }

    .google-maps-icon .pin-overlay {
        position: absolute;
        bottom: -2px;
        right: -4px;
        background: #ffffff;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

        .google-maps-icon .pin-overlay i {
            font-size: 0.9rem;
            color: #fbbc05;
            filter: drop-shadow(0 0 4px rgba(251, 188, 5, 0.3));
        }

.map-button .badge-maps {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    transition: 0.3s;
}

.map-button:hover .badge-maps {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: #f5d78c;
}

.badge-maps i {
    margin-left: 6px;
    font-size: 0.6rem;
}

/* فوتر با اطلاعات */
.footer-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    gap: 0.8rem;
}

.footer-hint {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 0.3rem 1.2rem 0.3rem 0.8rem;
    border-radius: 40px;
    color: #b8a68b;
    font-size: 0.75rem;
}

    .footer-hint i {
        color: #d4af37;
        font-size: 0.8rem;
    }

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8a68b;
    font-size: 0.75rem;
}

    .footer-location i {
        color: #d4af37;
        font-size: 0.7rem;
    }

    .footer-location strong {
        color: #d4af37;
        font-weight: 500;
    }

/* ===== خطوط تزئینی ===== */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin: 1rem 0;
}

/* ریسپانسیو */
@media (max-width: 520px) {
    .golden-card {
        padding: 2rem 1.2rem 1.8rem;
        border-radius: 36px;
    }

    .address-text {
        font-size: 1.4rem;
    }

        .address-text .sub-location {
            font-size: 0.9rem;
        }

    .map-button {
        padding: 0.3rem 0.3rem 0.3rem 1rem;
        flex-wrap: nowrap;
    }

    .google-maps-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

        .google-maps-icon i.fa-google {
            font-size: 2rem;
        }

    .map-button .label-group span {
        font-size: 0.85rem;
    }

    .badge-maps {
        padding: 0.2rem 0.8rem;
        font-size: 0.6rem;
    }

    .footer-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}

@media (max-width: 400px) {
    .map-button .label-group span {
        font-size: 0.75rem;
    }

    .google-maps-icon {
        width: 44px;
        height: 44px;
    }

        .google-maps-icon i.fa-google {
            font-size: 1.6rem;
        }

        .google-maps-icon .pin-overlay {
            width: 18px;
            height: 18px;
        }

            .google-maps-icon .pin-overlay i {
                font-size: 0.7rem;
            }
}