.contact-section {
  direction: rtl;
  font-family: "Tajawal", sans-serif;
  background: var(--cream);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  position: relative;
}
@media (max-width: 780px) {
  .contact-section {
    padding: 40px 20px;
  }
}

.section-content {
  max-width: 600px;
  text-align: right;
}

.section-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-navy);
  margin: 0 0 18px 0;
  line-height: 1.2;
}

@media (max-width: 780px) {
  .section-content h2 {
    font-size: 36px;
  }
}
.section-content h2 span {
  color: var(--gold);
}

.section-content p {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.9;
  margin: 0;
  font-weight: 500;
}
.contact-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(24, 41, 89, 0.13);
}

.info-side {
  background: var(--primary-color);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.info-side::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(249, 183, 31, 0.07);
  pointer-events: none;
}

.info-side::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(249, 183, 31, 0.05);
  pointer-events: none;
}

.info-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-heading {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.info-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
  line-height: 1.8;
}

.info-divider {
  width: 48px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0.7;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  margin-bottom: 12px;
  transition:
    background var(--main-transition),
    border-color var(--main-transition);
  cursor: default;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(249, 183, 31, 0.3);
}

.info-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(249, 183, 31, 0.15);
  border: 1px solid rgba(249, 183, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-wrap .svg-inline--fa {
  font-size: 16px;
  color: var(--secondary-color);
}

.info-card-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-card-value {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.form-side {
  background: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field-group {
  margin-bottom: 14px;
}

.field-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition:
    border-color var(--main-transition),
    background var(--main-transition),
    box-shadow var(--main-transition);
}

.field-group input::placeholder,
.field-group select::placeholder,
.field-group textarea::placeholder {
  color: #b0b0b0;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(24, 41, 89, 0.08);
}

.field-group textarea {
  resize: none;
  height: 110px;
}

.btn-send {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background var(--main-transition),
    transform 0.1s,
    box-shadow var(--main-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send:hover {
  background: #1e3472;
  box-shadow: 0 8px 24px rgba(24, 41, 89, 0.25);
}

.btn-send:active {
  transform: scale(0.98);
}
.btn-send i {
  font-size: 15px;
}

.btn-send .btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .info-side,
  .form-side {
    padding: 40px 28px;
  }
}

#form-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  display: none;
}
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
#form-alert.success {
  background: #eaf6ec;
  color: #1a7a30;
  border: 1px solid #b2dfbb;
}
#form-alert.error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}
.btn-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}
.form-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.form-alert--success {
  background: #e1f5ee;
  color: #0f6e56;
  border: 1px solid #5dcaa5;
}
.form-alert--error {
  background: #fcebeb;
  color: #a32d2d;
  border: 1px solid #f09595;
}

.field-error {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #c0392b;
  margin-top: 5px;
  min-height: 18px;
  line-height: 1.4;
}

.field-group input.is-invalid,
.field-group select.is-invalid,
.field-group textarea.is-invalid {
  border-color: #e74c3c;
  background: #fdf2f2;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-group input.is-invalid:focus,
.field-group select.is-invalid:focus,
.field-group textarea.is-invalid:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.18);
}

.btn-send.is-loading {
  pointer-events: none;
}

.btn-send.is-loading .fa-paper-plane {
  display: none;
}

.btn-send.is-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.field-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2345464d' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
  cursor: pointer;
}

.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-header h2 span {
  color: #946905;
}

.faq-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(24, 41, 89, 0.06);
  transition:
    box-shadow var(--main-transition),
    border-color var(--main-transition);
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 0 16px 16px 0;
  opacity: 0;
  transition: opacity var(--main-transition);
}

.faq-card:hover {
  box-shadow: 0 8px 32px rgba(24, 41, 89, 0.12);
  border-color: rgba(249, 183, 31, 0.35);
}

.faq-card:hover::before {
  opacity: 1;
}

.faq-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 780px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 56px 0;
  }
}
