@charset "UTF-8";

:root {
    /* Palette: Deep Royal Blue & Muted Gold */
    --bg-body: #f3f6f9;
    --primary-dark: #0a1f44; /* Dark Navy */
    --primary-royal: #1e3a8a; /* Royal Blue */
    --accent-gold: #c5a059;   /* Luxury Gold */
    --text-main: #1e293b;
    --text-muted: #64748b;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --radius-xl: 40px;
    --radius-lg: 24px;
}

/* --- Global Reset & Typography --- */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Vazirmatn', sans-serif !important;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.9;
}

h1, h2, h3, h4, h5 {
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -0.03em;
}

p {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Hide Scrollbar for Native App Feel --- */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Components --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.btn-luxury {
    background: linear-gradient(45deg, var(--accent-gold), #e8c77e);
    color: var(--primary-dark) !important;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}
.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.6);
    color: var(--primary-dark);
}

.btn-floating-gold {
    background: linear-gradient(135deg, #c5a059, #dfbe7d);
    color: #0a1f44;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-floating-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.5);
    color: #0a1f44;
}

/* --- Navigation --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 8px 0;
}
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--accent-gold);
    transition: 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
.dropdown-menu.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.05);
}
.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary-dark);
    transition: 0.2s;
}
.dropdown-item:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
}

/* --- Hero Slider --- */
.hero-section {
    padding: 20px 0 40px 0;
}
.main-carousel-item {
    height: 550px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}
.main-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.9) 0%, rgba(10, 31, 68, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
}
.hero-content {
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
}
.hero-content p {
    color: #ffffff !important;
    font-weight: 400;
    font-size: 1.15rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
.hero-title span {
    color: var(--accent-gold);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Floating Navigation (Thumbnails) --- */
.floating-nav {
    margin-top: -60px;
    position: relative;
    z-index: 99;
    padding: 0 15px;
}
.nav-track {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 10px;
}
.nav-pill-card {
    background: white;
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 160px;
}
.nav-pill-card i {
    font-size: 1.4rem;
    color: var(--primary-royal);
    transition: 0.3s;
}
.nav-pill-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    white-space: nowrap;
}
.nav-pill-card:hover, .nav-pill-card.active {
    background: var(--primary-dark);
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}
.nav-pill-card:hover i, .nav-pill-card:hover span,
.nav-pill-card.active i, .nav-pill-card.active span {
    color: white;
}
.nav-pill-card.active i {
    color: var(--accent-gold);
}

/* --- Section Styling --- */
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.section-heading { font-size: 2.5rem; color: var(--primary-dark); }

/* --- Advantages (Why Us) --- */
.adv-wrapper { display: flex; gap: 20px; }
.adv-slide { display: flex; gap: 20px; flex: 1; }
.adv-box {
    flex: 1;
    padding: 25px 15px;
    text-align: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
}
.adv-icon { font-size: 1.8rem; color: var(--accent-gold); margin-bottom: 12px; display: inline-block; }
.adv-box h4 { font-size: 1.15rem; margin-bottom: 8px; }

/* --- Banners --- */
.promo-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    z-index: -1;
}

/* --- Services --- */
.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}
.service-row.reverse { flex-direction: row-reverse; }
.service-text {
    flex: 1;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
}
.service-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.service-text p {
    font-size: 1.05rem;
    color: #475569;
}
.service-visual { flex: 1; position: relative; }
.service-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.service-visual::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    border: 2px solid var(--accent-gold); border-radius: var(--radius-lg);
    top: 20px; right: -20px; z-index: -1; opacity: 0.3;
}
.service-row.reverse .service-visual::before { right: auto; left: -20px; }
.check-list li {
    margin-bottom: 15px; padding-right: 30px; position: relative; font-weight: 500;
}
.check-list li::before {
    content: '\f00c'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; right: 0; top: 4px; color: var(--accent-gold);
}

