/* ACUSA Contact Form v1.0.0 */
.acusa-contact-page {
  --acusa-contact-bg: #f7f3ea;
  --acusa-contact-surface: #fffaf0;
  --acusa-contact-white: #ffffff;
  --acusa-contact-ink: #17231e;
  --acusa-contact-muted: #5f6b62;
  --acusa-contact-green: #0e3b2e;
  --acusa-contact-navy: #0b2239;
  --acusa-contact-gold: #d9a441;
  --acusa-contact-red: #b23a2f;
  --acusa-contact-border: rgba(20, 43, 35, .13);
  direction: rtl;
  color: var(--acusa-contact-ink);
  max-width: 1180px;
  margin: 0 auto 54px;
}

.acusa-contact-page * {
  box-sizing: border-box;
}

.acusa-contact-intro,
.acusa-contact-shell,
.acusa-contact-note {
  border: 1px solid var(--acusa-contact-border);
  border-radius: 28px;
  background: var(--acusa-contact-surface);
  box-shadow: 0 14px 40px rgba(24, 44, 38, .07);
}

.acusa-contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, .95fr);
  gap: 20px;
  align-items: stretch;
  padding: 24px;
  margin-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,240,.96)),
    var(--acusa-contact-surface);
}

.acusa-contact-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(14, 59, 46, .16);
  background: rgba(14, 59, 46, .08);
  color: var(--acusa-contact-green);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.4;
}

.acusa-contact-intro h2,
.acusa-contact-side h2 {
  margin: 13px 0 10px;
  color: var(--acusa-contact-ink);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.38;
  letter-spacing: -.015em;
}

.acusa-contact-intro p,
.acusa-contact-side p,
.acusa-contact-side li,
.acusa-contact-note {
  color: var(--acusa-contact-muted);
  line-height: 1.95;
  font-size: 1rem;
}

.acusa-contact-facts {
  display: grid;
  gap: 12px;
}

.acusa-contact-facts > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 43, 35, .12);
  border-radius: 20px;
  background: #fff;
}

.acusa-contact-facts strong {
  color: var(--acusa-contact-green);
  font-size: 1rem;
}

.acusa-contact-facts span {
  color: var(--acusa-contact-muted);
  font-size: .94rem;
  line-height: 1.7;
}

.acusa-contact-shell {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  gap: 22px;
  padding: 24px;
  margin-bottom: 18px;
}

.acusa-contact-side {
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 164, 65, .18), transparent 32%),
    linear-gradient(135deg, #0e3b2e, #123f59);
  color: #fff;
}

.acusa-contact-side .acusa-contact-kicker {
  color: #ffe2a1;
  border-color: rgba(217, 164, 65, .42);
  background: rgba(217, 164, 65, .14);
}

.acusa-contact-side h2 {
  color: #fff;
}

.acusa-contact-side p,
.acusa-contact-side li {
  color: rgba(255,255,255,.84);
}

.acusa-contact-side ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.acusa-contact-side li {
  position: relative;
  padding-inline-start: 30px;
}

.acusa-contact-side li:before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffe2a1;
  font-weight: 900;
}

.acusa-contact-form-box {
  background: #fff;
  border: 1px solid var(--acusa-contact-border);
  border-radius: 24px;
  padding: 20px;
}

.acusa-contact-form {
  display: grid;
  gap: 14px;
}

.acusa-contact-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.acusa-contact-field.full {
  grid-column: 1 / -1;
}

.acusa-contact-field label {
  display: block;
  color: var(--acusa-contact-ink);
  font-weight: 900;
  margin-bottom: 7px;
  line-height: 1.6;
}

.acusa-contact-field label span,
.acusa-contact-consent strong {
  color: var(--acusa-contact-red);
}

.acusa-contact-field input,
.acusa-contact-field select,
.acusa-contact-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(20, 43, 35, .18);
  border-radius: 16px;
  background: #fffdf7;
  color: var(--acusa-contact-ink);
  padding: 11px 13px;
  outline: none;
  box-shadow: none;
  font: inherit;
}

