        :root {
            --primary: #FF6D00;
            --primary-light: rgba(255, 109, 0, 0.08);
            --dark: #1A202C;
            --light: #F7FAFC;
            --white: #FFFFFF;
            --gray: #EDF2F7;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Morabba", -apple-system, BlinkMacSystemFont, sans-serif; */
            font-family: "ّdana", -apple-system, BlinkMacSystemFont, sans-serif;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Morabba', sans-serif !important;
        }

        p, span, div, a, button {
            font-family: 'ّdana' !important;
        }

        .footer-contact a {
            text-decoration: none !important;
            color: inherit;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
        }

              /* هیرو سکشن */
        .hero-section {
            background: linear-gradient(135deg, #F5F7FA 0%, #E4E7EB 100%);
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .hero-title {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .hero-title span {
            color: var(--primary);
            position: relative;
            font-family: "Morabba" !important;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: var(--primary-light);
            z-index: -1;
            border-radius: 4px;
        }
        
        .hero-text {
            color: rgba(26, 32, 44, 0.8);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            max-width: 90%;
        }
        
        .hero-cta {
            display: flex;
            gap: 1.5rem;
        }
        
        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--primary);
            box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-decoration {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,109,0,0.05) 0%, rgba(255,109,0,0) 100%);
            z-index: 1;
        }
        
        .decoration-1 {
            top: -200px;
            right: -200px;
        }
        
        .decoration-2 {
            bottom: -150px;
            left: -150px;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* رسپانسیو */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
            
            .hero-content {
                order: 2;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .hero-image {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        /* بخش محتوای اصلی */


            .legal-section {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }
        
        .legal-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .legal-title {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .legal-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .legal-subtitle {
            font-size: 1.1rem;
            color: rgba(26, 32, 44, 0.8);
            max-width: 700px;
            margin: 0 auto;
        }

        /* کارت‌های اطلاعات حقوقی */
        .legal-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-right: 4px solid var(--primary);
        }
        
        .card-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .card-title svg {
            width: 24px;
            height: 24px;
            margin-left: 10px;
        }
        
        .legal-list {
            list-style: none;
        }
        
        .legal-list li {
            margin-bottom: 1rem;
            padding-right: 1.5rem;
            position: relative;
            line-height: 1.7;
        }
        
        .legal-list li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .highlight {
            background: var(--primary-light);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }

        /* رسپانسیو */
        @media (max-width: 768px) {
            .legal-title {
                font-size: 1.8rem;
            }
            
            .legal-card {
                padding: 1.8rem;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
        }

        /* فوتر جزیره‌ای */
        footer {
            padding: 6rem 0 3rem;
            background: var(--light);
            position: relative;
        }
        
        .footer-island {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            height: 45px;
            width: auto;
        }
        
        .footer-about {
            color: rgba(26, 32, 44, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--dark);
            font-weight: 600;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(26, 32, 44, 0.8);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(-5px);
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            color: rgba(26, 32, 44, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .footer-contact i {
            color: var(--primary);
            margin-left: 0.8rem;
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 50%;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            color: rgba(26, 32, 44, 0.6);
            font-size: 0.9rem;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        
        
        .decoration-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255,109,0,0) 100%);
            z-index: 0;
        }
        
        .circle-1 {
            top: -100px;
            left: -100px;
        }
        
        .circle-2 {
            bottom: -50px;
            right: -50px;
        }
        
        /* رسپانسیو */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-island {
                padding: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-island {
                padding: 2rem;
                border-radius: 16px;
            }

            .footer-bottom {
                flex-direction: column-reverse;

            }

        }

        /* انیمیشن‌ها */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            to { opacity: 1 }
        }
        
        @keyframes pulse {
            0% { transform: scale(1) }
            50% { transform: scale(1.05) }
            100% { transform: scale(1) }
        }

        /* رسپانسیو */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
        }

               :root {
            --primary: #FF6D00;
            --primary-light: rgba(255, 109, 0, 0.1);
            --dark: #1A202C;
            --white: #FFFFFF;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Vazir, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        /* هدر اصلی */
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-right: 2rem;
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        #costumer-portal {
            color: #FF6D00;
        }
        
        /* موبایل */
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu ul {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-menu li {
                margin: 0 0 1.5rem 0;
                width: 100%;
            }
            
            .nav-menu a {
                display: block;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }


        /* سکشن نمایندگی‌ها با تب‌بندی */
        .branches-section {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .region-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 20px 0 48px;
            justify-content: center;
        }
      

        .region-btn {
            padding: 0.8rem 2rem;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            color: var(--dark);
        }
        
        .region-btn:hover {
            background: var(--primary-light);
        }
        
        .region-btn.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .region-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .region-content.active {
            display: block;
        }
        
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .branch-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-right: 4px solid var(--primary);
            transition: var(--transition);
        }
        
        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .branch-name {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .branch-name svg {
            width: 24px;
            height: 24px;
            margin-left: 10px;
        }
        
        .branch-city {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .branch-address {
            margin-bottom: 1rem;
            line-height: 1.7;
            color: rgba(26, 32, 44, 0.8);
        }
        
        .branch-phone {
            display: flex;
            align-items: center;
            color: var(--dark);
            font-weight: 600;
            margin-top: 1.5rem;
        }
        
        .branch-phone svg {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            color: var(--primary);
        }
        
        /* رسپانسیو */
        @media (max-width: 768px) {
            .region-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .branches-grid {
                grid-template-columns: 1fr;
            }
            
            .branch-card {
                padding: 1.5rem;
            }
        }

        /* سکشن دستگاه‌های دیگر */
        .devices-section {
            max-width: 1200px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .device-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
            justify-content: center;
        }
        
        .tab-btn {
            padding: 0.8rem 2rem;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            color: var(--dark);
        }
        
        .tab-btn:hover {
            background: var(--primary-light);
        }
        
        .tab-btn.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .device-content {
            display: none;
        }
        
        .device-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .device-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-right: 4px solid var(--primary);
        }
        
        .card-heading {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .device-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1.5rem;
        }
        
        .device-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }
        
        .device-title {
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        .warning-box {
            background: #FFF8E6;
            border-right: 4px solid #FFC107;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .warning-title {
            color: #FF9800;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .warning-title svg {
            margin-left: 0.5rem;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .tab-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .device-card {
                padding: 1.8rem;
            }
            
            .device-title {
                font-size: 1.5rem;
            }
        }

        
        /* سکشن درباره ما - نسخه منظم */
        .about-section {
            max-width: 1200px;
            margin: 8rem auto;
            padding: 0 2rem;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .about-container .about-sub-title {
            margin-bottom: 10px;
        }
        
        .about-content {
            position: relative;
            z-index: 2;
        }
        
        .section-subtitle {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            line-height: 1.4;
            font-weight: 700;
        }
        
        .about-text {
            color: rgba(26, 32, 44, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .about-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }
        
        .decoration-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,109,0,0.1) 0%, rgba(255,109,0,0) 100%);
            z-index: 1;
        }
        
        .circle-1 {
            top: -100px;
            right: -100px;
        }
        
        .circle-2 {
            bottom: -50px;
            left: -50px;
        }
        
        /* رسپانسیو */
        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
                padding: 3rem;
            }
            
            .about-image {
                order: -1;
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .about-container {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }

          /* منوی توسعه‌دهنده */
        .dev-menu {
            position: relative;
            /* left: 2rem; */
            /* bottom: 2rem; */
            z-index: 100;
        }
        
        .dev-btn {
            width: 56px;
            height: 56px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 6px 24px rgba(255, 109, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .dev-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25));
            transform: translateX(-100%);
            transition: var(--transition);
        }
        
        .dev-btn:hover::after {
            transform: translateX(100%);
        }
        
        .dev-btn.active {
            border-radius: 20px;
            width: 300px;
            justify-content: flex-start;
            padding: 0 1.5rem;
        }

        .dev-btn:focus {
            outline: none;
        }
        
        /* منوی کشویی */
        .dev-dropdown {
            position: absolute;
            bottom: 110%;
            left: 0;
            width: 300px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 -20px 50px rgba(0,0,0,0.15);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.6s cubic-bezier(0.68, -0.55, 0.35, 1.55);
            backdrop-filter: blur(10px);
        }
        
        .dev-btn.active + .dev-dropdown {
            max-height: 500px;
        }
        
        .dev-content {
            padding: 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* هدر منو */
        .dev-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .dev-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-light);
        }
        
        .dev-info h4 {
            color: var(--dark);
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        
        .dev-info p {
            color: rgba(26, 32, 44, 0.7);
            font-size: 0.9rem;
        }
        
        /* لینک‌ها */
        .dev-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .dev-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--dark);
            text-decoration: none;
            padding: 0.9rem;
            border-radius: 12px;
            transition: var(--transition);
            font-size: 0.95rem;
            background: var(--light);
        }
        
        .dev-link:hover {
            background: var(--primary-light);
            color: var(--primary);
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(255, 109, 0, 0.1);
        }
        
        .dev-link i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }
        
        /* رسپانسیو */
        @media (max-width: 768px) {
            .dev-menu {
                /* left: ; */
                /* transform: translateX(-50%); */
                bottom: 1.5rem;
            }
            
            .dev-btn.active {
                width: 300px;    
            }
            
            .dev-dropdown {
                width: 300px;
            }

        }

    /* سکشن نظرات و شکایات */
        .feedback-section {
            max-width: 1200px;
            margin: 6rem auto;
            padding: 0 2rem;
        }
        
        .feedback-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-content {
            position: relative;
            z-index: 2;
        }
        
        .section-subtitle {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            line-height: 1.4;
            font-weight: 700;
        }
        
        .feedback-text {
            color: rgba(26, 32, 44, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .btn-feedback {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: 2px solid var(--primary);
            margin-top: 1rem;
        }
        
        .btn-feedback:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 109, 0, 0.2);
        }
        
        .feedback-note {
            color: rgba(26, 32, 44, 0.6);
            font-size: 0.9rem;
            margin: 1.5rem 0;
            position: relative;
            padding-right: 1.5rem;
        }
        
        .feedback-note::before {
            content: '';
            position: absolute;
            right: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .feedback-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .feedback-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }
        
        .decoration-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,109,0,0.1) 0%, rgba(255,109,0,0) 100%);
            z-index: 1;
        }
        
        .circle-1 {
            top: -100px;
            right: -100px;
        }
        
        .circle-2 {
            bottom: -50px;
            left: -50px;
        }
        
        /* رسپانسیو */
        @media (max-width: 992px) {
            .feedback-container {
                grid-template-columns: 1fr;
                padding: 3rem;
            }
            
            .feedback-image {
                order: -1;
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .feedback-container {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }