@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';
        }


        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
            min-height: 100vh;
            transition: all 0.3s ease;
            line-height: 1.6;
        }

        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: #FFD7D7;
        }

        .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;
}


        /*---------------------------------------------------------------------------------------------------------------------------------------*/
        /* About Section Styles */
.about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.dark .about-section {
    background: rgba(0, 0, 0, 0.15);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.2), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
}

.dark .section-title {
    color: #FFD7D7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #A0522D;
    font-weight: 500;
}

.dark .section-subtitle {
    color: #F3B6B6;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro {
    margin-bottom: 40px;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dark .about-title {
    color: #FFD7D7;
}

.about-description {
    font-size: 1.1rem;
    color: #A0522D;
    line-height: 1.8;
    text-align: justify;
}

.dark .about-description {
    color: #F3B6B6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(248, 244, 240, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.dark .feature-item {
    background: rgba(26, 22, 17, 0.4);
    border-color: rgba(255, 215, 215, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 8px;
}

.dark .feature-item h4 {
    color: #FFD7D7;
}

.feature-item p {
    font-size: 0.95rem;
    color: #A0522D;
    line-height: 1.5;
}

.dark .feature-item p {
    color: #F3B6B6;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

.about-values {
    background: rgba(248, 244, 240, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.dark .about-values {
    background: rgba(26, 22, 17, 0.3);
    border-color: rgba(255, 215, 215, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.dark .value-card {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 215, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.15);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4a574;
    margin-bottom: 10px;
}

.value-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.dark .value-text h5 {
    color: #FFD7D7;
}

.value-text p {
    font-size: 0.85rem;
    color: #A0522D;
    font-weight: 500;
}

.dark .value-text p {
    color: #F3B6B6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
    }

    .about-img {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-values {
        padding: 40px 20px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-number {
        font-size: 2rem;
    }

    .value-text h5 {
        font-size: 0.9rem;
    }

    .value-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content {
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .about-img {
        height: 250px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-values {
        padding: 30px 15px;
    }

    .value-card {
        padding: 20px 10px;
    }

    .value-number {
        font-size: 1.8rem;
    }
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/


.packages-section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    position: relative;
}

.dark .packages-section {
    background: rgba(0, 0, 0, 0.03);
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-wrapper {
    overflow: hidden;
    position: relative;
}

.packages-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 165, 116, 0.3) transparent;
}

.packages-grid::-webkit-scrollbar {
    height: 6px;
}

.packages-grid::-webkit-scrollbar-track {
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
}

.packages-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #d4a574, #b8956a);
    border-radius: 10px;
}

.package-card {
    flex: 0 0 280px;
    background: rgba(248, 244, 240, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 69, 19, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.dark .package-card {
    background: rgba(26, 22, 17, 0.3);
    border-color: rgba(255, 215, 215, 0.08);
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
    border-color: rgba(212, 165, 116, 0.2);
}

.package-card.featured {
    border: 2px solid rgba(212, 165, 116, 0.3);
    background: rgba(212, 165, 116, 0.05);
    transform: translateY(-5px);
}

.dark .package-card.featured {
    background: rgba(212, 165, 116, 0.08);
}

.package-card.featured:hover {
    transform: translateY(-12px) scale(1.03);
}

.package-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-badge.starter {
    background: #6B4226;
}

.package-badge.pro {
    background: #8B5E3C;
}

.package-badge.premium {
    background: #6B4226;
}

.package-badge.enterprise {
    background: #8B5E3C;
}

.package-badge.custom {
    background:#6B4226;
}
.package-badge.one-night{
    background: #4B2E1A;
}
.package-badge.tamol{
    background: #8B5E3C;
}
.package-badge.one-night{
    background: #6B4226;
}




.package-content {
    padding: 20px;
}

.package-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
}

.dark .package-title {
    color: #FFD7D7;
}

.package-desc {
    font-size: 0.85rem;
    color: #A0522D;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}

.dark .package-desc {
    color: #F3B6B6;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.feature {
    font-size: 0.8rem;
    color: #8B4513;
    font-weight: 500;
}

.dark .feature {
    color: #FFD7D7;
}

.package-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* دکمه‌های رنگی جذاب */
.starter-btn {
    background:#8B5E3C;
    color: white;
}

.starter-btn:hover {
    background: #6B4226;
}

.pro-btn {
    background: #8B5E3C;
    color: white;
}

.pro-btn:hover {
    background:#6B4226;
}

.premium-btn {
    background:#8B5E3C ;
    color: white;
}

.premium-btn:hover {
    background:#6B4226 ;
}

.enterprise-btn {
    background: #8B5E3C;
    color: white;
}

.enterprise-btn:hover {
    background: #6B4226;
}

.custom-btn {
    background: #8B5E3C;
    color: white;
}

.custom-btn:hover {
    background: #6B4226;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-section {
        padding: 50px 0;
    }

    .packages-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .package-card {
        flex: 0 0 250px;
    }

    .packages-grid {
        gap: 20px;
        padding: 15px 5px 25px;
    }

    .package-image {
        height: 140px;
    }

    .package-content {
        padding: 15px;
    }

    .package-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .package-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .package-features {
        margin-bottom: 15px;
    }

    .feature {
        font-size: 0.75rem;
    }

    .package-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .package-card {
        flex: 0 0 220px;
    }

    .packages-grid {
        gap: 15px;
        padding: 10px 5px 20px;
    }

    .package-image {
        height: 120px;
    }

    .package-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .package-content {
        padding: 12px;
    }

    .package-title {
        font-size: 1rem;
    }

    .package-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .feature {
        font-size: 0.7rem;
    }

    .package-btn {
        padding: 9px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .packages-grid::-webkit-scrollbar {
        height: 4px;
    }
}



/*---------------------------------------------------------------------------------------------------------------------------------------*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.feedback-section {
    padding: 60px 0;
}

.feedback-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #A0522D;
    opacity: 0.8;
}

/* Grid Layout */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Card Styles */
.feedback-card {
    background: #fdf0f4;;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    height: fit-content;
}

.feedback-card.featured {
    background: linear-gradient(135deg, #fff 0%, #fdf9f5 100%);
    border: 2px solid #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #d4a574;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feedback-header-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4a574;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 4px;
}

.reviewer-job {
    font-size: 0.8rem;
    color: #A0522D;
    margin-bottom: 6px;
}

.rating {
    font-size: 25px;
    color: #ffa500;
}

.feedback-text {
    font-size: 0.9rem;
    color: #6B4423;
    line-height: 1.6;
    text-align: justify;
}

/* Stats Section */
.feedback-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    min-width: 120px;
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 0.85rem;
    color: #8B4513;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feedback-card {
        padding: 18px;
    }
    
    .feedback-stats {
        gap: 20px;
    }
    
    .stat-box {
        padding: 18px 15px;
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .feedback-section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feedback-card {
        padding: 15px;
    }
    
    .feedback-header-card {
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .reviewer-job {
        font-size: 0.75rem;
    }
    
    .feedback-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .feedback-stats {
        gap: 15px;
    }
    
    .stat-box {
        padding: 15px 12px;
        min-width: 100px;
    }
    
    .stat-icon {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* Subtle hover effects (optional) */
.feedback-card {
    transition: transform 0.2s ease;
}

.feedback-card:hover {
    transform: translateY(-2px);
}

.stat-box {
    transition: transform 0.2s ease;
}

.stat-box:hover {
    transform: translateY(-1px);
}


/*---------------------------------------------------------------------------------------------------------------------------------------*/



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.title-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
}

.dark .title-text {
    color: #f7fafc;
}

.title-decoration {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #8b4513;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
}

.dark .section-subtitle {
    color: #a0aec0;
}

/* Contact Content */
.contact-content {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    width: 100%;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.dark .info-card {
    background: rgba(45, 55, 72, 0.95);
    border-color: #4a5568;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.phone-card .card-icon { background: #e6fffa; }
.whatsapp-card .card-icon { background: #d4edda; }
.email-card .card-icon { background: #fef5e7; }
.telegram-card .card-icon { background: #ebf8ff; }
.instagram-card .card-icon { background: #fce7f3; }
.facebook-card .card-icon { background: #e7f3ff; }

.card-icon i {
    font-size: 1.8rem;
}

.phone-card .card-icon i { color: #319795; }
.whatsapp-card .card-icon i { color: #25d366; }
.email-card .card-icon i { color: #d69e2e; }
.telegram-card .card-icon i { color: #3182ce; }
.instagram-card .card-icon i { color: #c53030; }
.facebook-card .card-icon i { color: #4267b2; }

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.dark .card-content h3 {
    color: #f7fafc;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.dark .contact-link {
    color: #cbd5e0;
}

.contact-link:hover {
    color: #8b4513;
}

.contact-text {
    font-size: 0.95rem;
}

.contact-link i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #718096;
}

.dark .card-subtitle {
    color: #a0aec0;
}

/* Footer Showcase */
.footer-showcase {
    text-align: center;
    margin-top: 60px;
}

.footer-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.dark .footer-header h3 {
    color: #f7fafc;
}

.footer-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    min-width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dark .footer-item {
    background: rgba(45, 55, 72, 0.95);
    border-color: #4a5568;
}

.footer-item i {
    font-size: 2rem;
    color: #8b4513;
}

.footer-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
}

.dark .footer-item span {
    color: #cbd5e0;
}

.copyright-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.links-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.copyright-link:hover {
    color: #6b3410;
    text-decoration: underline;
}

.separator {
    color: #718096;
    font-weight: 400;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.15);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(139, 69, 19, 0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .title-text {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .footer-showcase {
        margin-top: 40px;
    }
    
    .footer-header h3 {
        font-size: 1.3rem;
    }
    
    .footer-item {
        padding: 15px 20px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-text {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .info-grid {
        max-width: 100%;
    }
    
    .info-card {
        padding: 18px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .footer-item {
        padding: 12px 15px;
        min-width: 180px;
    }
    
    .footer-item span {
        font-size: 0.8rem;
    }
    
    .links-container {
        flex-direction: column;
        gap: 4px;
    }
    
    .separator {
        display: none;
    }
    
    .floating-shape {
        display: none;
    }
}





















/*-----------------------------------------------------------------------------------------------------------------------*/

