@font-face {
  font-family: "Vazirmatn";
  src: url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn-font@v33.003/fonts/webfonts/Vazirmatn-FD-Regular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* downloaded from https://rokaweb.ir */
@font-face {
	font-family: "Yekan";
	src: url( '../fonts/Yekan.eot' );
	src: url( '../fonts/Yekan.eot' ) format( 'embedded-opentype' ),
		url( '../fonts/Yekan.woff2' ) format( 'woff2' ),
		url( '../fonts/Yekan.woff' ) format( 'woff' ),
		url( '../fonts/Yekan.ttf' ) format( 'truetype' );
		/* url( '../fonts/' ) format( 'svg' ) */
	font-weight: normal;
	font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: green; */
}

/* :root {
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --primary-white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #495057;
  --border-gray: #dee2e6;
  --accent-gray: #868e96;
} */

/* RTL Support */
body {
  direction: rtl;
  text-align: right;
  font-family:"Yekan", "Vazir", "Iran Sans", Tahoma, Arial, sans-serif;
}

:root {
  --primary-black: #1a1a1a;
  --secondary-black: #2d2d2d;
  --primary-white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #495057;
  --border-gray: #dee2e6;
}

/* Contact Hero Section */
.contact-section-11 {
  margin: 100px 0;
  padding: 80px 0;
  background-color: var(--off-white);
  position: relative;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section-11-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.contact-section-11-container h6 {
  font-size: 0.9rem;
  color: var(--medium-gray);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.contact-section-11-container h2 {
  font-size: 4rem;
  color: var(--primary-black);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -2px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.contact-section-11-container-button {
  background: transparent;
  border: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1.2s forwards,
    pulse 2s ease-in-out 2s infinite;
}

.contact-section-11-container-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--primary-black);
  border-radius: 50%; /* ✅ اضافه کردن border-radius */
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contact-section-11-container-button:hover::before {
  width: 100%;
  height: 100%;
}

.contact-section-11-container-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
}

.contact-section-11-container-button i {
  font-size: 48px;
  color: var(--primary-black);
  background: transparent !important; /* ✅ حذف بک‌گراند */
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: flex; /* ✅ برای center کردن */
  align-items: center; /* ✅ برای center کردن */
  justify-content: center; /* ✅ برای center کردن */
  line-height: 1; /* ✅ حذف line-height قبلی */
  width: 100%; /* ✅ تمام عرض */
  height: 100%; /* ✅ تمام ارتفاع */
}

.contact-section-11-container-button:hover i {
  color: var(--primary-white);
  font-weight: bold;
}

.contact-section-11-container-button a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 3;
}

/* ✅ اضافه کردن استایل برای Bootstrap Icons */
.contact-section-11-container-button i::before {
  background: transparent !important;
  color: inherit !important;
}

/* RTL Support */
body[dir="rtl"] .contact-section-11-container h6 {
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section-11 {
    margin: 80px 0;
    padding: 60px 0;
    min-height: 300px;
  }

  .contact-section-11-container {
    padding: 0 15px;
  }

  .contact-section-11-container h6 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .contact-section-11-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: -1px;
  }

  .contact-section-11-container-button {
    width: 50px;
    height: 50px;
  }

  .contact-section-11-container-button i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .contact-section-11 {
    margin: 60px 0;
    padding: 40px 0;
  }

  .contact-section-11-container h6 {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .contact-section-11-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
  }

  .contact-section-11-container-button {
    width: 45px;
    height: 45px;
  }

  .contact-section-11-container-button i {
    font-size: 18px;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Additional Hover Effect for Button */
.contact-section-11-container-button:active {
  transform: translateY(-2px) scale(0.95);
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Contact Section Styles */
.us-contact2{
  width: 100%;
  padding: 100px 0;
  /* padding-top: 140px; */
  background-color: var(--off-white);
  position: relative;
  /* margin: 40px auto; */
  /* margin-bottom: 1000px; */
}

.contact-main-container55 {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 20px;
}

.contact-content-wrapper55 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--primary-white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.1);
  overflow: hidden;
  min-height: 500px;
}

/* Video Section */
.contact-video-section55 {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.contact-video55 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.contact-video55:hover {
  transform: scale(1.05);
}

/* Info Section */
.contact-info-section55 {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 500px;
}

.contact-info-content55 {
  flex: 1;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  /* align-items: end; */
}

.contact-title55 {
  align-self: start;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 15px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  direction: ltr;
}

.contact-subtitle55 {
  align-self: start;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.contact-brand55 {
  align-self: start;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 30px;
  font-style: italic;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.contact-address55,
.contact-email55,
.contact-phone55 {
  align-self: start;
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact-address55 {
  animation-delay: 0.9s;
  /* margin-left: auto; */
}

.contact-email55 {
  animation-delay: 1.1s;
  color: var(--primary-black);
  font-weight: 500;
}

.contact-phone55 {
  animation-delay: 1.3s;
  font-weight: 500;
}

/* Social Media */
.social-media55 {
  /* align-self: start; */
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.social-link55 {
  width: 45px;
  height: 45px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link55::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--primary-black);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.social-link55:hover::before {
  width: 100%;
  height: 100%;
}

.social-link55 i {
  font-size: 20px;
  color: var(--medium-gray);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.social-link55:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.social-link55:hover i {
  color: var(--primary-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content-wrapper55 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-video-section55 {
    min-height: 300px;
  }

  .contact-info-section55 {
    padding: 40px 30px;
    min-height: auto;
  }

  .contact-title55 {
    font-size: 2rem;
  }

  .contact-subtitle55 {
    font-size: 1.1rem;
  }

  .social-media55 {
    gap: 12px;
    justify-content: center;
  }

  .social-link55 {
    width: 40px;
    height: 40px;
  }

  .social-link55 i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .us-contact2 {
    padding: 60px 0;
  }

  .contact-main-container55 {
    padding: 0 15px;
  }

  .contact-info-section55 {
    padding: 30px 20px;
  }

  .contact-title55 {
    font-size: 1.8rem;
  }

  .contact-address55,
  .contact-email55,
  .contact-phone55 {
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: inherit;
}


.picture-container-20{
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 50px 0;
}

.picture-20{
  width: 100%;
  height: 90vh;
  margin: 100px 0;
  /* background-color: #2d2d2d; */
  background: url(../images/About-11.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
}

.picture-20 p{
  position: absolute;
  padding: 50px;
  top: 50%;
  left: 50%;
  max-width: 60vw;
  text-align: center;
  transform: translate(-50% , -50%);
  font-size: 20px;
  font-weight: bold;
  color: whitesmoke;
  line-height: 2;
  
  background: transparent; /* بک‌گراند شفاف */
  backdrop-filter: blur(1px);
  background-blend-mode: hard-light;
  border-radius: 24px;
  border: 2px solid transparent; /* border شفاف اولیه */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  
}




/* 📱 RESPONSIVE - فقط افزایش عرض، حفظ فونت */

/* تبلت */
@media (max-width: 1024px) {
  .picture-container-20 {
    padding: 40px 0;
  }

  .picture-20 {
    height: 80vh;
    margin: 80px 0;
  }

  .picture-20 p {
    width: 90vw; /* ✅ افزایش عرض */
    padding: 30px;
    font-size: 20px; /* ✅ حفظ فونت */
  }
}

/* موبایل بزرگ */
@media (max-width: 768px) {
  .picture-container-20 {
    padding: 30px 0;
  }

  .picture-20 {
    height: 70vh;
    margin: 60px 0;
    background-attachment: scroll;
  }

  .picture-20 p {
    max-width: 75vw; /* ✅ افزایش عرض */
    padding: 40px;
    font-size: 20px; /* ✅ حفظ فونت */
    line-height: 1.7;
    border-radius: 20px;
  }
}

/* موبایل متوسط */
@media (max-width: 576px) {
  .picture-container-20 {
    padding: 20px 0;
  }

  .picture-20 {
    height: 60vh;
    margin: 40px 0;
    background-attachment: scroll;
  }

  .picture-20 p {
    /* max-width: 85vw; ✅ افزایش عرض */
    width: 100%;
    padding: 35px;
    font-size: 15px; /* ✅ حفظ فونت */
    line-height: 1.8;
    border-radius: 18px;
    backdrop-filter: blur(2px);
  }
}

/* موبایل کوچک */
@media (max-width: 480px) {
  .picture-20 {
    height: 50vh;
    margin: 30px 0;
  }

  .picture-20 p {
    /* max-width: 90vw; ✅ افزایش عرض */
    width: 100%;
    padding: 30px 25px;
    font-size: 18px; /* ✅ کمی کوچکتر فقط برای موبایل کوچک */
    line-height: 1.9;
    border-radius: 16px;
  }
}

/* موبایل خیلی کوچک */
@media (max-width: 360px) {
  .picture-20 {
    height: 45vh;
    margin: 20px 0;
  }

  .picture-20 p {
    /* max-width: 95vw; ✅ حداکثر عرض */
    width: 100%;
    padding: 25px 20px;
    font-size: 16px; /* ✅ حداقل کاهش فونت */
    line-height: 2;
    border-radius: 14px;
  }
}

/* حالت landscape موبایل */
@media (max-height: 500px) and (orientation: landscape) {
  .picture-20 {
    height: 80vh;
  }
  
  .picture-20 p {
    /* max-width: 70vw; */
    width: 100%;

    font-size: 18px;
  }
}



















/* کانتینر اصلی */
      .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
      }

      /* Row برای layout */
      .contact-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
      }

      /* ستون‌ها */
      .contact-col {
        flex: 1;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }

      .col-inner {
        padding: 30px;
      }

      /* استایل متن هدر */
      .contact-header {
        text-align: center;
        margin-bottom: 30px;
      }

      .contact-header h2 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .contact-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
        margin: 0;
      }

      /* استایل فرم */
      .form-container {
        background: #fff;
      }

      .jotform-iframe {
        width: 100%;
        min-height: 600px;
        border: none;
        border-radius: 8px;
        background: #f8f9fa;
      }

      /* پیوند حریم خصوصی */
      .privacy-notice {
        margin-top: 20px;
        padding: 15px;
        background: #e8f4f8;
        border-radius: 8px;
        font-size: 0.9rem;
        text-align: center;
        color: #2c3e50;
      }

      .privacy-notice a {
        /* color: #3498db; */
        color: gold;
        text-decoration: none;
        font-weight: 500;
      }

      .privacy-notice a:hover {
        text-decoration: underline;
      }

      /* استایل نقشه */
      .map-container {
        background: #fff;
      }

      .map-gap {
        height: 45px;
      }

      .map-iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      /* رسپانسیو - دسکتاپ (768px+) */
      @media (min-width: 768px) {
        .contact-row {
          flex-direction: row;
          align-items: flex-start;
        }

        .contact-col {
          flex: 1;
          max-width: calc(50% - 15px);
        }

        .contact-header {
          text-align: right;
        }
      }

      /* تبلت */
      @media (max-width: 767px) {
        .contact-container {
          padding: 15px;
        }

        .col-inner {
          padding: 20px;
        }

        .contact-header h2 {
          font-size: 1.7rem;
        }

        .contact-header p {
          font-size: 1rem;
        }

        .map-iframe {
          height: 350px;
        }

        .map-gap {
          height: 25px;
        }
      }

      /* موبایل */
      @media (max-width: 480px) {
        .contact-container {
          padding: 10px;
        }

        .col-inner {
          padding: 15px;
        }

        .contact-header h2 {
          font-size: 1.5rem;
        }

        .contact-header p {
          font-size: 0.95rem;
        }

        .map-iframe {
          height: 300px;
        }

        .jotform-iframe {
          min-height: 500px;
        }

        .privacy-notice {
          font-size: 0.8rem;
          padding: 12px;
        }
      }

      /* انیمیشن ورود */
      .contact-col {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
      }

      .contact-col:nth-child(2) {
        animation-delay: 0.2s;
      }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* بهبود هاور برای دسکتاپ */
      @media (min-width: 768px) {
        .contact-col:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          transition: all 0.3s ease;
        }
      }

      /* فوکوس برای iframe */
      .jotform-iframe:focus,
      .map-iframe:focus {
        outline: 2px solid #3498db;
        outline-offset: 2px;
      }

      /* استایل فرم تماس فارسی */
      .contact-form-wrapper {
        width: 100%;
        margin: 0 auto;
      }

      .persian-contact-form {
        width: 100%;
        max-width: 100%;
      }

      /* استایل گروه‌های فرم */
      .form-group {
        margin-bottom: 20px;
        position: relative;
      }

      /* استایل لیبل‌ها */
      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #2c3e50;
        font-size: 14px;
        text-align: right;
      }

      /* استایل اینپوت‌ها */
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 14px;
        font-family: inherit;
        transition: all 0.3s ease;
        background-color: #fff;
        direction: rtl;
        text-align: right;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none !important;
        border-color: var(--dark-gray);
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        background-color: #fafbfc;
      }

      /* استایل placeholder */
      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: #95a5a6;
        font-size: 13px;
      }

      /* استایل textarea */
      .form-group textarea {
        resize: vertical;
        min-height: 100px;
        line-height: 1.5;
      }

      /* استایل دکمه ارسال */
      .submit-button {
        width: 100%;
        padding: 14px 24px;
        /* background: linear-gradient(135deg, #3498db, #2980b9); */
        background: linear-gradient(135deg , var(--secondary-black) , var(--dark-gray));
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .submit-button:hover {
        /* background: linear-gradient(135deg, #2980b9, #1f618d); */
        background: linear-gradient(var(--secondary-black) , var(--dark-gray));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
      }

      .submit-button:active {
        transform: translateY(0);
      }

      .submit-button:disabled {
        cursor: not-allowed;
        opacity: 0.7;
        transform: none;
      }

      /* استایل حالت لودینگ */
      .submit-button.loading {
        pointer-events: none;
        position: relative;
      }

      .btn-loading {
        display: none;
        font-size: 14px;
      }

      .submit-button.loading .btn-loading {
        display: inline-block;
        animation: pulse 1.5s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.5;
        }
      }

      /* استایل پیام موفقیت */
      .success-message {
        margin-top: 20px;
        padding: 15px 20px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        font-size: 14px;
        animation: slideInUp 0.5s ease-out;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
      }

      @keyframes slideInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* استایل پیام خطا */
      .error-message {
        display: block;
        margin-top: 6px;
        color: #e74c3c;
        font-size: 12px;
        text-align: right;
        font-weight: 400;
      }

      /* استایل اینپوت در حالت خطا */
      .form-group input.error,
      .form-group textarea.error {
        border-color: #e74c3c;
        background-color: #fdf2f2;
      }

      /* استایل‌های ریسپانسیو */
      @media (max-width: 768px) {
        .form-group {
          margin-bottom: 16px;
        }

        .form-group input,
        .form-group textarea {
          padding: 10px 14px;
          font-size: 16px; /* جلوگیری از زوم در iOS */
        }

        .submit-button {
          padding: 12px 20px;
          font-size: 15px;
        }

        .contact-form-wrapper {
          padding: 0 5px;
        }
      }

      @media (max-width: 480px) {
        .form-group input,
        .form-group textarea {
          padding: 8px 12px;
        }

        .submit-button {
          padding: 10px 16px;
          font-size: 14px;
        }

        .form-group label {
          font-size: 13px;
        }
      }

      /* بهبود دسترسی */
      .form-group input:focus,
      .form-group textarea:focus {
        outline: 2px solid #3498db;
        outline-offset: 2px;
      }

      /* استایل برای فیلدهای اجباری */
      .form-group label::after {
        content: "";
      }

      .form-group:has(input[required]) label::after,
      .form-group:has(textarea[required]) label::after {
        content: " *";
        color: #e74c3c;
        font-weight: bold;
      }

      /* انیمیشن ورود فرم */
      .persian-contact-form {
        animation: fadeIn 0.6s ease-out;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* استایل فوکوس برای دسترسی بهتر */
      .submit-button:focus {
        outline: 2px solid #3498db;
        outline-offset: 2px;
      }

      /* استایل مخصوص RTL */
      .persian-contact-form {
        direction: rtl;
        text-align: right;
      }

      /* بهبود استایل در مرورگرهای مختلف */
      .form-group input,
      .form-group textarea {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }

      .form-group input[type="email"]:invalid {
        box-shadow: none;
      }

      .form-group input[type="tel"]:invalid {
        box-shadow: none;
      }