/* الهيدر */
.contact-header {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.header-content {
  position: relative;
  z-index: 1;
}

/* قسم الاتصال الرئيسي */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-container {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

/* نموذج الاتصال */
.contact-form {
  padding: 3rem;
}

.form-title {
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select,
.form-textarea {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(196, 43, 41, 0.1);
  outline: none;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .form-control {
  padding-right: 3rem;
}

.form-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

/* معلومات الاتصال */
.contact-info {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  height: 100%;
}

.info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.contact-icon {
  background: var(--brand-accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0.2rem;
  opacity: 0.9;
}

/* قسم الخريطة والموقع */
.map-section {
  padding: 3rem 0;
  background: white;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* قسم الأسئلة الشائعة */
.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-title {
  color: var(--brand-primary);
  border-bottom: 3px solid var(--brand-accent);
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 50%;
  height: 2px;
  background: var(--brand-accent);
}

.accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 12px !important;
  text-align: start;
  display: flex;
  position: relative;
}
.accordion-button::after {
  position: absolute;
  left: 30px;
}

.accordion-button:not(.collapsed) {
  background: var(--brand-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background: #f8f9fa;
  color: var(--text-dark);
  line-height: 1.7;
}

textarea.form-control {
  min-height: 200px;
}
/* قسم وسائل التواصل الاجتماعي */
.social-section {
  padding: 3rem 0;
  background: white;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(196, 43, 41, 0.3);
  color: white;
}