/* --- Pricing Tabs Custom CSS --- */
.pricing-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 40px;
}
.pricing-tabs .nav-link {
    border-radius: 50px; color: var(--primary-dark); font-weight: 600; padding: 10px 25px; border: 1px solid rgba(10, 31, 68, 0.1); margin: 0 5px; transition: all 0.3s ease;
}
.pricing-tabs .nav-link.active { background-color: var(--primary-dark); color: #ffffff !important; border-color: var(--primary-dark); box-shadow: 0 5px 15px rgba(10, 31, 68, 0.2); }
.price-row { border-bottom: 1px dashed rgba(0,0,0,0.1); padding: 12px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.price-row:last-child { border-bottom: none; }

/* --- Blog & Post Cards --- */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.blog-card-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: block;
}

/* --- Footer --- */
footer { background-color: var(--primary-dark); color: white; padding: 80px 0 30px; border-top: 4px solid var(--accent-gold); }
.footer-logo { font-size: 2rem; color: white; font-weight: 900; margin-bottom: 20px; display: block; text-decoration: none; }
.footer-logo span { color: var(--accent-gold); }
.footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-link:hover { color: var(--accent-gold); padding-right: 5px; }


/* =========================================================
   PRODUCTS SECTION STYLES (PREMIUM GLASS LOOK)
   ========================================================= */
.products-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 5px 40px 5px;
    scrollbar-width: none;
}
.products-container::-webkit-scrollbar { display: none; }

