.elementor-835 .elementor-element.elementor-element-585c3d1{--display:flex;--gap:01px 01px;--row-gap:01px;--column-gap:01px;--overflow:hidden;--z-index:5;}.elementor-835 .elementor-element.elementor-element-801c60a{--display:flex;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--margin-top:-19px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-835 .elementor-element.elementor-element-cbded4b{--display:flex;--overflow:hidden;}.elementor-835 .elementor-element.elementor-element-b92b1b3{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:30px 0px 30px 0px;}:root{--page-title-display:none;}/* Start custom CSS *//* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazirmatn', 'IranYekan', 'Samim', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #1a5f7a;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff9800;
        }

        .logo span {
            color: white;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone {
            color: #ff9800;
            font-weight: bold;
            font-size: 18px;
        }

        /* Navigation */
        nav {
            background-color: #0f3443;
            padding: 10px 0;
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            background-color: #ff9800;
            color: white;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://garmayesh24.ir/wp-content/uploads/2025/10/Banner-Background.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ff9800;
        }

        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            background-color: #e68a00;
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #1a5f7a;
            font-size: 32px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #ff9800;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-content {
            padding: 20px;
        }

        .service-card h3 {
            color: #1a5f7a;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Problems List */
        .problems-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
        }

        .problem-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .problem-item h3 {
            color: #e53935;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .problem-item p {
            color: #666;
        }

        /* Pricing Table */
        .pricing-table {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 30px;
        }

        .pricing-header {
            background-color: #1a5f7a;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .pricing-body {
            padding: 0;
        }

        .pricing-row {
            display: flex;
            border-bottom: 1px solid #eee;
        }

        .pricing-row:last-child {
            border-bottom: none;
        }

        .pricing-cell {
            padding: 15px;
            flex: 1;
            text-align: center;
        }

        .pricing-cell:first-child {
            flex: 2;
            text-align: right;
            background-color: #f8f9fa;
            font-weight: bold;
        }

        /* Brands Section */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .brand-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .brand-item img {
            width: 100%;
            max-width: 100px;
            height: auto;
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-item {
            background: white;
            margin-bottom: 10px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 20px;
            background-color: #1a5f7a;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background-color: #0f3443;
        }

        .faq-answer {
            padding: 20px;
            display: none;
            color: #666;
            line-height: 1.6;
        }

        .faq-answer.active {
            display: block;
        }

        /* Company Info */
        .company-info {
            background-color: #1a5f7a;
            color: white;
            padding: 60px 0;
        }

        .company-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .company-text h2 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 36px;
        }

        .company-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .features-list {
            list-style: none;
            margin-top: 20px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #ff9800;
        }

        .features-list li::before {
            content: '✓';
            color: #4caf50;
            font-weight: bold;
        }

        /* Contact Section */
        .contact-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .contact-item i {
            font-size: 40px;
            color: #ff9800;
            margin-bottom: 15px;
        }

        .contact-item h3 {
            color: #1a5f7a;
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background-color: #0f3443;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #ff9800;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: #ff9800;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #ff9800;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .company-content {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }

        .slide-up {
            animation: slideUp 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128c7e;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #1a5f7a;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            display: none;
            transition: all 0.3s;
        }

        .back-to-top:hover {
            background-color: #ff9800;
            transform: translateY(-5px);
        }
		/* منوی همبرگری */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        background-color: #0f3443;
        padding: 10px;
        border-radius: 8px;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
        text-align: center;
    }
}
/* اصلاح نمایش بخش‌های دارای تصویر و متن */
@media (max-width: 768px) {
    section.container > div[style*="grid-template-columns: 1fr 1fr"],
    section.container > div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    section.container > div img {
        order: 1;
        width: 100% !important;
        height: auto !important;
    }

    section.container > div p,
    section.container > div ul,
    section.container > div ol {
        order: 2;
    }
}
/* اصلاح نمایش سه بخش اصلی در حالت موبایل */
@media (max-width: 768px) {

    /* اهمیت سرویس دوره‌ای پکیج */
    section.container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    section.container > div[style*="grid-template-columns: 1fr 1fr"] img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    /* عوامل اصلی خرابی و نشانه‌های خرابی */
    section.container > div[style*="minmax(400px, 1fr)"],
    section.container > div[style*="minmax(300px, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    section.container > div > div {
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .problem-item, 
    .service-card-content, 
    .problem-item p, 
    .service-card p {
        text-align: justify !important;
    }
}/* End custom CSS */