/* Font Family */
.contact-section,
.contact-section *,
.contact-form-wrapper,
.contact-info-wrapper,
.form-control,
.form-label,
.btn-submit {
  font-family: 'Tajawal', Arial, Helvetica, sans-serif !important;
}

.contact-section {
    min-height: calc(100vh - 200px);
}

.section-title {
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
}

[dir="rtl"] .section-title::after {
  left: auto;
  right: 0;
}

/* Contact Information Styles */
.contact-info-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(10, 15, 60, 0.1);
  height: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(200, 160, 65, 0.2);
  transform: translateY(-2px);
}

.info-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: white;
  font-size: 36px;
  transition: transform var(--transition-normal) var(--easing);
}

.contact-info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-icon i {
  padding-right: 5px;
}

[dir="ltr"] .info-icon i {
  padding-right: 0;
  padding-left: 5px;
}

[dir="rtl"] .social-icon i{
    padding-right: 8px;
}

.info-content {
  flex: 1;
}

.info-label {
  color: var(--navy-blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-text {
  color: #666;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.info-text a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a.phone {
  direction: ltr !important;
  display: inline-block;
}

.info-text a:hover {
  color: var(--gold-primary);
}

/* Social Links */
.social-links h4 {
  color: var(--navy-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient) !important;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--navy-blue) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 4px 12px rgba(10, 15, 60, 0.3) !important;
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(10, 15, 60, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  color: var(--navy-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 160, 65, 0.1);
}

.form-control.error {
  border-color: #dc3545;
}

.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 160, 65, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.btn-submit {
  background: var(--gold-gradient);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 160, 65, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: none;
  animation: slideDown 0.3s ease;
}

.success-message.show {
  display: block;
}

/* Error Message */
.error-message-global {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: none;
  animation: slideDown 0.3s ease;
}

.error-message-global.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .info-item {
    gap: 1rem;
    padding: 1rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .info-label {
    font-size: 1rem;
  }

  .info-text {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Ensure sections never animate - only content inside */
section {
  opacity: 1 !important;
  transform: none !important;
}

section.animate-on-scroll,
section.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}