/* ===================================================== */
/*                    RESET & BASE                       */
/* ===================================================== */
@font-face {
    font-family: "iranyekanwebbold";
    src: url('../font/iranyekanwebbold.woff2');
}

@font-face {
    font-family: "iranyekanwebmedium";
    src: url('../font/iranyekanwebmedium.woff');
}

@font-face {
    font-family: "iranyekanwebregular";
    src: url('../font/iranyekanwebregular.woff2');
}

button,
a,
div,
section,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "iranyekanwebmedium";
}

/* ===================================================== */
/*                    LOADER STYLES                      */
/* ===================================================== */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid #e2e8f0;
    border-top-color: #289672;
    border-right-color: #0f5a49;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-logo {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* لودر محتوایی (برای لود شدن بخش‌ها) */
.content-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.content-loader .spinner {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    border-top-color: #289672;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ===================================================== */
/*                    RESET & BASE                       */
/* ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "iranyekanwebmedium";
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    color: #1a2a3a;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 35px;
}

/* ===================================================== */
/*                    HEADER & NAVBAR                    */
/* ===================================================== */
.header {
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 100, 80, 0.1);
    transition: all 0.3s ease;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== لوگو ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon i {
    font-size: 1.4rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-main {
    color: #334155;
}

.logo-highlight {
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-en {
    font-size: 0.7rem;
    color: #289672;
    font-weight: 500;
    margin-right: 0.3rem;
}

/* ===== منوی دسکتاپ ===== */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #289672;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0f5a49, #289672);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== دکمه‌های هدر ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    color: white;
    font-weight: 550;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 90, 73, 0.3);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(15, 90, 73, 0.08);
    border: 1px solid rgba(15, 90, 73, 0.2);
    border-radius: 40px;
    cursor: pointer;
    color: #289672;
    font-size: 1.2rem;
}

/* ===== منوی موبایل ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-overlay.active .mobile-nav-container {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 90, 73, 0.1);
}

.close-mobile-nav {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: none;
    border-radius: 40px;
    color: #1e293b;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-mobile-nav:hover {
    background: #dc2626;
    color: white;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(40, 150, 114, 0.1);
    color: #289672;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 90, 73, 0.1);
}

.full-width {
    width: 100%;
}

/* ===================================================== */
/*                    HERO SECTION                       */
/* ===================================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 150, 114, 0.12);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    color: #289672;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 150, 114, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(40, 150, 114, 0.5);
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #289672;
}

.btn-outline:hover {
    background: rgba(40, 150, 114, 0.08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #289672;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(40, 150, 114, 0.2);
    animation: floatCard 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card-inner i {
    font-size: 3rem;
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hero-card-inner h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.hero-card-inner p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f5a49, #289672);
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
    animation: floatShape 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 20%;
    animation: floatShape 5s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(45deg);
    }
}

/* ===================================================== */
/*           هدر بخش منوها (طراحی یکپارچه)              */
/* ===================================================== */

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 150, 114, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    color: #289672;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(40, 150, 114, 0.2);
    backdrop-filter: blur(4px);
}

.menu-header-badge i {
    font-size: 0.8rem;
}

.menu-header-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-header-desc {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* ===== کارت توضیحاتی جدید ===== */
.info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 28px;
    padding: 1.2rem 1.8rem;
    margin-top: 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    width: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #289672;
    box-shadow: 0 8px 24px rgba(40, 150, 114, 0.08);
    transform: translateY(-2px);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    font-size: 1.6rem;
    color: white;
}

.info-card-content {
    flex: 1;
    text-align: right;
    padding: 0 1.2rem;
}

.info-card-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.info-card-content p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 450px;
}

.info-card-stats {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 1rem;
    font-weight: 800;
    color: #289672;
    display: block;
}

