.elementor-33 .elementor-element.elementor-element-6da29fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ===== متغیرهای رنگ و فونت ===== */
    :root {
      --primary-color: #1e88e5;
      --primary-dark: #1565c0;
      --secondary-color: #00acc1;
      --accent-color: #ff6f00;
      --success-color: #43a047;
      --warning-color: #ffa000;
      --text-dark: #2c3e50;
      --text-light: #607d8b;
      --bg-light: #f5f7fa;
      --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --card-shadow: 0 10px 40px rgba(0,0,0,0.1);
      --border-radius: 16px;
    }

    /* ===== استایل‌های پایه ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Vazirmatn', 'Tahoma', sans-serif;
      line-height: 1.8;
      color: var(--text-dark);
      background: var(--bg-light);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* ===== هدر اصلی ===== */
    .hero-header {
      background: var(--bg-gradient);
      color: white;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0 0 50px 50px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .hero-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .hero-header h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.95rem;
      backdrop-filter: blur(10px);
      position: relative;
      z-index: 1;
    }

    /* ===== کارت‌های محتوا ===== */
    .content-card {
      background: white;
      border-radius: var(--border-radius);
      padding: 35px;
      margin-bottom: 30px;
      box-shadow: var(--card-shadow);
      transition: transform 0.3s ease;
    }

    .content-card:hover {
      transform: translateY(-5px);
    }

    /* ===== عناوین ===== */
    h2 {
      color: var(--primary-dark);
      font-size: 1.7rem;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--primary-color);
      display: inline-block;
    }

    h3 {
      color: var(--secondary-color);
      font-size: 1.4rem;
      margin: 25px 0 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    h3::before {
      content: '◆';
      color: var(--accent-color);
      font-size: 0.8rem;
    }

    /* ===== پاراگراف‌ها ===== */
    p {
      margin-bottom: 18px;
      text-align: justify;
      color: var(--text-dark);
    }

    /* ===== لینک‌ها ===== */
    a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      border-bottom: 2px solid transparent;
    }

    a:hover {
      color: var(--primary-dark);
      border-bottom-color: var(--primary-color);
    }

    /* ===== تصاویر ===== */
    .image-container {
      margin: 30px 0;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }

    .image-container img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .image-container:hover img {
      transform: scale(1.03);
    }

    /* ===== باکس مزایا ===== */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }

    .benefit-item {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      padding: 20px 25px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: all 0.3s ease;
      border-right: 4px solid var(--primary-color);
    }

    .benefit-item:hover {
      transform: translateX(-5px);
      box-shadow: 0 5px 20px rgba(30, 136, 229, 0.2);
    }

    .benefit-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    /* ===== جدول قیمت ===== */
    .price-table-container {
      overflow-x: auto;
      margin: 30px 0;
      border-radius: var(--border-radius);
      box-shadow: var(--card-shadow);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: white;
    }

    thead {
      background: var(--bg-gradient);
      color: white;
    }

    th, td {
      padding: 18px 25px;
      text-align: right;
    }

    th {
      font-weight: 600;
      font-size: 1.1rem;
    }

    tbody tr {
      border-bottom: 1px solid #e0e0e0;
      transition: background 0.3s ease;
    }

    tbody tr:hover {
      background: #f5f5f5;
    }

    tbody tr:nth-child(even) {
      background: #fafafa;
    }

    tbody tr:nth-child(even):hover {
      background: #f0f0f0;
    }

    td:last-child {
      color: var(--success-color);
      font-weight: 700;
      direction: ltr;
      text-align: center;
    }

    /* ===== لیست برندها ===== */
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin: 25px 0;
    }

    .brand-item {
      background: white;
      padding: 15px 20px;
      border-radius: 10px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
    }

    .brand-item:hover {
      background: var(--primary-color);
      color: white;
      transform: scale(1.02);
    }

    .brand-item::before {
      content: '✓';
      width: 25px;
      height: 25px;
      background: var(--success-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex-shrink: 0;
    }

    /* ===== لیست علائم خرابی ===== */
    .warning-list {
      list-style: none;
      padding: 0;
    }

    .warning-list li {
      padding: 15px 20px;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
      border-radius: 10px;
      border-right: 4px solid var(--warning-color);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .warning-list li::before {
      content: '⚠️';
      font-size: 1.3rem;
    }

    /* ===== بخش سوالات متداول ===== */
    .faq-section {
      background: white;
      border-radius: var(--border-radius);
      padding: 35px;
      margin: 40px 0;
      box-shadow: var(--card-shadow);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 35px;
    }

    .faq-header h2 {
      display: inline-block;
      background: var(--bg-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      border-bottom: none;
      font-size: 2rem;
    }

    .faq-header p {
      color: var(--text-light);
      text-align: center;
    }

    .faq-item {
      margin-bottom: 15px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--primary-color);
      box-shadow: 0 5px 20px rgba(30, 136, 229, 0.15);
    }

    .faq-question {
      width: 100%;
      padding: 20px 25px;
      background: #f8f9fa;
      border: none;
      text-align: right;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .faq-question:hover {
      background: #e3f2fd;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--primary-color);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-item.active .faq-question {
      background: var(--primary-color);
      color: white;
    }

    .faq-item.active .faq-question::after {
      color: white;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background: white;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 25px;
    }

    .faq-answer p {
      margin: 0;
      color: var(--text-light);
      line-height: 1.9;
    }

    /* ===== باکس تماس ===== */
    .contact-box {
      background: var(--bg-gradient);
      color: white;
      border-radius: var(--border-radius);
      padding: 40px;
      margin: 40px 0;
      text-align: center;
    }

    .contact-box h3 {
      color: white;
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

    .contact-box h3::before {
      content: '📞';
      color: white;
    }

    .contact-numbers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 25px;
    }

    .contact-number {
      background: rgba(255,255,255,0.2);
      padding: 15px 30px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      font-size: 1.2rem;
      font-weight: 700;
      direction: ltr;
      transition: all 0.3s ease;
    }

    .contact-number:hover {
      background: white;
      color: var(--primary-dark);
      transform: scale(1.05);
    }

    .contact-label {
      display: block;
      font-size: 0.85rem;
      opacity: 0.9;
      margin-bottom: 5px;
      font-weight: normal;
    }

    /* ===== اطلاعات تماس با آیکون ===== */
    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .contact-info-item {
      background: rgba(255,255,255,0.15);
      padding: 20px;
      border-radius: 15px;
      text-align: center;
    }

    .contact-info-item span {
      display: block;
      font-size: 0.9rem;
      opacity: 0.85;
      margin-bottom: 8px;
    }

    .contact-info-item strong {
      font-size: 1.1rem;
      direction: ltr;
      display: inline-block;
    }

    /* ===== باکس ویژه ===== */
    .highlight-box {
      background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
      border-radius: 15px;
      padding: 25px 30px;
      margin: 25px 0;
      border-right: 5px solid var(--success-color);
    }

    .highlight-box p {
      margin: 0;
    }

    /* ===== ریسپانسیو ===== */
    @media (max-width: 768px) {
      .hero-header h1 {
        font-size: 1.8rem;
      }

      .content-card {
        padding: 25px 20px;
      }

      h2 {
        font-size: 1.4rem;
      }

      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .contact-numbers {
        flex-direction: column;
        align-items: center;
      }

      th, td {
        padding: 12px 15px;
        font-size: 0.9rem;
      }
    }/* End custom CSS */