.contact-hero {
    min-height: 52vh;
    background: linear-gradient(135deg, #1A1215 0%, #3B1A22 50%, #6B2D3E 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 110px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}
.contact-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201,83,106,0.15) 0%, transparent 50%);
}
.hero-text { position: relative; z-index: 2; color: #fff; text-align: right; }
.hero-text h1 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.hero-text p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 600px; line-height: 1.8; }

.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }

.info-sidebar { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: #fff; border: 1.5px solid rgba(201,83,106,0.1); border-radius: 20px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: all 0.3s ease; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,83,106,0.08); border-color: var(--primary); }
.info-icon { width: 54px; height: 54px; background: rgba(201,83,106,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #C9536A; flex-shrink: 0; }
.info-icon img{width: 55%;}
.info-content h3 { font-size: 17px; font-weight: 700; color: #1A1215; margin-bottom: 6px; }
.info-content p { font-size: 14px; color: #666; line-height: 1.6; }
.info-content a { color: #C9536A; text-decoration: none; font-weight: 600; }
.contact-form-wrap { background: #fff; border: 1.5px solid rgba(201, 83, 106, 0.1); border-radius: 24px; padding: 40px; }
.form-title { font-size: 22px; font-weight: 800; color: #1A1215; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; text-align: right; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 8px; }
.form-control {
    width: 100%; 
    padding: 12px 14px;                 
    background: var(--surface, #FBF4F5);  
    border: 1.5px solid var(--border, rgba(201,83,106,0.15)); 
    border-radius: 10px;                 
    color: var(--dark, #1A1215);
    font-family: 'Vazirmatn', sans-serif; 
    font-size: 14px;                     
    outline: none; 
    text-align: right;
    transition: all 0.2s ease;            
}
.form-control:hover { border-color: var(--primary-light, #F2A7B5); }
.form-control:focus { border-color: var(--primary, #C9536A); background: var(--white, #FFFFFF); box-shadow: 0 0 0 3px rgba(201,83,106,0.08); }
.form-control::placeholder { color: #C4A8AE; } 
textarea.form-control { resize: vertical; min-height: 140px; border-radius: 12px; }
        
.btn-submit { width: 100%; background: linear-gradient(135deg, #C9536A, #9B2C42); color: #fff; border: none; padding: 15px; border-radius: 12px; font-family: 'Vazirmatn', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s ease; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,83,106,0.25); }
.captcha-container {
  background: var(--surface, #FBF4F5);
  border: 1.5px solid rgba(201, 83, 106, 0.1);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  direction: rtl;
}

.captcha-label {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: #333;
  font-weight: 700;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.captcha-img {
  border: 1.5px solid rgba(201, 83, 106, 0.15);
  border-radius: 12px;
  background-color: var(--white, #fff);
  height: 46px;
  width: 140px;
  cursor: pointer;
  display: block;
}

.btn-refresh-captcha {
  background: var(--primary-pale);
  color: var(--primary-dark, #C9536A);
  border: 1.5px solid var(--primary-dark, #C9536A);
  border-radius: 30px; 
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Vazirmatn', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-refresh-captcha:hover {
  background: rgba(201, 83, 106, 0.08);
  transform: translateY(-1px);
}

.captcha-input { width: 100%; max-width: 200px; background: var(--white); color: var(--dark, #1A1215); border: 1.5px solid var(--border, rgba(201,83,106,0.15)); border-radius: 10px; padding: 11px 16px; font-size: 16px; font-family: 'Vazirmatn', sans-serif; outline: none; text-align: center; letter-spacing: 4px; display: block; transition: all 0.2s ease; } 
.captcha-input:hover { border-color: var(--primary-light, #F2A7B5); } 
.captcha-input:focus { border-color: var(--primary, #C9536A); background: var(--white, #FFFFFF); box-shadow: 0 0 0 3px rgba(201,83,106,0.08); } 
.captcha-hint { margin: 6px 0 0 0; font-size: 12px; color: var(--muted); }
.map-section { padding-bottom: 80px; }
.map-container { width: 100%; height: 400px; border-radius: 24px; overflow: hidden; border: 1.5px solid rgba(201,83,106,0.1); }
.map-container iframe { width: 100%; height: 100%; border: 0; }
/* SweetAlert RTL Fix */
.rtl-popup { direction: rtl !important; text-align: right !important; font-family: 'Vazirmatn', sans-serif !important; }
.swal2-styled.swal2-confirm, .swal2-title, .swal2-html-container { font-family: 'Vazirmatn', sans-serif !important; }
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-sidebar { order: 2; }
    .contact-form-wrap { order: 1; }
}