.product-card-pro {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.5);
}
.product-badge-pro {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-gold), #dfbe7d);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    z-index: 10;
}
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 12px 12px 0 12px;
}
.product-img-pro {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s ease;
}
.product-card-pro:hover .product-img-pro {
    transform: scale(1.05);
}
.product-body-pro {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}
.product-title-pro {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s;
}
.product-card-pro:hover .product-title-pro {
    color: var(--accent-gold);
}
.product-desc-pro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer-pro {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-pro {
    background: var(--primary-dark);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.btn-pro:hover {
    background: linear-gradient(45deg, var(--accent-gold), #dfbe7d);
    color: var(--primary-dark) !important;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .product-item-wrapper {
        flex: 0 0 calc(25% - 15px);
        scroll-snap-align: start;
    }
}


/* =========================================================
   MOBILE OPTIMIZATION (NATIVE APP FEEL)
   ========================================================= */
@media (max-width: 991.98px) {
    body { font-size: 0.95rem; line-height: 1.8; }
    .section-heading { font-size: 1.7rem; font-weight: 800; }
    .section-padding { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    .section-label { font-size: 0.8rem; letter-spacing: 1px; }

    .navbar .container { display: flex !important; flex-direction: row; justify-content: space-between; align-items: center; position: relative; }
    .navbar-brand.mobile-logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
    .navbar-collapse { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); padding: 20px; border-radius: var(--radius-lg); margin-top: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.5); }
    .nav-link { margin: 5px 0; font-size: 1.05rem; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-link::after { display: none; }
    .dropdown-menu.glass-card { background: transparent; border: none; box-shadow: none; padding-left: 15px; margin-top: 0; }

    .floating-nav { margin-top: -30px; }
    .nav-track, .scroll-snap-mobile, .pricing-tabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-top: 20px !important;
        padding-bottom: 20px;
        margin-right: calc(-0.5 * var(--bs-gutter-x));
        margin-left: calc(-0.5 * var(--bs-gutter-x));
        padding-right: calc(0.5 * var(--bs-gutter-x));
        padding-left: calc(0.5 * var(--bs-gutter-x));
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
        scroll-padding: 0 20px;
    }
    .nav-track::-webkit-scrollbar, .scroll-snap-mobile::-webkit-scrollbar, .pricing-tabs::-webkit-scrollbar { display: none; }
    .nav-track::before, .nav-track::after { content: ''; flex: 0 0 calc(50vw - 90px); }

    .hero-section { padding: 10px 15px 20px 15px; }
    .main-carousel-item { height: 75vh; min-height: 480px; max-height: 650px; border-radius: 30px; }
    .hero-overlay { padding: 30px 20px 90px 20px; background: linear-gradient(to top, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0.4) 60%, transparent 100%); align-items: flex-end; text-align: center; }
    .hero-content { width: 100%; display: flex; flex-direction: column; align-items: center; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; padding: 25px 15px; }
    .hero-title { font-size: 2rem; font-weight: 900; color: #fff; }
    .hero-content p { font-size: 1rem; margin-bottom: 1.5rem !important; opacity: 1; color: #fff !important; }
    .btn-luxury { padding: 12px 30px; font-size: 1rem; width: 85%; max-width: 280px; border-radius: 50px; }

    .nav-pill-card { flex: 0 0 auto; min-width: 150px; scroll-snap-align: center; justify-content: center; padding: 12px; border-radius: 20px; }
    .adv-slide { flex: 0 0 calc(100vw - 30px); display: flex; gap: 15px; scroll-snap-align: center; }
    .adv-box { flex: 1; scroll-snap-align: none; padding: 20px 10px; margin-bottom: 0; }
    .adv-icon { font-size: 1.5rem; margin-bottom: 10px; }
    .adv-box h4 { font-size: 0.95rem; }
    .adv-box p { font-size: 0.75rem; }

    #blog .scroll-snap-mobile { padding-left: 20px; padding-right: 20px; }
    #blog .glass-card { flex: 0 0 calc(100vw - 40px) !important; max-width: calc(100vw - 40px); scroll-snap-align: center; margin-bottom: 0; margin-left: 5px; margin-right: 5px; }

    .pricing-tabs .nav-item { flex: 0 0 auto; scroll-snap-align: center; }

    #services .section-header { margin-bottom: 30px; }
    .service-row, .service-row.reverse { flex-direction: column; gap: 0; margin-bottom: 30px; padding: 15px; background: white; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-left: 15px; margin-right: 15px; width: auto; }
    .service-visual { width: 100%; border-radius: 20px; overflow: hidden; }
    .service-visual::before { display: none; }
    .service-slider { border-radius: 20px; box-shadow: none; height: 220px; }
    .service-slider img { height: 220px; object-fit: cover; }

    .service-text { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 20px 10px 15px; border-radius: 0; margin-top: 0; margin-left: 0; margin-right: 0; box-shadow: none; border: none; text-align: right; }
    .service-text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
    .btn-floating-gold { display: flex; justify-content: center; width: 100%; }

    .tab-content .col-lg-4 { margin-bottom: 25px; }
    .glass-card.p-4.d-flex.flex-column { transform: none !important; box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important; border-radius: 24px; }

    .about-image-wrapper { margin-bottom: 40px; padding: 0 10px; }
    .about-image-wrapper img { border-radius: 30px !important; }

    footer { padding: 50px 0 30px; text-align: center; }
    .footer-logo { justify-content: center; }
    .d-flex.gap-3.mt-4 { justify-content: center; }
    .list-unstyled.text-white-50 { text-align: center; }

    /* =========================================================
       استایل‌های اختصاصی موبایل بخش‌های جدید
       ========================================================= */
    :root {
        --bg-body-mobile: #f8f9fc;
        --primary-dark-m: #0a1f44;
        --primary-royal-m: #1e3a8a;
        --accent-gold-m: #c5a059;
        --accent-gold-light-m: #e0c384;
        --text-main-m: #1e293b;
        --text-muted-m: #64748b;
        --radius-card-m: 24px;
        --radius-btn-m: 16px;
    }

    .mobile-wrapper {
        background-color: var(--bg-body-mobile);
        color: var(--text-main-m);
        overflow-x: hidden;
        -webkit-tap-highlight-color: transparent;
        padding-bottom: 30px;
        font-family: 'Vazirmatn', sans-serif !important;
        padding-left: 3px;
        padding-right: 3px;
    }

    .mobile-wrapper h1, .mobile-wrapper h2, .mobile-wrapper h3, .mobile-wrapper h4 { font-weight: 800; color: var(--primary-dark-m); }
    .mobile-wrapper .section-title { font-size: 1.4rem; margin-bottom: 0.5rem; }
    .mobile-wrapper .section-subtitle { font-size: 0.8rem; color: var(--accent-gold-m); font-weight: 800; letter-spacing: 1px; }
    .mobile-wrapper p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted-m); }

    .mobile-hero {
        margin: 15px 0 25px 0;
        position: relative;
        height: 65vh;
        min-height: 420px;
        border-radius: var(--radius-card-m);
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(10, 31, 68, 0.15);
        border: 1px solid rgba(0,0,0,0.05);
    }
    .mobile-hero .carousel, .mobile-hero .carousel-inner, .mobile-hero .carousel-item { height: 100%; }
    .mobile-hero img { width: 100%; height: 100%; object-fit: cover; }

    .hero-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(10,31,68,0.95) 0%, rgba(10,31,68,0.4) 60%, transparent 100%);
        z-index: 1;
    }
    .hero-content-box {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 30px 25px 40px;
        z-index: 2; text-align: center;
    }
    .hero-content-box h1 { color: #fff; font-size: 2rem; line-height: 1.3; margin-bottom: 12px; }
    .hero-content-box h1 span { color: var(--accent-gold-m); }
    .hero-content-box p { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }

    .btn-app {
        display: flex; align-items: center; justify-content: center;
        width: 90%; margin: 0 auto;
        padding: 14px; border-radius: 50px; font-weight: 800;
        font-size: 1rem; text-decoration: none; transition: transform 0.1s;
    }
    .btn-app:active { transform: scale(0.96); }
    .btn-gold-app {
        background: linear-gradient(135deg, var(--accent-gold-m), var(--accent-gold-light-m));
        color: var(--primary-dark-m) !important; box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    }
    .btn-outline-dark-app { background: transparent; border: 2px solid var(--primary-dark-m); color: var(--primary-dark-m); width: 100%; }

    /* Quick Actions Slider - FIX: Flex Wrap (4 Top, 2 Bottom Center) */
    .quick-actions { margin-top: -20px; position: relative; z-index: 10; }
    .action-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0 15px 20px 15px;
    }
    .action-card {
        flex: 0 0 calc(25% - 9px);
        min-width: 75px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 15px 5px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(10, 31, 68, 0.06);
        text-decoration: none;
        color: var(--primary-dark-m);
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: transform 0.2s ease;
    }
    .action-card:active { transform: scale(0.95); }
    .action-card i { font-size: 1.6rem; color: var(--accent-gold-m); margin-bottom: 8px; display: block; }
    .action-card span { font-size: 0.7rem; font-weight: 800; display: block; line-height: 1.3; }

    /* App Cards */
    .app-card {
        background: #fff; border-radius: var(--radius-card-m); overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 25px; border: 1px solid rgba(0,0,0,0.03);
    }
    .app-card-img { width: 100%; height: 200px; object-fit: cover; }
    .app-card-body { padding: 25px 20px; }

    .app-check-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
    .app-check-list li { position: relative; padding-right: 25px; margin-bottom: 10px; font-size: 0.85rem; color: var(--text-muted-m); font-weight: 600; }
    .app-check-list li::before {
        content: '\f058'; font-family: "Font Awesome 6 Free"; font-weight: 900;
        position: absolute; right: 0; top: 2px; color: var(--accent-gold-m); font-size: 1rem;
    }

    .promo-card {
        border-radius: var(--radius-card-m); padding: 25px 20px; position: relative;
        overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; min-height: 160px;
    }
    .promo-dark { background: linear-gradient(135deg, var(--primary-dark-m), var(--primary-royal-m)); color: white; }
    .promo-gold { background: linear-gradient(135deg, var(--accent-gold-m), var(--accent-gold-light-m)); color: var(--primary-dark-m); }
    .promo-bg-icon { position: absolute; left: -10px; bottom: -20px; font-size: 8rem; opacity: 0.1; transform: rotate(-15deg); }

    .adv-mobile-card {
        background: #fff; padding: 25px 20px; border-radius: 24px; text-align: center;
        height: 100%; box-shadow: 0 8px 25px rgba(0,0,0,0.04); border: 1px solid #f1f1f1;
    }
    .adv-mobile-card i {
        font-size: 2rem; color: var(--accent-gold-m); margin-bottom: 15px;
        background: rgba(197, 160, 89, 0.1); width: 65px; height: 65px; line-height: 65px; border-radius: 50%; display: inline-block;
    }

    .mobile-section { padding: 40px 0; }

    /* محصولات ویژه نسخه موبایل - اصلاح شده با گلس */
    .mobile-products-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 15px 40px 15px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-products-container::-webkit-scrollbar { display: none; }

    .mobile-products-container .product-item-wrapper {
        flex: 0 0 75%; /* بزرگتر شدن کارت برای نمایش بهتر به عنوان اسلایدر */
        scroll-snap-align: center;
    }
    .mobile-products-container .product-img-pro {
        height: 180px; /* تصویر بزرگتر */
    }
}

/* ==========================
Pricing Cards Fix
========================== */
#pricing .row.g-3.g-lg-4{ display:flex; justify-content:center; flex-wrap:wrap; }
#pricing .row.g-3.g-lg-4 > [class*="col-"]{ display:flex; }
#pricing .glass-card{ width:100%; height:100%; display:flex !important; flex-direction:column; }
#pricing .glass-card .btn, #pricing .glass-card a.btn{ margin-top:auto; }

@media (min-width:992px){
    #pricing .row.g-3.g-lg-4 > .col-lg-4:only-child{ flex:0 0 33.333%; }
    #pricing .row.g-3.g-lg-4:has(> .col-lg-4:nth-child(2):last-child){ justify-content:center; }
}