.stat-mini-label {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 780px) {
    .menu-header-title {
        font-size: 1.6rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .info-card-content {
        text-align: center;
        padding: 0;
    }

    .info-card-content p {
        max-width: 100%;
    }

    .info-card-stats {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 550px) {
    .menu-header-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    .menu-header-title {
        font-size: 1.4rem;
    }

    .menu-header-desc {
        font-size: 0.85rem;
    }

    .info-card-icon {
        width: 45px;
        height: 45px;
    }

    .info-card-icon i {
        font-size: 1.3rem;
    }

    .info-card-content h4 {
        font-size: 0.85rem;
    }

    .info-card-content p {
        font-size: 0.75rem;
    }
}

.menu-modern-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* کارت منو - طراحی مینیمال */
.menu-modern-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    cursor: pointer;
}

.menu-modern-card:hover {
    transform: translateY(-3px);
    border-color: #289672;
    box-shadow: 0 12px 24px -12px rgba(40, 150, 114, 0.15);
}

/* بخش تصویر */
.menu-modern-image {
    flex-shrink: 0;
}

.menu-image-placeholder {
    width: 100%;
    height: 100px;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-modern-card:hover .menu-image-placeholder {
    transform: scale(1.02);
}

.menu-image-placeholder i {
    font-size: 2.5rem;
    color: #289672;
}

/* افکت‌های خاص برای هر قالب */
.menu-image-placeholder.neon-glow {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
}

.menu-image-placeholder.neon-glow i {
    color: #c084fc;
}

.menu-image-placeholder.wave-bg {
    background: linear-gradient(135deg, #0c4a6e, #0284c7);
}

.menu-image-placeholder.wave-bg i {
    color: #7dd3fc;
}

.menu-image-placeholder.sky-bg {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.menu-image-placeholder.sky-bg i {
    color: #d97706;
}

.menu-image-placeholder.diamond-bg {
    background: linear-gradient(135deg, #312e81, #4338ca);
}

.menu-image-placeholder.diamond-bg i {
    color: #a5b4fc;
}

.menu-image-placeholder.soon-bg {
    background: #e2e8f0;
}

.menu-image-placeholder.soon-bg i {
    color: #94a3b8;
}

/* بخش اطلاعات */
.menu-modern-info {
    flex: 1;
}

.menu-modern-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-modern-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.menu-modern-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.7rem;
    border-radius: 40px;
    font-weight: 600;
}

.menu-modern-badge.hot {
    background: #fee2e2;
    color: #dc2626;
}

.menu-modern-badge.new {
    background: #dbeafe;
    color: #2563eb;
}

.menu-modern-badge.economy {
    background: #fef3c7;
    color: #d97706;
}

.menu-modern-badge.vip {
    background: #ede9fe;
    color: #6d28d9;
}

.menu-modern-badge.soon {
    background: #f1f5f9;
    color: #64748b;
}

.menu-modern-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.menu-modern-features {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.menu-modern-features span {
    font-size: 0.7rem;
    color: #289672;
    background: #f0fdf4;
    padding: 0.2rem 0.7rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* اکشن‌ها (دکمه‌ها) */
.menu-modern-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.demo-btn-modern {
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: white;
    font-weight: 550;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.demo-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 90, 73, 0.25);
}

.demo-btn-modern.disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.demo-btn-modern.disabled:hover {
    transform: none;
    box-shadow: none;
}

.qr-modern {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f1f5f9;
    padding: 0.4rem 0.9rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    font-weight: 500;
    color: #289672;
    position: relative;
}

.qr-modern:hover {
    background: #e2e8f0;
}

.qr-modern.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* تولتیپ برای QR */
.qr-modern[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -32px;
    right: 50%;
    transform: translateX(50%);
    background: #1e293b;
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
}

/* ریسپانسیو */
/* ===== ریسپانسیو برای تبلت و موبایل ===== */

/* تبلت (بین 550px تا 880px) - کارت‌ها ۲ ستونه با حالت ستونی */
@media (max-width: 880px) {
    .menu-modern-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .menu-modern-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: calc(50% - 0.5rem);
        min-width: 200px;
        padding: 1rem;
    }

    .menu-modern-header {
        justify-content: center;
    }

    .menu-modern-features {
        justify-content: center;
    }

    .menu-modern-actions {
        justify-content: center;
    }

    .menu-image-placeholder {
        width: 80px;
        height: 80px;
    }

    .menu-image-placeholder i {
        font-size: 2rem;
    }

    .menu-modern-name {
        font-size: 1rem;
    }

    .menu-modern-desc {
        font-size: 0.75rem;
    }

    .menu-modern-features span {
        font-size: 0.6rem;
        padding: 0.15rem 0.6rem;
    }
}

/* موبایل (کمتر از 550px) - کارت‌ها ۱ ستونه و تمام عرض */
@media (max-width: 550px) {
    .menu-modern-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .menu-modern-card {
        width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 14px;
    }

    .menu-modern-header {
        justify-content: center;
        gap: 0.5rem;
    }

    .menu-modern-features {
        gap: 5px;
    }

    .menu-modern-actions {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 0.6rem;
    }

    .menu-image-placeholder {
        width: 90px;
        height: 135px;
    }

    .menu-image-placeholder i {
        font-size: 1.8rem;
    }

    .menu-modern-name {
        font-size: 0.95rem;
    }

    .menu-modern-desc {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .menu-modern-features span {
        font-size: 0.55rem;
        padding: 0.15rem 0.5rem;
    }

    .demo-btn-modern {
        padding: 0.4rem 0.9rem;
        font-size: 0.7rem;
    }

    .qr-modern {
        padding: 0.35rem 0.8rem;
        font-size: 0.65rem;
    }
}

/* ===================================================== */
/*                    RESPONSIVE                         */
/* ===================================================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 880px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-primary span {
        display: none;
    }

    .btn-primary {
        padding: 0.7rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 550px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    #orderBtn {
        display: none;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* ===================================================== */
/*                 PRICING SECTION                       */
/* ===================================================== */

.pricing-section {
    padding: 5rem 0 0 0;
    position: relative;
    overflow: hidden;
}

/* هدر بخش */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 150, 114, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    color: #289672;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(40, 150, 114, 0.2);
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.pricing-desc {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* گرید ریسپانسیو تعرفه‌ها */
.pricing-grid-responsive {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 2rem 0 2.5rem;
}

/* کارت تعرفه */
.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 28px;
    transition: all 0.35s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.pricing-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.8rem 1.5rem;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #289672;
    box-shadow: 0 20px 35px -12px rgba(40, 150, 114, 0.2);
}

/* کارت محبوب */
.pricing-card.popular {
    border: 2px solid #289672;
    box-shadow: 0 10px 25px -10px rgba(40, 150, 114, 0.25);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

/* هدر کارت */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: #289672;
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.pricing-price {
    margin-bottom: 0.8rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #289672;
}

.price-period {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-right: 0.2rem;
}

.pricing-description {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.pricing-card-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #475569;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 0.85rem;
    width: 20px;
}

.pricing-features li i.fa-check-circle {
    color: #289672;
}

.pricing-features li i.fa-times-circle {
    color: #cbd5e1;
}

.pricing-features li.disabled {
    color: #94a3b8;
}

.pricing-card-footer {
    text-align: center;
    margin-top: auto;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 60px;
    color: white;
    font-weight: 550;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 90, 73, 0.3);
}

.btn-pricing.btn-contact {
    background: transparent;
    border: 1px solid #289672;
    color: #289672;
}

.btn-pricing.btn-contact:hover {
    background: rgba(40, 150, 114, 0.08);
}

/* فوتر بخش */
.pricing-footer {
    text-align: center;
    margin-top: 2rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    color: #d97706;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing-note-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}

.note-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.3rem 0;
}

.note-item i {
    color: #289672;
    font-size: 0.7rem;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 880px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 550px) {
    .pricing-title {
        font-size: 1.4rem;
    }

    .pricing-desc {
        font-size: 0.85rem;
    }

    .pricing-grid-responsive {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card-inner {
        padding: 1.2rem;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .pricing-features li {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }

    .btn-pricing {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }

    .pricing-note-box {
        padding: 0.8rem 1rem;
    }

    .note-item {
        font-size: 0.65rem;
    }
}

/* دسکتاپ: نمایش گرید، مخفی کردن اسلایدر موبایل */
.pricing-mobile-slider {
    display: none;
}

.pricing-desktop-grid {
    display: flex;
}

.pricing-grid {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* موبایل: اسلایدر CSS خالص (فقط با تاچ) */
@media (max-width: 550px) {
    .pricing-desktop-grid {
        display: none;
    }

    .pricing-mobile-slider {
        display: block;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .pricing-slider-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        padding: 4px 16px;
    }

    .pricing-slide {
        flex: 0 0 calc(100% - 32px);
        scroll-snap-align: start;
    }

    .pricing-slide .pricing-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .pricing-slide .popular {
        transform: scale(1);
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #ffffff;
    border-radius: 32px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow:auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 32px 32px 0 0;
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.modal-header h2 span {
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #64748b;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
}

.modal-body {
    padding: 2rem;
}

/* فرم */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
}

.form-group label .required {
    color: #ef4444;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: #f8fafc;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #289672;
    box-shadow: 0 0 0 3px rgba(40, 150, 114, 0.1);
    background: white;
}

.discount-note {
    font-size: 0.7rem;
    color: #289672;
    margin-top: 0.25rem;
    display: block;
}

/* جدول قیمت */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.price-table th,
.price-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

.price-table th {
    background: #f1f5f9;
    font-weight: 700;
    color: #1e293b;
}

.price-table td {
    color: #475569;
}

.price-table tfoot tr {
    background: #daf2f2;
}

.price-table tfoot td {
    font-weight: 700;
    color: #289672;
    font-size: 0.9rem;
}

.alert-warning {
    background: #fef3c7;
    padding: 0.8rem;
    border-radius: 16px;
    font-size: 0.7rem;
    text-align: center;
    color: #d97706;
    margin: 1rem 0;
}

.btn-submit-order {
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 90, 73, 0.3);
}

/* مودال دوم (کد تأیید) */
.verify-modal .modal-container {
    max-width: 450px;
}

.code-input {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-align: center;
    direction: ltr;
}

/* ریسپانسیو */
@media (max-width: 650px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .modal-body {
        padding: 1.2rem;
    }

    .price-table th,
    .price-table td {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
}

/* ===================================================== */
/*             FAQ & CONSULTATION SECTION                */
/* ===================================================== */

.faq-section {
    padding: 1rem 0 0 0;
    position: relative;
    overflow: hidden;
}

/* هدر بخش */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 150, 114, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    color: #289672;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(40, 150, 114, 0.2);
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.faq-desc {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* wrapper دو بخشی */
.faq-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

/* ===== بخش سوالات متداول (آکاردئون) ===== */
.faq-accordion {
    flex: 1;
    background: #ffffff;
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.accordion-item {
    border-bottom: 1px solid #eef2ff;
    margin-bottom: 0.5rem;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    padding-right: 0.5rem;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-icon i {
    font-size: 1.2rem;
    color: #289672;
}

.accordion-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.accordion-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.accordion-arrow i {
    font-size: 0.9rem;
    color: #94a3b8;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

.accordion-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    padding-right: 3rem;
}

/* ===== بخش فرم درخواست مشاوره ===== */
.consultation-form {
    flex: 1;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-icon i {
    font-size: 1.8rem;
    color: white;
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.form-header p {
    font-size: 0.8rem;
    color: #64748b;
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    direction: rtl;
    padding: 0.9rem 2.5rem 0.9rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 0.85rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    color: #1e293b;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #289672;
    box-shadow: 0 0 0 3px rgba(40, 150, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    padding-top: 0.9rem;
}

.form-group textarea+.input-icon {
    top: 18px;
    transform: none;
}

.btn-submit {
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 60px;
    color: white;
    font-weight: 550;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 90, 73, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 880px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .faq-accordion,
    .consultation-form {
        padding: 1.2rem;
    }

    .accordion-content p {
        padding-right: 2rem;
    }
}

@media (max-width: 550px) {
    .faq-title {
        font-size: 1.4rem;
    }

    .faq-desc {
        font-size: 0.85rem;
    }

    .accordion-icon {
        width: 35px;
        height: 35px;
    }

    .accordion-icon i {
        font-size: 1rem;
    }

    .accordion-title {
        font-size: 0.85rem;
    }

    .accordion-content p {
        font-size: 0.75rem;
        padding-right: 1.5rem;
    }

    .form-header h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.75rem;
        padding: 0.7rem 2rem 0.7rem 0.8rem;
    }

    .btn-submit {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ===================================================== */
/*                     FOOTER SECTION                    */
/* ===================================================== */

.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 0rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

/* decorative shapes */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f5a49, #289672, #0f5a49);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 150, 114, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* محتوای اصلی فوتر */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* ستون‌های فوتر */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* لوگو در فوتر */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0f5a49, #289672);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 1.4rem;
    color: white;
}

.footer-logo .logo-main {
    color: #e2e8f0;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-logo .logo-highlight {
    background: linear-gradient(135deg, #0f5a49, #289672);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* شبکه‌های اجتماعی */
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #cbd5e1;
    font-size: 1rem;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #0f5a49, #289672);
    color: white;
    transform: translateY(-3px);
}

/* تیترهای فوتر */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #289672, #0f5a49);
    border-radius: 3px;
}

/* لینک‌های فوتر */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #289672;
    transform: translateX(-4px);
}

/* اطلاعات تماس */
.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-contact li i {
    width: 20px;
    color: #289672;
    font-size: 1rem;
}

/* خبرنامه */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(40, 150, 114, 0.2);
    position: relative;
    z-index: 2;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text i {
    font-size: 2rem;
    color: #289672;
}

.newsletter-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.newsletter-text p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(40, 150, 114, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 60px;
    color: white;
    font-size: 0.85rem;
    width: 260px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #289672;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.btn-newsletter {
    background: linear-gradient(135deg, #0f5a49, #289672);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    color: white;
    font-weight: 550;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 90, 73, 0.4);
}

/* فوتر پایین (کپی رایت) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.copyright p {
    font-size: 0.75rem;
    color: #64748b;
}

.copyright strong {
    color: #289672;
}

.footer-badges {
    display: flex;
    gap: 1.2rem;
}

.footer-badges span {
    font-size: 0.7rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-badges span i {
    color: #289672;
    font-size: 0.7rem;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .newsletter-text {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 550px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===================================================== */
/*              SYSTEM NOTIFICATION STYLES              */
/* ===================================================== */

.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    direction: rtl;
}

.notification {
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    border-right: 4px solid;
    position: relative;
    overflow: hidden;
}

/* انیمیشن ورود */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* انیمیشن خروج */
.notification.hide {
    animation: slideOutLeft 0.3s ease forwards;
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

/* نوار پیشرفت خودکار */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
}

.notification-progress-bar {
    width: 100%;
    height: 100%;
    background: currentColor;
    animation: progress 4s linear forwards;
    border-radius: 3px;
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* آیکون نوتیفیکیشن */
.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* محتوای نوتیفیکیشن */
.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-family: "iranyekanwebmedium", inherit;
}

.notification-message {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    font-family: "iranyekanwebregular", inherit;
}

/* دکمه بستن */
.notification-close {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: #94a3b8;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

/* ===== نوع موفقیت (Success) ===== */
.notification.success {
    border-right-color: #22c55e;
    background: rgba(240, 253, 244, 0.98);
}

.notification.success .notification-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.notification.success .notification-title {
    color: #15803d;
}

/* ===== نوع خطا (Error) ===== */
.notification.error {
    border-right-color: #ef4444;
    background: rgba(254, 242, 242, 0.98);
}

.notification.error .notification-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.notification.error .notification-title {
    color: #b91c1c;
}

/* ===== نوع هشدار (Warning) ===== */
.notification.warning {
    border-right-color: #f59e0b;
    background: rgba(254, 243, 199, 0.98);
}

.notification.warning .notification-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.notification.warning .notification-title {
    color: #b45309;
}

/* ===== نوع اطلاع‌رسانی (Info) ===== */
.notification.info {
    border-right-color: #3b82f6;
    background: rgba(239, 246, 255, 0.98);
}

.notification.info .notification-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.notification.info .notification-title {
    color: #1d4ed8;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 550px) {
    .notification-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .notification {
        min-width: auto;
        max-width: 100%;
        width: calc(100% - 20px);
        padding: 0.8rem 1rem;
    }

    .notification-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .notification-title {
        font-size: 0.8rem;
    }

    .notification-message {
        font-size: 0.7rem;
    }
}





@media (max-width: 768px) {

    .menu-modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .menu-modern-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

        .menu-modern-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

    /* تصویر بالا */
    .menu-modern-image {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #f0f0f0;
    }

    .menu-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background:#ffffff;
    }




    .menu-modern-card:hover .menu-image-real {
        transform: scale(1.05);
    }

    /* اطلاعات زیر تصویر */
    .menu-modern-info {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .menu-modern-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu-modern-name {
        font-size: 1.25rem;
        margin: 0;
        font-weight: 700;
    }




    .menu-modern-badge {
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

        .menu-modern-badge.hot {
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            color: white;
        }

        .menu-modern-badge.new {
            background: linear-gradient(135deg, #11998e, #38ef7d);
            color: white;
        }

        .menu-modern-badge.economy {
            background: linear-gradient(135deg, #f2994a, #f2c94c);
            color: white;
        }

        .menu-modern-badge.vip {
            background: linear-gradient(135deg, #b224ef, #7579ff);
            color: white;
        }

        .menu-modern-badge.soon {
            background: linear-gradient(135deg, #3a7bd5, #3a6072);
            color: white;
        }

    .menu-modern-desc {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .menu-modern-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

        .menu-modern-features span {
            font-size: 0.7rem;
            padding: 4px 10px;
            background: #f8f9fa;
            border-radius: 30px;
            color: #495057;
        }

    .menu-modern-actions {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: auto;
    }

    .demo-btn-modern {
        flex: 1;
        padding: 10px 16px;
        color: white;
        border: none;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

        .demo-btn-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .demo-btn-modern.disabled {
            background: #adb5bd;
            cursor: not-allowed;
            transform: none;
        }

    .qr-modern {
        width: 42px;
        height: 42px;
        background: #f8f9fa;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.6rem;
    }

        .qr-modern i {
            font-size: 1.2rem;
        }
            .qr-modern:hover i {
                color: white;
            }


    .menu-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .menu-modern-card {
        border-radius: 16px;
    }

    .menu-modern-image {
        aspect-ratio: 16 / 9;
        background:#ffffff;
    }

    .menu-modern-info {
        padding: 15px;
    }

    .menu-modern-header {
        margin-bottom: 8px;
    }

    .menu-modern-name {
        font-size: 1.1rem;
    }

    .menu-modern-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .menu-modern-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .menu-modern-features {
        gap: 6px;
        margin-bottom: 15px;
    }

        .menu-modern-features span {
            font-size: 0.65rem;
            padding: 3px 8px;
        }

    .demo-btn-modern {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .qr-modern {
        width: 38px;
        height: 38px;
    }

        .qr-modern i {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .menu-modern-grid {
        padding: 0 12px;
        gap: 15px;
    }

    .menu-modern-info {
        padding: 12px;
    }

    .menu-modern-name {
        font-size: 1rem;
    }

    .menu-modern-desc {
        font-size: 0.75rem;
    }

    .menu-modern-features span {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .demo-btn-modern {
        padding: 7px 10px;
        font-size: 0.7rem;
    }
}