.elementor-1743 .elementor-element.elementor-element-671113a{--display:flex;}.elementor-1743 .elementor-element.elementor-element-8ea550d > .elementor-widget-container{margin:20px 0px 0px 0px;}.elementor-1743 .elementor-element.elementor-element-8ea550d{font-family:"IRANSans", Sans-serif;font-weight:300;color:#7A7A7A;}.elementor-1743 .elementor-element.elementor-element-2305ce4{--display:flex;}:root {
  --gn-main-bg: #ffffff;
  --gn-card-bg: #ffffff;
  --gn-text-h: #171717;
  --gn-text-p: #5d5d5d;
  --gn-accent: #ff2d55;
  --gn-border: rgba(255, 45, 85, 0.1);
  /* گرادینت سمت چپ (عریض) */
  --gn-glow-l: radial-gradient(circle at -10% 20%, rgba(255, 45, 85, 0.18) 0%, transparent 60%);
  /* گرادینت سمت راست (ظریف) */
  --gn-glow-r: radial-gradient(circle at 110% 80%, rgba(255, 45, 85, 0.1) 0%, transparent 40%);
}

body.dark_mode .gn-contact-box {
  --gn-main-bg: #141414;
  --gn-card-bg: #1e1e1e;
  --gn-text-h: #ffffff;
  --gn-text-p: #b0b0b0;
  --gn-border: rgba(255, 45, 85, 0.2);
  --gn-glow-l: radial-gradient(circle at -10% 20%, rgba(255, 45, 85, 0.25) 0%, transparent 65%);
  --gn-glow-r: radial-gradient(circle at 110% 80%, rgba(255, 45, 85, 0.15) 0%, transparent 45%);
}

.gn-contact-box {
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  border-radius: 35px;
  background-color: var(--gn-main-bg);
  border: 1px solid var(--gn-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.04);
  z-index: 1;
}

/* ایجاد لایه‌های گرادینت */
.gn-bg-glow-left, .gn-bg-glow-right {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.gn-bg-glow-left { background: var(--gn-glow-l); }
.gn-bg-glow-right { background: var(--gn-glow-r); }

.gn-contact-content { position: relative; z-index: 2; }

/* نشان پشتیبانی */
.gn-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 45, 85, 0.08);
  border-radius: 50px;
  color: var(--gn-accent);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 25px;
}

.gn-pulse-dot {
  width: 9px; height: 9px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(46, 204, 113, 0); }
  100% { transform: scale(0.9); }
}

.gn-contact-box h2 {
  color: var(--gn-text-h) !important;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900; margin: 0 0 20px 0;
}

.gn-contact-lead { color: var(--gn-text-h); font-weight: 700; margin-bottom: 12px; font-size: 17px; line-height: 1.6; }
.gn-contact-subtext { color: var(--gn-text-p); font-size: 14px; margin-bottom: 40px; }

/* گرید کارت‌ها */
.gn-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gn-contact-card {
  text-decoration: none !important;
  background: var(--gn-card-bg);
  border: 1px solid var(--gn-border);
  border-radius: 26px;
  padding: 24px;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gn-contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--gn-accent);
  box-shadow: 0 20px 45px rgba(255, 45, 85, 0.14);
}

.gn-card-body {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.gn-card-info { flex-grow: 1; text-align: right; }
.gn-card-info strong { display: block; color: var(--gn-text-h); font-size: 15px; margin-bottom: 5px; font-weight: 800; }
.gn-card-info small { color: var(--gn-text-p); font-size: 13px; }

.gn-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gn-accent), #ff5e78);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff !important;
  box-shadow: 0 10px 25px rgba(255, 45, 85, 0.3);
  flex-shrink: 0;
}

.gn-ltr-text { direction: ltr; display: inline-block; font-family: 'Segoe UI', Tahoma, sans-serif; }

.gn-contact-note {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 45, 85, 0.03);
  border: 1.5px dashed var(--gn-border);
  color: var(--gn-text-p);
  font-size: 14px;
  line-height: 2;
}

/* بهینه‌سازی اختصاصی برای موبایل */
@media (max-width: 1024px) {
  .gn-contact-methods { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .gn-contact-box { padding: 40px 20px; text-align: center; }
  .gn-contact-methods { grid-template-columns: 1fr; gap: 15px; }
  .gn-contact-badge { margin: 0 auto 20px; }
  .gn-card-info { text-align: right; }
  .gn-contact-note { text-align: justify; }
  .gn-bg-glow-right { display: none; } /* حذف گرادینت دوم در موبایل برای شلوغ نشدن */
}
/* تنظیمات کلی فرم Contact Form 7 */
.wpcf7 {
  direction: rtl;
  font-family: inherit;
}

.wpcf7 form {
  display: grid;
  gap: 20px; /* فاصله بیشتر برای دلباز شدن فرم */
}

/* استایل پیشرفته فیلدها */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  /* ظاهر خفن: بوردر بسیار کمرنگ و پس‌زمینه متمایل به خاکستری خیلی روشن */
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fdfdfd;
  color: #222;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* معجزه جهت متن: خودکار بر اساس زبان */
  unicode-bidi: plaintext;
  text-align: start;
  direction: rtl; 
}

/* استایل مخصوص متون داخل فیلد در حالت Dark Mode سایت */
body.dark_mode .wpcf7 input, 
body.dark_mode .wpcf7 textarea {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.05);
  color: #eee;
}

.wpcf7 textarea {
  min-height: 160px;
  padding-top: 18px;
  resize: vertical;
}

/* افکت فوکوس خیره‌کننده */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  background: #fff;
  border-color: #ff2d55;
  /* ایجاد هاله نوری دور کادر */
  box-shadow: 0 0 0 4px rgba(255, 45, 85, 0.1), 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

body.dark_mode .wpcf7 input:focus {
  background: #252525;
}

/* استایل Placeholder */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
  text-align: right; /* نگه داشتن راهنما در سمت راست */
  direction: rtl;
}

/* دکمه ارسال پیام با استایل گیم‌ناب */
.wpcf7 input[type="submit"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 40px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff2d55 0%, #ff5e78 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 45, 85, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  width: fit-content;
  justify-self: end; /* دکمه برود سمت چپ (در حالت RTL یعنی انتهای فرم) */
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 45, 85, 0.45);
  filter: brightness(1.1);
}

.wpcf7 input[type="submit"]:active {
  transform: translateY(0);
}

/* پیغام‌های خطا و تایید */
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ff2d55;
  font-size: 12px;
  font-weight: bold;
}

.wpcf7-response-output {
  border-radius: 16px !important;
  border: 2px solid #ff2d55 !important;
  background: rgba(255, 45, 85, 0.05) !important;
  color: var(--gn-text-p) !important;
  padding: 15px !important;
  margin-top: 20px !important;
  text-align: center;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .wpcf7 input[type="submit"] {
    width: 100%; /* در موبایل دکمه تمام عرض شود */
  }
}