/* Font Face */
@font-face {
    font-family: 'Shabnam';
    src: url('fonts/Shabnam.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('fonts/Shabnam-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Shabnam', Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    background: #0f172a;
    color: #171717;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.header-logo span {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-nav a:hover {
    color: #a855f7;
}

.header-nav a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Add padding to body for header */
main {
    padding-top: 80px;
    background: #0f172a;
    min-height: 100vh;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom right, #0f172a, #581c87, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-container {
    position: relative;
}

.spinner-ring {
    width: 128px;
    height: 128px;
    border: 4px solid rgba(168, 85, 247, 0.3);
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.logo-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.loading-text {
    margin-top: 40px;
}

.loading-text p {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0f172a, #581c87, #0f172a);
}

.bg-animation {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: multiply;
    animation: blob 7s infinite;
}

.blob-1 {
    top: 80px;
    left: 80px;
    background: #a855f7;
}

.blob-2 {
    top: 160px;
    right: 80px;
    background: #eab308;
    animation-delay: 2s;
}

.blob-3 {
    bottom: 80px;
    left: 160px;
    background: #ec4899;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

.hero-logo img {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    color: #d8b4fe;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-subtitle .bounce {
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
}

.hero-subtitle .bounce:last-child {
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 1.75rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-description .highlight {
    color: #fbbf24;
    font-weight: bold;
}

.hero-text {
    font-size: 1.5rem;
    color: #9ca3af;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.6s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    animation: fadeInUp 0.6s ease-out 0.8s;
    animation-fill-mode: both;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ec4899, #9333ea);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #a855f7;
    color: #d8b4fe;
}

.btn-secondary:hover {
    background: #a855f7;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 1s;
    animation-fill-mode: both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(1) .stat-number {
    color: #fbbf24;
}

.stat-card:nth-child(2) .stat-number {
    color: #4ade80;
}

.stat-card:nth-child(3) .stat-number {
    color: #a855f7;
}

.stat-label {
    color: #d1d5db;
}

/* Section Styles */
.results-section,
.comparison-section,
.pricing-section,
.about-section,
.team-section,
.contact-section {
    padding: 5rem 0;
    margin: 0;
}

.results-section {
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.comparison-section {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
}

.pricing-section {
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.about-section {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
}

.team-section {
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.contact-section {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.5rem;
    color: #9ca3af;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, #a855f7, #ec4899);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Results Table */
.table-container {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-collapse: collapse;
}

.results-table thead tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.results-table th {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    color: #f3f4f6;
}

.results-table th:nth-child(1) {
    color: #a855f7;
}

.results-table th:nth-child(2) {
    color: #a855f7;
}

.results-table th:nth-child(3) {
    color: #4ade80;
}

.results-table th:nth-child(4) {
    color: #fbbf24;
}

.results-table th:nth-child(5) {
    color: #ec4899;
}

.results-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.results-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.results-table td {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    color: #e5e7eb;
}

.name-cell {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.duration-cell {
    color: #d1d5db;
    font-size: 1.125rem;
}

.before-label {
    color: #ef4444;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.before-value {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.after-label {
    color: #4ade80;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.after-value {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.25rem;
}

.diff {
    font-size: 0.875rem;
    color: #4ade80;
}

/* پنهان کردن data-label در دسکتاپ */
.results-table td::before {
    display: none;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.btn-success {
    background: linear-gradient(to right, #059669, #10b981);
    color: white;
}

.btn-success:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
}

/* Comparison Table */
.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-collapse: collapse;
}

.comparison-table thead tr {
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    font-weight: bold;
    text-align: center;
}

.comparison-table thead th {
    padding: 1rem 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table thead th:first-child {
    border-left: none;
}

.comparison-table thead .xbody-col {
    background: rgba(234, 179, 8, 0.2);
}

.comparison-table tbody tr {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody td {
    padding: 1rem 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.comparison-table tbody td:first-child {
    text-align: right;
    color: #d1d5db;
    font-weight: 600;
    border-left: none;
    font-size: 1.25rem;
}

.xbody-cell {
    background: rgba(16, 185, 129, 0.1);
    color: #4ade80;
    font-weight: bold;
    font-size: 1.25rem;
}

.others-cell {
    color: #ef4444;
    font-weight: 600;
    font-size: 1.125rem;
}

.highlight-box {
    max-width: 800px;
    margin: 3rem auto 0;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #d1d5db;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: justify;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.popular {
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    text-align: center;
    padding: 0.3rem;
    font-weight: bold;
    font-size: 0.65rem;
}

.pricing-card.popular {
    padding-top: 2.25rem;
}

.pricing-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 0.25rem;
}

.original-price {
    font-size: 0.95rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: bold;
    background: linear-gradient(to right, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 0.85rem;
    color: #9ca3af;
}

.price-per-session {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    min-height: 1rem;
}

.discount-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #4ade80;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: bold;
    margin: 0.25rem auto;
    text-align: center;
    width: fit-content;
    display: block;
    min-height: 1.2rem;
}

.sessions-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    margin: 0.75rem auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    font-size: 0.85rem;
}

.sessions-badge span:last-child {
    color: white;
    font-weight: bold;
}

.features-list {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.features-list li {
    color: #d1d5db;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    line-height: 1.4;
}

.btn-bronze {
    background: linear-gradient(to right, #ea580c, #f59e0b);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-silver {
    background: linear-gradient(to right, #6b7280, #9ca3af);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-platinum {
    background: linear-gradient(to right, #8b5cf6, #6366f1);
    color: white;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-bronze:hover,
.btn-silver:hover,
.btn-gold:hover,
.btn-platinum:hover {
    transform: scale(1.02);
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.info-item {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #d1d5db;
    font-size: 1.125rem;
}

/* About Section */
.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-logo {
    width: 128px;
    height: 128px;
    background: transparent;
    object-fit: contain;
}

.about-title h3 {
    font-size: 2.25rem;
    font-weight: bold;
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-title p {
    font-size: 1.5rem;
    color: #9ca3af;
}

.about-description {
    color: #d1d5db;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.highlight-yellow {
    color: #fbbf24;
    font-weight: bold;
}

.highlight-purple {
    color: #a855f7;
    font-weight: bold;
}

.highlight-pink {
    color: #ec4899;
    font-weight: bold;
}

.highlight-green {
    color: #4ade80;
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-stat {
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about-stat:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #a855f7;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.about-stat:nth-child(1) .stat-value {
    color: #a855f7;
}

.about-stat:nth-child(2) .stat-value {
    color: #4ade80;
}

.about-stat:nth-child(3) .stat-value {
    color: #fbbf24;
}

.about-stat:nth-child(4) .stat-value {
    color: #3b82f6;
}

.certifications {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cert-icon {
    font-size: 2.5rem;
}

.cert-header h4 {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    color: #d1d5db;
    padding: 0.5rem 0;
    font-size: 1.125rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-intro p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.8;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-item.phone {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-item.instagram {
    background: linear-gradient(to right, rgba(236, 72, 153, 0.2), rgba(147, 51, 234, 0.2));
    border-color: rgba(236, 72, 153, 0.3);
}

.contact-item.address {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-item.hours {
    background: linear-gradient(to right, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.2));
    border-color: rgba(234, 179, 8, 0.3);
}

.contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #9ca3af;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #4ade80;
    font-size: 1.75rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item.instagram a {
    color: #ec4899;
}

.contact-item a:hover {
    color: white;
}

.contact-item p {
    color: white;
    line-height: 1.6;
    font-size: 1.125rem;
}

.hours-days {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.hours-time {
    font-size: 1.25rem;
}

.contact-map {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 600px;
}

.contact-map:hover {
    transform: scale(1.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-link a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9333ea;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link a:hover {
    color: #7e22ce;
}

.quick-contact {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    text-align: center;
    margin-top: 3rem;
}

.quick-contact h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.quick-contact p {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-instagram {
    background: linear-gradient(to right, #ec4899, #9333ea);
    color: white;
}

.btn-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.5);
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-brand h3 {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #ec4899, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-enamad {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-enamad a {
    display: block;
    transition: all 0.3s ease;
}

.footer-enamad a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-enamad img {
    max-width: 100px;
    height: auto;
    display: block;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-nav a {
        width: 100%;
        padding: 1rem 2rem;
        text-align: center;
    }
    
    .header-logo {
        margin-right: 0.75rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Tablet - 2 columns */
@media (max-width: 1200px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
    
    .header-logo img {
        width: 40px;
        height: 40px;
    }
    
    .header-logo span {
        font-size: 1rem;
    }
    
    .hero-logo {
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    /* جداول بهتر در موبایل - نمایش کارتی */
    .results-table {
        padding: 0;
    }
    
    .results-table thead {
        display: none;
    }
    
    .results-table tbody {
        display: block;
    }
    
    .results-table tr {
        display: block;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(168, 85, 247, 0.3);
    }
    
    .results-table td {
        display: block;
        padding: 0.75rem 0;
        border: none;
        text-align: right;
        font-size: 1.125rem;
    }
    
    .results-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
        color: #d1d5db;
    }
    
    .results-table td {
        color: #e5e7eb !important;
    }
    
    .name-cell {
        font-size: 1.5rem !important;
        color: #c084fc !important;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    }
    
    .name-cell::before {
        display: none;
    }
    
    /* جدول مقایسه - اسکرول افقی */
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .about-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.05);
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        margin-top: 2rem;
    }
    
    .hero-logo img {
        width: 64px;
        height: 64px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* جداول کارت‌گونه در موبایل کوچک */
    .results-table tr {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .results-table td {
        padding: 0.5rem 0;
        font-size: 1rem;
        color: #e5e7eb !important;
    }
    
    .name-cell {
        font-size: 1.25rem !important;
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
        color: #c084fc !important;
    }
    
    .duration-cell {
        font-size: 0.875rem;
        color: #d1d5db !important;
    }
    
    .diff {
        display: block;
        margin-top: 0.25rem;
        color: #4ade80;
        font-size: 0.875rem;
    }
    
    .before-value,
    .after-value {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-item a {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
}

.modal-close:hover {
    color: #a855f7;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.scroll-to-top svg {
    color: white;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(37, 211, 102, 0.4));
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float:hover img {
    filter: drop-shadow(0 6px 20px rgba(37, 211, 102, 0.6));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float img {
        width: 55px;
        height: 55px;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.gallery-item {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.no-gallery-message {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    
    .gallery-item {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Team Section Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 30px 60px rgba(168, 85, 247, 0.2);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.team-card:hover .team-image {
    border-color: rgba(168, 85, 247, 0.8);
    transform: scale(1.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
}

.team-info {
    width: 100%;
}

.team-info h3 {
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.team-position {
    font-size: 1.1rem;
    color: #a855f7;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-description {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.75rem;
    }
    
    .team-card {
        max-width: 320px;
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
    
    .team-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        max-width: 100%;
    }
}
    .team-position {
        font-size: 1rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 95vw !important;
    max-height: 95vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0.5rem;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #a855f7;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #f1f1f1;
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 0.75rem;
    }
}
