 @font-face {
  font-family: 'IRANYekanX';
  src: url('/assets/fonts/IRAN-Yekan-X-VF/IRAN\ Yekan\ X\ VF.ttf') format('woff2');
  font-weight: 100 900; /* چون Variable Font هست */
  font-display: swap;
 
 }
 
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'IRANYekanX';
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: all 0.3s ease;
        }

/* بخش درباره - متغیرهای رنگ */
:root {
    --bg-light: #f8f7f4;
    --bg-dark: #2c1810;
    --card-light: #ffffff;
    --card-dark: #3a2317;
    --text-primary-light: #2c1810;
    --text-primary-dark: #f8f7f4;
    --text-secondary-light: #8b7355;
    --text-secondary-dark: #c4a984;
    --accent-color: #d4af37;
    --shadow-light: rgba(44, 24, 16, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --border-light: rgba(44, 24, 16, 0.1);
    --border-dark: rgba(196, 169, 132, 0.2);
}

        body.dark {
            background: linear-gradient(135deg, #1a1611 0%, #2d2419 100%);
            color: #FFD7D7;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Desktop Navigation */
        .desktop-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(248, 244, 240, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
            z-index: 1000;
            padding: 12px 0;
            display: none;
        }

        .dark .desktop-menu {
            background: rgba(26, 22, 17, 0.85);
            border-bottom-color: rgba(255, 215, 215, 0.1);
        }

        .desktop-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .desktop-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .logo-text h2 {
            color: #8B4513;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .dark .logo-text h2 {
            color: #FFD7D7;
        }

        .logo-text p {
            color: #A0522D;
            font-size: 11px;
            font-weight: 500;
        }

        .dark .logo-text p {
            color: #F3B6B6;
        }

        .desktop-nav-items {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .desktop-nav-item {
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dark .desktop-nav-item {
            color: #FFD7D7;
        }

        .desktop-nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #d4a574, #b8956a);
            z-index: -1;
            transition: left 0.3s ease;
            border-radius: 25px;
        }

        .desktop-nav-item:hover {
            color: white;
            transform: translateY(-2px);
        }

        .desktop-nav-item:hover::before {
            left: 0;
        }

        .desktop-theme-toggle {
            margin-left: 15px;
        }

        /* Mobile Menu - بهینه شده */
        .mobile-menu {
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 1001;
            display: none;
        }

        .menu-toggle {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
            transition: all 0.3s ease;
        }

        .dark .menu-toggle {
            background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }

        .menu-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
        }

        .menu-icon {
            width: 26px;
            height: 20px;
            position: relative;
        }

        .menu-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.25s ease-in-out;
        }

        .menu-icon span:nth-child(1) { top: 0px; }
        .menu-icon span:nth-child(2) { top: 8px; }
        .menu-icon span:nth-child(3) { top: 16px; }

        .menu-toggle.active .menu-icon span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }

        .menu-toggle.active .menu-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .menu-toggle.active .menu-icon span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }

        /* Mobile Menu Items - کاملاً بازنویسی شده */
        .mobile-menu-items {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100vw;
            max-width: 320px;
            height: 100vh;
            background: rgba(248, 244, 240, 0.98);
            backdrop-filter: blur(20px);
            padding: 100px 25px 25px;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            border-left: 1px solid rgba(139, 69, 19, 0.1);
        }

        .dark .mobile-menu-items {
            background: rgba(26, 22, 17, 0.98);
            border-left-color: rgba(255, 215, 215, 0.1);
        }

        .mobile-menu-items.active {
            right: 0;
        }

        .mobile-logo {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .dark .mobile-logo {
            border-bottom-color: rgba(255, 215, 215, 0.1);
        }

        .mobile-logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: bold;
            color: white;
        }

        .mobile-logo-text h3 {
            color: #8B4513;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .dark .mobile-logo-text h3 {
            color: #FFD7D7;
        }

        .mobile-logo-text p {
            color: #A0522D;
            font-size: 12px;
            font-weight: 500;
        }

        .dark .mobile-logo-text p {
            color: #F3B6B6;
        }

        .mobile-menu-item {
            display: block;
            padding: 18px 20px;
            text-decoration: none;
            color: #8B4513;
            font-weight: 600;
            border-radius: 15px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .dark .mobile-menu-item {
            color: #FFD7D7;
        }

        .mobile-menu-item:hover {
            background: linear-gradient(135deg, #d4a574, #b8956a);
            color: white;
            transform: translateX(-8px);
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.2);
        }

        .mobile-theme-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            margin-top: 25px;
            border-top: 1px solid rgba(139, 69, 19, 0.1);
            border-radius: 15px;
        }

        .dark .mobile-theme-toggle {
            border-top-color: rgba(255, 215, 215, 0.1);
        }

        .theme-label {
            color: #8B4513;
            font-weight: 600;
            font-size: 15px;
        }

        .dark .theme-label {
            color: #FFD7D7;
        }

        .theme-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        }

        .dark .theme-switch {
            background: linear-gradient(135deg, #4CAF50, #45a049);
        }

        .theme-slider {
            position: absolute;
            top: 3px;
            right: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .dark .theme-slider {
            transform: translateX(-28px);
            background: #2c3e50;
            color: white;
        }

        .theme-slider::before {
            content: '☀️';
        }

        .dark .theme-slider::before {
            content: '🌙';
        }

        /* Hero Section - کاملاً بازنویسی شده برای موبایل */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(248, 244, 240, 0.9) 0%, rgba(232, 221, 212, 0.9) 100%);
            padding: 20px 0;
        }

        .dark .hero-section {
            background: linear-gradient(135deg, rgba(26, 22, 17, 0.9) 0%, rgba(45, 36, 25, 0.9) 100%);
        }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            min-height: 70vh;
        }

        .hero-text {
            animation: slideInRight 1s ease-out;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #8B4513;
        }

        .dark .hero-title {
            color: #FFD7D7;
        }

        .title-main {
            display: block;
            font-size: 2.6rem;
            color: #A0522D;
            margin-bottom: 10px;
        }

        .dark .title-main {
            color: #F3B6B6;
        }

        .title-highlight {
            display: block;
            background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 3.8rem;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #8B4513;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dark .hero-subtitle {
            color: #FFD7D7;
        }

        .hero-description {
            font-size: 1rem;
            color: #A0522D;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: justify;
        }

        .dark .hero-description {
            color: #F3B6B6;
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-bottom: 35px;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            display: block;
            font-size: 2.2rem;
            font-weight: 800;
            color: #d4a574;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #8B4513;
            font-weight: 600;
        }

        .dark .stat-label {
            color: #000000;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #8B4513;
            padding: 16px 30px;
            border: 2px solid #d4a574;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .dark .btn-secondary {
            color: #FFD7D7;
            border-color: #d4a574;
        }

        .btn-secondary:hover {
            background: #d4a574;
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            animation: slideInLeft 1s ease-out;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 450px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-img:hover {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(184, 149, 106, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            font-size: 1.8rem;
            animation: float 3s ease-in-out infinite;
            opacity: 0.8;
        }

        .element-1 {
            top: 15%;
            right: 10%;
            animation-delay: 0s;
        }

        .element-2 {
            top: 65%;
            right: 85%;
            animation-delay: 1s;
        }

        .element-3 {
            top: 35%;
            right: 75%;
            animation-delay: 2s;
        }

        .element-4 {
            top: 85%;
            right: 15%;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(180deg);
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-arrow {
            width: 25px;
            height: 25px;
            border: 2px solid #d4a574;
            border-top: none;
            border-right: none;
            transform: rotate(-45deg);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-8px);
            }
            60% {
                transform: translateX(-50%) translateY(-4px);
            }
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Placeholder sections */
        .placeholder-section {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            margin: 30px 0;
            border-radius: 20px;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }

        .dark .placeholder-section {
            background: rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 215, 215, 0.1);
        }

        .placeholder-section .container {
            text-align: center;
        }

        .placeholder-section h2 {
            font-size: 2.5rem;
            color: #8B4513;
            margin-bottom: 15px;
        }

        .dark .placeholder-section h2 {
            color: #FFD7D7;
        }

        .placeholder-section p {
            font-size: 1.1rem;
            color: #A0522D;
        }

        .dark .placeholder-section p {
            color: #F3B6B6;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (min-width: 906px) {
            .desktop-menu {
                display: block;
            }
            
            .hero-section {
                padding-top: 80px;
            }
            
            .container {
                padding: 0 40px;
            }
            
            .hero-container {
                padding: 0 40px;
            }
        }

        @media (max-width: 906px) {
            .mobile-menu {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
                padding: 60px 0 40px;
                min-height: auto;
            }

            .hero-title {
                font-size: 2.4rem;
                margin-bottom: 15px;
            }

            .title-main {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }

            .title-highlight {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 18px;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 25px;
                text-align: center;
            }

            .hero-stats {
                justify-content: space-around;
                gap: 15px;
                margin-bottom: 30px;
            }

            .stat-number {
                font-size: 1.9rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
            }

            .btn-primary, .btn-secondary {
                padding: 14px 25px;
                font-size: 0.95rem;
                flex: 1;
                min-width: 140px;
                max-width: 200px;
                text-align: center;
            }

            .image-container {
                height: 350px;
                border-radius: 20px;
                margin-top: 20px;
            }

            .floating-element {
                font-size: 1.5rem;
            }

            .scroll-arrow {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                top: 12px;
                right: 12px;
            }

            .menu-toggle {
                width: 55px;
                height: 55px;
                border-radius: 15px;
            }

            .menu-icon {
                width: 22px;
                height: 18px;
            }

            .mobile-menu-items {
                max-width: 280px;
                padding: 80px 20px 20px;
            }

            .hero-section {
                padding: 15px 0;
            }

            .hero-content {
                padding: 50px 0 30px;
                gap: 30px;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 12px;
            }

            .title-main {
                font-size: 1.5rem;
                margin-bottom: 6px;
            }

            .title-highlight {
                font-size: 2.3rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }

            .hero-description {
                font-size: 0.9rem;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .hero-stats {
                gap: 10px;
                margin-bottom: 25px;
                flex-wrap: wrap;
            }

            .stat-item {
                min-width: 80px;
            }

            .stat-number {
                font-size: 1.7rem;
                margin-bottom: 3px;
            }

            .stat-label {
                font-size: 0.75rem;
            }

            .btn-primary, .btn-secondary {
                padding: 12px 20px;
                font-size: 0.9rem;
                flex: none;
                width: 100%;
                max-width: none;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .image-container {
                height: 280px;
                border-radius: 18px;
                margin-top: 15px;
            }

            .floating-element {
                font-size: 1.2rem;
            }

            .container {
                padding: 0 15px;
            }

            .hero-container {
                padding: 0 15px;
            }

            .scroll-indicator {
                bottom: 20px;
            }

            .scroll-arrow {
                width: 20px;
                height: 20px;
            }

            .placeholder-section {
                min-height: 50vh;
                margin: 20px 0;
                border-radius: 15px;
            }

            .placeholder-section h2 {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .placeholder-section p {
                font-size: 1rem;
            }
        }

        /* Extra Small Screens */
        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .title-main {
                font-size: 1.3rem;
            }

            .title-highlight {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-description {
                font-size: 0.85rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }

            .image-container {
                height: 250px;
            }

            .mobile-menu-items {
                max-width: 260px;
            }
        }
/* CSS اضافی برای حل باگ navbar */
.desktop-menu.scrolled {
    background: rgba(248, 244, 240, 0.95) !important;
}

.dark .desktop-menu.scrolled {
    background: rgba(26, 22, 17, 0.95) !important;
}

.desktop-menu.not-scrolled {
    background: rgba(248, 244, 240, 0.85) !important;
}

.dark .desktop-menu.not-scrolled {
    background: rgba(26, 22, 17, 0.85) !important;
}

/* اطمینان از transition نرم */
.desktop-menu {
    transition: background 0.3s ease !important;
} 
 
 




  /* تم روشن */
body:not([data-theme="dark"]) {
    background-color: var(--bg-light);
    color: var(--text-primary-light);
}

/* تم تاریک */
body[data-theme="dark"] {
    background-color: var(--bg-dark);
    color: var(--text-primary-dark);
}

/* کانتینر اصلی */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    margin-top: 2rem;
}

/* تصویر پکیج */
.package-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-light);
    transition: all 0.3s ease;
}

body[data-theme="dark"] .package-image {
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.package-image:hover::before {
    opacity: 0.2;
}

.package-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.package-image:hover img {
    transform: scale(1.05);
}

/* اطلاعات پکیج */
.package-info {
    padding: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary-light);
    text-align: justify;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 15px;
    border-right: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .description {
    background: var(--card-dark);
    color: var(--text-secondary-dark);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.description::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.description:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

body[data-theme="dark"] .description:hover {
    box-shadow: 0 15px 40px var(--shadow-dark);
}

/* گرید ویژگی‌ها */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* کارت ویژگی */
.feature-card {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

body[data-theme="dark"] .feature-card {
    background: var(--card-dark);
    box-shadow: 0 15px 35px var(--shadow-dark);
    border-color: var(--border-dark);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-light);
}

body[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 25px 50px var(--shadow-dark);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary-light);
}

body[data-theme="dark"] .feature-title {
    color: var(--text-primary-dark);
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-light);
}

body[data-theme="dark"] .feature-desc {
    color: var(--text-secondary-dark);
}

/* بخش آمار */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-light);
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

