/* 💫 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 💎 Body */
body {
    font-family: 'Montserrat', 'Vazirmatn', sans-serif;
    background: radial-gradient(circle at center, #181818 0%, #0a0a0a 100%);
    color: #fff;
    min-height: 100vh; /* فقط این تغییر برای حل مشکل چسبیدن سکشن‌ها */
    display: block; /* به جای flex که باعث می‌شد سکشن‌ها روی هم بیفتن */
    overflow-x: hidden;
}

/* 💎 Header */
header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1150px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: #fff;
}

.logo img {
    height: 38px;
    width: auto;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #ddd;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

.auth-btns a {
    display: flex;
    gap: 10px;
    color: #fff;
    text-decoration: none !important;
}

.auth-btns button {
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 7px 18px;
    border-radius: 22px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.auth-btns button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #000;
}

/* === دکمه‌های هدر (ورود و ثبت نام) === */
header .login-btn,
header .signup-btn,
header button {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

/* برای زیبایی بیشتر */
header .login-btn:hover,
header .signup-btn:hover {
    background: #D4AF37;
    color: #000;
    transition: 0.3s ease;
}

/* 🍔 Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Drawer Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(8px);
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 30;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-menu button {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 30px;
    padding: 10px 25px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

/* 🟦 Hero Section */
.hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1100px;
    padding: 60px 70px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    animation: fadeIn 1.2s ease forwards;
    margin: 90px auto 60px auto; /* فاصله از هدر بالا و پایین */
}

/* 🌌 Hero Section Wrapper */
.hero-section {
    min-height: 100vh; /* کل صفحه رو بگیره */
    display: flex;
    justify-content: center; /* وسط افقی */
    align-items: center; /* وسط عمودی */
    padding-top: 100px; /* برای اینکه زیر هدر پنهون نشه */
    box-sizing: border-box;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 330px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-content {
    flex: 1.2;
    text-align: right;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.slogan {
    color: #f1f1f1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 35px;
    direction: rtl;
}

.hero-content button,
.hero-content .btn {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

.hero-buttons button {
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
button.btn-primary,
button.btn-secondary {
    border: none;
    padding: 0; /* مهم */
}

.btn-primary a,
.btn-secondary a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 20px; /* پدینگ داخل لینک قرار می‌گیرد */
    border-radius: 50px; /* یا همون بیضی خودت */
    text-decoration: none !important;
    color: inherit !important;
}

/* ✨ Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Responsive */
@media (max-width: 950px) {
    .hero-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav, .auth-btns {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-card {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 20px;
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* ✨ ویژگی‌ها (Features Section) */
.features {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto 120px auto; /* فاصله پایین اضافه شد */
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.text-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.text-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.5px;
}

.text-side p.main-desc {
    color: #b3b3b3;
    line-height: 1.9;
    font-size: 1rem;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.feature {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    border: 1px solid #D4AF37;
}

.feature .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.feature .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature:hover .icon img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.feature p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.6;
}

.image-side img {
    width: 100%;
    margin-top: 130px;
    border-radius: 18px;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.image-side img:hover {
    transform: scale(1.03);
    filter: brightness(1);
}

@media (max-width: 900px) {
    .features {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
        padding: 20px;
        max-width: 100%;
    }

    .text-side {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .text-side h2 {
        font-size: 1.5rem;
    }

    .text-side p.main-desc {
        font-size: 0.95rem;
    }

    .feature-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .feature {
        flex: 0 1 calc(50% - 10px);
        padding: 12px;
        border-radius: 14px;
    }
}

@media (max-width: 500px) {
    .feature {
        flex: 0 1 100%;
    }

    .feature-list {
        gap: 12px;
    }

    .text-side h2 {
        font-size: 1.3rem;
    }

    .text-side p.main-desc {
        font-size: 0.9rem;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Vazirmatn", sans-serif;
}

/* پلن ها */
:root {
    --purple: #a855f7;
    --cyan: #22d3ee;
    --deep-blue: #2563eb;
    --gray-light: #94a3b8;
}

/* ===== بخش پلن‌ها ===== */
.plans {
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-content {
    text-align: center;
    margin-bottom: 50px;
}

.plans-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.rem;
    color: cyan;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.plans-content p {
    font-size: 1rem;
    color: #bcdcff;
    margin-bottom: 40px;
}

/* ===== شبکه کارت‌ها ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ۴ ستون مساوی */
    gap: 30px;
    justify-items: stretch; /* پهن شدن کارت‌ها تا پر کردن ستون */
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .plan {
        flex: 0 0 280px; /* عرض ثابت برای موبایل */
        scroll-snap-align: start;
    }
}

/* ===== کارت‌ها ===== */
.plan {
    display: flex;
    flex-direction: column; /* مهم برای قرارگیری دکمه پایین */
    justify-content: space-between; /* محتوا از بالا تا دکمه پایین کشیده میشه */
    padding: 30px 20px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    min-height: 420px; /* ارتفاع مناسب دسکتاپ */
}

/* Hover کارت‌ها */
.plan:hover {
    transform: translateY(-8px) scale(1.03);
}

/* ===== آیکون‌ها ===== */
.plan .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mah .icon {
    color: var(--gray-light);
}

.baran .icon {
    color: var(--purple);
}

.rad .icon {
    color: var(--cyan);
}

.toofan .icon {
    color: var(--deep-blue);
}

/* ===== عنوان کارت ===== */
.plan h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    color: cyan;
}

/* ===== قیمت ===== */
/*.price {*/
/*    font-size: 1.6rem;*/
/*    font-weight: 700;*/
/*    margin: 5px 0 10px;*/
/*    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*}*/

/*.price-sale {*/
/*    text-align: center;*/
/*    margin-bottom: 10px;*/
/*}*/

/* لیبل فروش ویژه */
.sale-badge {
    background: linear-gradient(45deg, #ff4e4e, #ff0000);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 8px;
}

/* قیمت قبلی */
.price-sale .old-price {
    text-decoration: line-through;
    color: #ffcccc; /* رنگ ملایم، مطابق سبک سایتت */
    font-size: 15px;
    margin-top: 5px;
    display: block;
}

/* قیمت جدید */
.price-sale .new-price {
    color: #ffd42a;  /* رنگ زرد روشن مثل قالب */
    font-size: 22px;
    font-weight: 900;
    margin-top: 4px;
    display: block;
}

/* ===== توضیحات ===== */
.desc {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ===== لیست امکانات ===== */
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: right;
}

ul li {
    position: relative;
    color: #cbd5e1;
    margin: 8px 0;
    font-size: 0.9rem;
}

ul li::before {
    content: "✔";
    color: #38bdf8;
    margin-left: 6px;
    font-size: 0.8rem;
}

/* ===== دکمه ثبت سفارش ===== */
.btn {
    margin-top: auto; /* همیشه پایین کارت */
    display: inline-block;
    width: 100%;
    max-width: 200px;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    color: #fff;
    align-self: center;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
}

/* ===== افکت hover کارت‌ها ===== */
.mah:hover {
    box-shadow: 0 0 30px rgba(148, 163, 184, 0.3);
}

.baran:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.rad:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.toofan:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
}

:root {
    --team-accent: #0d141c;
    --team-card-bg: #052659;
    --team-text-light: #ffffff;
    --team-circle-bg: rgba(255, 255, 255, 0.08);
    --team-neon: #00c8ff;
}

/* ===== دکمه‌های فیلتر ===== */
.plans-filter-btns {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #bcdcff;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    color: #fff;
    font-weight: bold;
    border-color: transparent;
}

/* ===== نمایش فقط در موبایل ===== */
@media (max-width: 768px) {
    .plans-filter-btns {
        display: flex;
    }

    /* اسکرول افقی برای باکس پلن‌ها */
    .plans-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 10px;
    }

    .plan {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }
}

/* تیم */
:root {
    --accent: #0b0b0c;
    --card-bg: rgba(255, 255, 255, 0.06);
    --text-light: #ffffff;
    --circle-bg: rgba(255, 255, 255, 0.08);
    --neon: #00c8ff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--accent);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ✨ سکشن تیم */
#team-section {
    min-height: 50px 0; /* پر کردن ارتفاع کامل صفحه */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--accent);
    color: var(--text-light);
    scroll-margin-top: 80px;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 100%;
    padding: 60px 0;
    /* overflow: hidden; */
    position: relative;
}

.heading {
    text-align: center;
    margin-bottom: 100px;
}

.heading h1 {
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.heading .rule {
    width: 60px;
    height: 3px;
    background: var(--text-light);
    margin: 10px auto;
    border-radius: 2px;
}

/* ====== کارت ====== */
/* ====== کارت زیباتر ====== */
.card {
    flex: 0 0 200px;
    background: var(--card-bg);
    border-radius: 25px;
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* قاب تصویر نرم و مدرن */
.avatar-wrap {
    width: 130px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,0,0,0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .avatar {
    transform: scale(1.05);
}

/* نام و نقش */
.name {
    margin-top: 14px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.role {
    font-weight: 300;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
}

/* ====== دسکتاپ ====== */
@media (min-width: 769px) {
    .team-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 24px;
        padding: 0 16px;
    }

    .mobile-wrap {
        display: none;
    }
}
/* ====== موبایل ====== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 0 8px;
    }

    .mobile-row {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        width: 180%;
        max-width: 380px;
    }

    .card {
        flex: 0 0 110px;
        max-width: 110px;
        padding: 10px;
        border-radius: 70px 70px 18px 18px;
    }

    .avatar-wrap {
        width: 70px;
        height: 70px;
        border-width: 2px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 11px;
        margin-top: 6px;
    }

    .role {
        font-size: 10px;
        margin-top: 4px;
    }
}/* ====== موبایل ====== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 10px;
    }

    .mobile-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
        width: 100%;
        max-width: 400px;
    }

    .card {
        flex: 0 0 140px;
        max-width: 140px;
        background: var(--card-bg);
        border-radius: 20px;
        padding: 12px 10px 16px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
        transition: none;
    }

    .avatar-wrap {
        width: 100px;
        height: 120px;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,0,0,0.25));
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    }

    .avatar {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .name {
        font-size: 12px;
        margin-top: 8px;
        text-align: center;
        font-weight: 600;
    }

    .role {
        font-size: 10px;
        margin-top: 4px;
        text-align: center;
        color: rgba(255, 255, 255, 0.75);
    }
}


/* ====== موبایل (سه‌تا کارت در هر ردیف) ====== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 10px;
    }

    .mobile-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }

    .card {
        flex: 0 0 calc(33.33% - 12px);
        max-width: 110px;
        background: var(--card-bg);
        border-radius: 18px;
        padding: 10px 8px 14px;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
        transition: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .avatar-wrap {
        width: 80px;
        height: 95px;
        border-radius: 14px;
        background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(0,0,0,0.25));
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    }

    .avatar {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

    .name {
        font-size: 11px;
        margin-top: 6px;
        text-align: center;
        font-weight: 600;
        line-height: 1.2;
    }

    .role {
        font-size: 9.5px;
        margin-top: 3px;
        text-align: center;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.3;
    }
}

/* faq */
/* :root{
--bg:#181818;
--accent:#D4AF37;
--tint:#D4AF37;
--ink:#ffffff;
--glass-border: rgba(255,255,255,0.15);
--muted: rgba(255,255,255,0.6);
}

html,body{
margin:0;
background:radial-gradient(circle at center, var(--bg) 0%, #0a0a0a 100%);
color:#fff;
font-family:'Vazirmatn', sans-serif;
} */

.faq-wrap {
    max-width: 1100px;
    margin: 64px auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
}

.faq-head {
    color: var(--tint);
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 26px 0;
    text-shadow: 0 0 18px rgba(212, 175, 55, .4), 0 0 30px rgba(212, 175, 55, .25);
}

.faq {
    display: grid;
    grid-template-columns:1fr 420px;
    gap: 32px;
    align-items: center;
}

#particleCanvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .25), rgba(212, 175, 55, .08));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.faq-list {
    display: grid;
    gap: 14px
}

.faq-item {
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 14px 16px;
    transition: .25s ease;
    position: relative;
}

.faq-item:hover,
.faq-item.is-open {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 34px rgba(212, 175, 55, .35);
    border-color: var(--tint);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 0;
    padding: 8px 4px;
    text-align: right;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    cursor: pointer;
    color: var(--tint);
    text-shadow: 0 0 10px rgba(212, 175, 55, .35);
}

.faq-q .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--tint);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .15);
}

.faq-a {
    font-family: 'Sahel', sans-serif;
    line-height: 2;
    color: var(--ink);
    font-size: 15px;
    padding: 0 4px 6px 4px;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease;
    opacity: 0;
}

.faq-item.is-open .faq-a {
    max-height: 240px;
    margin-top: 6px;
    opacity: 1;
}

.caret {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    vertical-align: -.2em;
    background: var(--tint);
    margin-right: 2px;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

.faq-item:focus-within {
    outline: 3px solid var(--tint);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .faq {
        grid-template-columns:1fr;
        gap: 18px
    }

    #particleCanvas {
        aspect-ratio: 16/9
    }
}

/* جهت چیدمان بخش FAQ اصلاح بشه */
.faq {
    display: grid;
    grid-template-columns: 1fr 420px; /* اول متن، بعد تصویر */
    direction: rtl; /* متن راست‌چین بمونه */
}

/* اگر در موبایل می‌خوای ترتیبش برعکس نشه */
@media (max-width: 900px) {
    .faq {
        grid-template-columns: 1fr; /* روی موبایل فقط یکی باشه */
    }
}

/* فوتر */
/* :root{
  --accent: rgba(255,255,255,0.7);
  --accent-light: rgba(255,255,255,0.2);
}

body{
  margin:0;
  font-family:"Vazir",sans-serif;
  direction:rtl;
  background: radial-gradient(circle at center, #181818 0%, #0a0a0a 100%);
  display:flex;
  flex-direction:column;
  min-height:100vh;
  color:#fff;
} */

/*ertebat*/


/* ===== فوتر ===== */
footer {
    position: relative;
    padding: 80px 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 25px 25px 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ستون راست: لوگوها */
.right-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    transition: 0.4s ease;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: 0.4s ease;
}

.logo-wrapper:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* ستون وسط */
.center-links {
    display: flex;
    align-items: center;
    gap: 60px;
}

.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: 26px;
}

.socials a i {
    transition: all 0.3s ease;
}

.socials a i.fa-instagram {
    color: #E4405F;
}

.socials a i.fa-telegram {
    color: #7ad9ff;
}

.socials a i.fa-whatsapp {
    color: #25D366;
}

.socials a:hover i {
    color: #fff;
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quick-links ul li a {
    color: #eaeaea;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.quick-links ul li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.quick-links ul li a:hover {
    color: #fff;
}

.quick-links ul li a:hover::after {
    width: 100%;
}

/* ستون چپ */
.left-text {
    color: #eee;
    line-height: 1.9;
    max-width: 300px;
    font-size: 15px;
    text-align: right;
}

.left-text h3 {
    color: #fff;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Montserrat', 'Vazir', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.left-text p {
    color: #ccc;
}

/* نوشته پایین */
#typing {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-top: 40px;
    font-family: monospace;
    letter-spacing: 1px;
    white-space: pre;
    opacity: 0.9;
}

/* ریسپانسیو */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .right-logos {
        flex-direction: row;
        gap: 15px;
    }

    .logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .center-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .socials {
        gap: 15px;
        font-size: 22px;
    }

    .quick-links ul {
        gap: 8px;
    }

    .quick-links ul li a {
        font-size: 14px;
    }

    .left-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    #typing {
        font-size: 11px;
        margin-top: 20px;
    }
}

    .support-btn {
      position:fixed;
      left:20px;
      bottom:20px;
      z-index:1500;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:14px;
      border-radius:50%;
      background: rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(16px);
      color:var(--text);
      cursor:pointer;
      box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      transition: transform .22s ease, box-shadow .22s ease;
      font-size:16px;
      min-width:48px;
      min-height:48px;
    }

    @media (min-width:768px){
      .support-btn{
        border-radius:28px;
        padding:12px 22px;
        min-width:140px;
        min-height:44px;
      }
      .support-btn .label{ display:inline-block; font-weight:600; }
      .support-btn .icon{ margin-left:8px; }
    }

    .modal {
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      background: rgba(2,6,10,0.55);
      backdrop-filter: blur(6px);
      z-index:2000;
      padding:20px;
    }
    .modal.active { display:flex; }

    .modal-box {
      width:100%;
      max-width:480px;
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--glass-border);
      border-radius:22px;
      padding:22px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
      backdrop-filter: blur(14px);
      position:relative;
      overflow:hidden;
      animation: modalIn .32s cubic-bezier(.2,.9,.2,1);
    }

    @keyframes modalIn {
      0% { opacity:0; transform: translateY(18px) scale(.98) rotate(-0.6deg); }
      100% { opacity:1; transform: translateY(0) scale(1) rotate(0); }
    }

    .modal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
    .modal-head h2{ margin:0; font-size:18px; color:var(--text); }
    .close-btn{
      background:transparent;
      border:none;
      color:var(--muted);
      cursor:pointer;
      font-size:18px;
      padding:6px;
      border-radius:8px;
      transition: background .18s ease, color .18s ease;
    }

    form { display:flex; flex-direction:column; gap:10px; }
    .field { display:flex; flex-direction:column; gap:6px; }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
      width:100%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.25);
      padding:10px 12px;
      border-radius:10px;
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: all .18s ease;
      resize:vertical;
      box-sizing:border-box;
    }

    ::placeholder { color: rgba(255,255,255,0.45); }

    /* ✅ طلایی هنگام فوکوس */
    input:focus, select:focus, textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 6px 22px rgba(212,175,55,0.3), 0 0 10px rgba(212,175,55,0.2);
      background: rgba(212,175,55,0.05);
      transform: translateY(-1px);
    }

    input:not(:placeholder-shown),
    textarea:not(:placeholder-shown),
    select:valid {
      background: rgba(255,255,255,0.1);
    }

    select {
      background-color: rgba(255,255,255,0.1);
      color: var(--text);
    }
    select:focus {
      background-color: rgba(255,255,255,0.2);
      border-color: var(--gold);
    }
    option {
      background-color: #0a0a0a;
      color: #fff;
    }
    option:hover,
    option:focus,
    option:checked {
      background-color: rgba(255,255,255,0.25);
      color: #fff;
    }

    textarea { min-height:110px; max-height:260px; }

    /* ✅ دکمه ارسال طلایی + سیاه */
    .btn-send {
      display:block;
      width:100%;
      margin-top:10px;
      padding:11px 14px;
      border-radius:10px;
      border:none;
      cursor:pointer;
      font-weight:700;
      background: linear-gradient(90deg, #000000 0%, var(--gold) 100%);
      color:#041018;
      box-shadow: 0 8px 30px rgba(212,175,55,0.2);
      transition: transform .18s ease, box-shadow .18s ease;
      font-size:15px;
    }
    .btn-send:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 36px rgba(212,175,55,0.3);
    }

    .success-wrap{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:10px;
      padding:18px;
      border-radius:12px;
      text-align:center;
      color:var(--gold);
      font-weight:700;
      text-shadow: 0 0 10px rgba(212,175,55,0.28);
      backdrop-filter: blur(8px);
      border:1px solid rgba(212,175,55,0.08);
      background: linear-gradient(180deg, rgba(212,175,55,0.02), rgba(212,175,55,0.01));
      animation: fadeOutBox 2s 1.2s ease both;
    }

    @keyframes fadeOutBox {
      to { opacity:0; transform: scale(.98) translateY(6px); filter: blur(6px); }
    }

    @media (max-width:420px){
      .modal-box{ padding:16px; border-radius:16px; max-width:360px; }
      .support-btn{ left:14px; bottom:14px; padding:12px; }
    }

.faq {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  padding: 2rem 0;
}

#particleCanvas {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(255,215,0,0.05), transparent 70%);
  border-radius: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

#particleCanvas:hover {
  transform: scale(1.02);
}

.faq-list {
  flex: 1;
  min-width: 250px;
}
