/* Start custom CSS for html, class: .elementor-element-e230b93 *//* General Body and Font Settings */
body {
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl; /* Right-to-Left for Persian */
  text-align: right;
  background-color: #f8f9fa; /* Light gray background */
  color: #343a40; /* Dark text color */
  margin: 0;
  padding: 0;
}

/* Container for content width */
.container {
  max-width: 1200px; /* Equivalent to max-w-5xl, adjust as needed */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px; /* px-4 */
  padding-right: 20px; /* px-4 */
}

/* Section Padding */
section {
  padding-top: 64px; /* py-16 */
  padding-bottom: 64px; /* py-16 */
}

/* Hero Section Styling */
.complaint-hero-section {
  background-image: url('https://bloomiran.com/wp-content/uploads/2025/07/your-complaint-hero-image.jpg'); /* REPLACE with your actual hero image URL */
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px; /* py-20 px-4 */
}

.complaint-hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* bg-black/50 */
  z-index: 0;
}

.complaint-hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 768px; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}

.complaint-hero-section h1 {
  font-size: 40px; /* text-4xl */
  font-weight: bold;
  margin-bottom: 16px; /* mb-4 */
}

.complaint-hero-section p {
  font-size: 18px; /* text-lg */
}

/* Responsive adjustments for hero */
@media (min-width: 768px) {
  .complaint-hero-section h1 {
    font-size: 56px; /* md:text-5xl */
  }
  .complaint-hero-section p {
    font-size: 20px; /* md:text-xl */
  }
}

/* Section Backgrounds */
.section-bg-light {
  background-color: #f2f5f7; /* bg-light-gray */
}

/* Section Titles */
.section-title {
  font-size: 36px; /* text-2xl */
  font-weight: bold;
  margin-bottom: 40px; /* mb-10 */
  color: #212529; /* Dark gray */
  text-align: center;
}

.section-title-white {
  color: #ffffff;
}

/* Form Section Styling */
.complaint-form-section .container {
  max-width: 768px; /* max-w-3xl for form content */
}

.form-container-wrapper {
  background-color: #ffffff;
  padding: 32px; /* p-8 */
  border-radius: 12px; /* rounded-lg */
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* shadow-lg */
}

.form-intro-text {
  color: #495057; /* text-gray-700 */
  line-height: 1.8;
  margin-bottom: 24px; /* mb-6 */
  text-align: center;
}

.complaint-form {
  display: flex;
  flex-direction: column;
  gap: 24px; /* space-y-6 */
}

.form-subsection-title {
  font-size: 20px; /* text-xl */
  font-weight: bold;
  color: #212529; /* text-gray-800 */
  margin-bottom: 16px; /* mb-4 */
  border-bottom: 1px solid #e2e8f0; /* border-b pb-2 */
  padding-bottom: 8px;
  padding-top: 24px; /* pt-6 */
}
.form-subsection-title:first-of-type {
  padding-top: 0; /* No top padding for the very first title */
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column */
  gap: 16px; /* gap-4 */
}
@media (min-width: 768px) {
  .form-group-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  color: #495057; /* text-gray-700 */
  font-size: 14px; /* text-sm */
  font-weight: bold;
  margin-bottom: 8px; /* mb-2 */
}

.required {
  color: #dc2626; /* text-red-500 */
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px; /* py-3 px-4 */
  border: 1px solid #cbd5e0; /* border-gray-400 */
  border-radius: 6px; /* rounded-md */
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 16px; /* text-base */
  color: #4a5568; /* text-gray-700 */
  transition: all 0.2s ease-in-out;
  appearance: none; /* Remove default arrow for select */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #3b82f6; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); /* blue-300 ring */
}

.form-field textarea {
  resize: vertical;
  min-height: 128px; /* rows-6 equivalent */
}

.file-input {
  padding: 8px 16px; /* Adjusted padding for file input */
}

.file-info {
  font-size: 12px; /* text-xs */
  color: #6c757d; /* text-gray-500 */
  margin-top: 4px; /* mt-1 */
}

/* Checkbox Styling */
.consent-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 24px; /* mt-6 */
}

.custom-checkbox {
  width: 20px; /* w-5 */
  height: 20px; /* h-5 */
  border: 1px solid #a0aec0; /* border-gray-400 */
  border-radius: 4px; /* rounded */
  appearance: none; /* Hide default checkbox */
  cursor: pointer;
  margin-left: 8px; /* ml-2 (for RTL) */
  flex-shrink: 0;
  position: relative;
  background-color: #ffffff;
  transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox:checked {
  background-color: #3b82f6; /* blue-500 */
  border-color: #3b82f6; /* blue-500 */
}

.custom-checkbox:checked::before {
  content: '\2713'; /* Checkmark character */
  display: block;
  color: white;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.consent-checkbox-wrapper label {
  color: #495057; /* text-gray-700 */
  font-size: 14px; /* text-sm */
}

.link-style {
  color: #3b82f6; /* blue-600 */
  text-decoration: underline;
  font-weight: 500; /* font-medium */
}

.link-style:hover {
  text-decoration: none;
}

/* Submit Button Styling */
.form-submit-button-wrapper {
  text-align: center; /* Centering the button */
  margin-top: 32px; /* mt-8 */
}

.submit-button {
  display: inline-flex; /* To align icon and text */
  align-items: center;
  justify-content: center;
  background-color: #22c55e; /* Green 600 */
  color: #ffffff;
  font-weight: bold;
  padding: 12px 32px; /* py-3 px-8 */
  border-radius: 9999px; /* rounded-full */
  font-size: 18px; /* text-lg */
  transition: background-color 0.3s ease-in-out, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
  border: none;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #16a34a; /* Green 700 */
  transform: translateY(-2px); /* Slight lift on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.submit-button .submit-icon {
  margin-left: 8px; /* Space between text and icon for RTL */
  font-size: 16px;
}

/* Support Contact Section (similar to previous landing pages) */
.support-contact-section {
  background-image: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d); /* Example gradient */
  color: #ffffff;
  padding: 64px 20px; /* py-16 px-4 */
  text-align: center;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
}

.support-contact-section .contact-info-content {
    max-width: 768px; /* max-w-3xl */
}

.section-description-white {
  font-size: 18px; /* text-lg */
  margin-bottom: 32px; /* mb-8 */
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px; /* space-y-4 */
}

.contact-item {
  font-size: 20px; /* text-2xl */
  font-weight: bold;
  margin-bottom: 0;
}

.contact-item .contact-icon {
  margin-left: 12px; /* mr-3 */
}

.contact-item .link-white {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.contact-item .link-white:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Responsive Adjustments (General) */
@media (max-width: 767px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .complaint-hero-section h1 {
    font-size: 32px;
  }
  .complaint-hero-section p {
    font-size: 16px;
  }
  .form-container-wrapper {
    padding: 24px;
  }
  .form-subsection-title {
    font-size: 18px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 10px 12px;
    font-size: 15px;
  }
  .file-info {
    font-size: 11px;
  }
  .submit-button {
    font-size: 16px;
    padding: 12px 24px;
  }
  .contact-item {
    font-size: 18px;
  }
  .section-description-white {
    font-size: 16px;
  }
}/* End custom CSS */