/* --- فراخوانی فونت‌ها از پوشه fonts --- */
@font-face {
    font-family: 'IRANSansWeb';
    src: url('fonts/IRANSansWeb.eot');
    src: url('fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype'),
         url('fonts/IRANSansWeb.woff2') format('woff2'),
         url('fonts/IRANSansWeb.woff') format('woff'),
         url('fonts/IRANSansWeb.ttf') format('truetype');
    font-weight: normal; /* Regular Weight */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansWeb';
    src: url('fonts/IRANSansWeb_Bold.eot');
    src: url('fonts/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/IRANSansWeb_Bold.woff2') format('woff2'),
         url('fonts/IRANSansWeb_Bold.woff') format('woff'),
         url('fonts/IRANSansWeb_Bold.ttf') format('truetype');
    font-weight: bold; /* Bold Weight */
    font-style: normal;
    font-display: swap;
}

/* --- متغیرهای رنگی و استایل‌های اصلی --- */
:root {
    --primary-blue: #007BFF;
    --light-blue-bg: #f5f8ff;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --discount-pink: #ff4d6d;
    --discount-green: #00bfa6;
}

body {
    font-family: 'IRANSansWeb', Arial, sans-serif;
    direction: rtl;
    margin: 0;
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Header --- */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.main-header .container {
    display: flex;
    justify-content: center; 
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none; /* تغییر: این خط برای حذف آندرلاین لینک اضافه شد */
}
.header-logo-img {
    height: 32px;
    width: auto;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--light-blue-bg);
    text-align: center;
    padding: 80px 0;
}
.hero-icon-wrapper {
    margin-bottom: 30px;
}
.main-headline {
    font-size: 35px;
    font-weight: bold;
    margin: 0 0 15px 0;
}
.sub-headline {
    font-size: 18px;
    color: var(--text-muted);
    margin: 0 auto 30px auto;
    max-width: 600px;
    font-weight: normal;
}
.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

/* --- Pricing Section --- */
.pricing {
    padding: 80px 0;
    background-color: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 18px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}
.pricing-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}
.pricing-card:not(.featured):hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}
.discount-badge {
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}
.discount-badge.pink { background-color: var(--discount-pink); }
.discount-badge.green { background-color: var(--discount-green); }

.card-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}
.card-price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--text-muted);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: normal;
}
.card-features svg {
    color: var(--discount-green);
    flex-shrink: 0;
}

.order-button {
    display: block;
    width: 90%;
    text-align: center;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.order-button:hover {
    background-color: #0056b3;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px 0;
    background: var(--light-blue-bg);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* --- استایل جدید برای لوگوی هدر --- */

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* فاصله بین لوگو و متن */
}

.header-logo-img {
    height: 32px; /* اندازه لوگو */
    width: auto;
}

/* --- استایل صفحه واسط (پنل) --- */
.panel-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
}
.panel-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.panel-container p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.panel-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.panel-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}