/* --- Zarsho Complete Styles --- */
:root {
    --bg-deep: #0a0a0c;
    --bg-card: #121216;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dark: #d97706;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #27272a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Tahoma, system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-section h1 span {
    color: var(--gold);
}

.hero-section p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: #0a0a0c;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--gold);
}

.section-title p {
    color: var(--text-muted);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-box {
    background: #070709;
    padding: 20px;
    border-radius: 14px;
    margin: 25px 0;
    border: 1px solid var(--border-color);
}

.old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

.current-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--gold);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 16px;
}

.stars {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.review-text {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: bold;
}

/* Registration Section & Form Styles */
.registration-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0e0e12 100%);
    border-top: 1px solid var(--border-color);
}

.form-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
}

.form-group label span {
    color: var(--gold);
}

.form-control {
    width: 100%;
    background: #070709;
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.bank-info-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.bank-info-box h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.bank-info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.bank-card-number {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 2px;
    margin: 10px 0;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #0a0a0c;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer span {
    color: var(--gold);
    font-weight: bold;
}
/* Stats Section Styles */
.stats-section {
    padding: 60px 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
/* استایل گرید نظرات */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.reviewer-name {
    font-weight: bold;
    font-size: 13px;
    color: #222;
}

/* مدیریت نمایش نظرات اضافی */
.extra-review {
    display: none;
}

.reviews-toggle-wrapper {
    text-align: center;
    margin-top: 40px;
}

.toggle-reviews-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.toggle-reviews-btn:hover {
    background-color: #333;
}
/* پس‌زمینه کل بخش نظرات (اگر می‌خواهید کل بخش تیره باشد) */
.section {
    background: #0b0b0e;
    padding: 60px 20px;
    border-radius: 20px;
}

/* استایل لوکس کارت‌های نظرات */
.review-card {
    background: rgba(255, 255, 255, 0.03); /* شیشه‌ای محو */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2); /* حاشیه طلایی ملایم یا نقره‌ای */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* هاور خفن کارت‌ها */
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6); /* پررنگ شدن حاشیه در حالت هاور */
}

/* رنگ متن‌ها برای پس‌زمینه تیره */
.review-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.reviewer-name {
    font-weight: bold;
    font-size: 13px;
    color: #d4af37; /* رنگ طلایی لوکس برای نام نویسنده */
}

/* ستاره‌ها به رنگ طلایی */
.stars i {
    color: #d4af37;
    font-size: 12px;
    margin-left: 2px;
}