.acusa-contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.acusa-contact-field input:focus,
.acusa-contact-field select:focus,
.acusa-contact-field textarea:focus {
  border-color: rgba(217, 164, 65, .75);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, .16);
}

.acusa-contact-consent {
  border: 1px solid rgba(20, 43, 35, .1);
  background: #fffaf0;
  border-radius: 18px;
  padding: 12px 14px;
}

.acusa-contact-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--acusa-contact-muted);
  line-height: 1.8;
  cursor: pointer;
}

.acusa-contact-consent input {
  margin-top: 7px;
}

.acusa-contact-actions {
  display: flex;
  justify-content: flex-start;
}

.acusa-contact-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--acusa-contact-red);
  color: #fff;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(178, 58, 47, .22);
}

.acusa-contact-alert {
  border-radius: 18px;
  padding: 13px 15px;
  margin-bottom: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.acusa-contact-alert.success {
  background: rgba(14, 59, 46, .08);
  border: 1px solid rgba(14, 59, 46, .18);
  color: var(--acusa-contact-green);
}

.acusa-contact-alert.error {
  background: rgba(178, 58, 47, .08);
  border: 1px solid rgba(178, 58, 47, .22);
  color: #7e241d;
}

.acusa-contact-alert ul {
  margin: 8px 0 0;
  padding-inline-start: 22px;
}

.acusa-contact-note {
  padding: 16px 18px;
  background: #fff7e2;
  border-color: rgba(217, 164, 65, .34);
}

.acusa-contact-note strong {
  color: var(--acusa-contact-green);
}

.acusa-hidden-trap {
  position: absolute !important;
  inset-inline-start: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .acusa-contact-intro,
  .acusa-contact-shell {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .acusa-contact-grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .acusa-contact-page {
    margin-bottom: 38px;
  }

  .acusa-contact-intro h2,
  .acusa-contact-side h2 {
    font-size: 1.48rem;
  }

  .acusa-contact-actions button {
    width: 100%;
  }
}

/* ACUSA Contact Form v1.0.1 - Light visual identity fix */
.acusa-contact-shell {
  align-items: start !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,240,.98)),
    #fffaf0 !important;
}

.acusa-contact-side {
  background: #ffffff !important;
  color: var(--acusa-contact-ink) !important;
  border: 1px solid var(--acusa-contact-border) !important;
  box-shadow: 0 12px 30px rgba(24, 44, 38, .06) !important;
  min-height: auto !important;
}

.acusa-contact-side .acusa-contact-kicker {
  color: var(--acusa-contact-green) !important;
  border-color: rgba(14, 59, 46, .16) !important;
  background: rgba(14, 59, 46, .08) !important;
}

.acusa-contact-side h2 {
  color: var(--acusa-contact-ink) !important;
}

.acusa-contact-side p,
.acusa-contact-side li {
  color: var(--acusa-contact-muted) !important;
}

.acusa-contact-side ul {
  margin-top: 16px !important;
}

.acusa-contact-side li {
  background: #fffaf0 !important;
  border: 1px solid rgba(20, 43, 35, .10) !important;
  border-radius: 16px !important;
  padding: 11px 42px 11px 14px !important;
}

.acusa-contact-side li:before {
  inset-inline-start: auto !important;
  inset-inline-end: 14px !important;
  top: 12px !important;
  background: rgba(14, 59, 46, .10) !important;
  color: var(--acusa-contact-green) !important;
}

.acusa-contact-form-box {
  box-shadow: 0 12px 30px rgba(24, 44, 38, .06) !important;
}

.acusa-contact-intro {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,250,240,.98)),
    #fffaf0 !important;
}

@media (max-width: 900px) {
  .acusa-contact-side {
    order: 1;
  }

  .acusa-contact-form-box {
    order: 2;
  }
}