body[data-theme="dark"] .stats-section {
    background: var(--card-dark);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary-light);
    font-weight: 500;
}

body[data-theme="dark"] .stat-label {
    color: var(--text-secondary-dark);
}

/* بخش قیمت */
.price-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #8B5E3C;
    margin: 2rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px 50px;
}

.price-container {
    position: relative;
    z-index: 1;
}

.price-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: transparent;
    color: white;
    border-color: white;
}

/* ریسپانسیو - تبلت */
@media (max-width: 768px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        margin-top: 1rem;
    }
    
    .package-image {
        order: -1;
    }
    
    .package-image img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .description {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 3rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1rem;
        margin: 0 1rem;
    }
    
    .price-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-section {
        margin: 1rem;
        padding: 3rem 1rem;
    }
}

/* ریسپانسیو - موبایل */
@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 0.5rem;
    }
    
    .package-image {
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .package-image img {
        height: 250px;
        border-radius: 15px;
    }
    
    .package-info {
        padding: 1rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .description {
        padding: 1rem;
        font-size: 0.95rem;
        margin: 0 0.5rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 2rem 0.5rem;
        gap: 1rem;
    }
    
    .feature-card {
        margin: 0 0.5rem;
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 2rem 1rem;
        margin: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .price-section {
        margin: 0.5rem;
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .price-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .price-amount {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .price-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* انیمیشن‌های اضافی */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section,
.features-grid,
.stats-section,
.price-section {
    animation: fadeInUp 0.6s ease-out;
}

/* اسکرول صاف */
html {
    scroll-behavior: smooth;
}