@charset "UTF-8";
/* ==========================================================================
   اتصل بنا — contact
   Tokens only; no letter-spacing on Arabic anywhere.
   ========================================================================== */

/* ---------- page hero ---------- */
.ct-hero {
  position: relative;
  padding: calc(136px + var(--s7)) var(--s5) var(--s7);
  background: var(--hero-sky);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.ct-hero > * { position: relative; }
.ct-hero-glow {
  position: absolute; inset-block-start: -58%; inset-inline-start: 50%;
  transform: translateX(50%); width: min(760px, 120vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,151,26,.16), transparent 66%);
  pointer-events: none;
}
:root[data-theme="dark"] .ct-hero-glow {
  background: radial-gradient(circle, rgba(254,205,7,.12), transparent 68%);
}
.ct-hero h1 { font-size: clamp(32px, 6vw, 60px); line-height: 1.45; margin-block: var(--s3) var(--s3); }
.ct-standfirst { font-size: 17.5px; line-height: 1.85; color: var(--ink-2); max-width: 58ch; }

.crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--s2);
  font-size: 13.5px; color: var(--muted);
}
.crumb a { color: var(--muted); transition: color .25s var(--ease); }
.crumb a:hover { color: var(--gold-ink); }
:root[data-theme="dark"] .crumb a:hover { color: var(--gold); }
.crumb-sep { opacity: .5; }
.crumb [aria-current] { color: var(--ink-2); }

.hdr-contact.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }
:root[data-theme="dark"] .hdr-contact.is-on { background: var(--gold); color: #12203B; border-color: var(--gold); }

/* ---------- layout ---------- */
.ct-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s6), 6vw, var(--s8)); align-items: start;
}

/* ---------- detail cards ---------- */
.ct-card {
  display: flex; gap: var(--s4); align-items: flex-start;
  padding: var(--s5); margin-top: var(--s4);
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
}
.ct-card-lead { border-inline-start: 3px solid var(--gold); }
.ct-ico { flex: none; width: 26px; height: 34px; fill: var(--navy); stroke: var(--navy); }
.ct-card svg[stroke] { fill: none; }
:root[data-theme="dark"] .ct-ico { fill: var(--gold); stroke: var(--gold); }
.ct-card h3 { font-size: 20px; margin-bottom: var(--s2); }
.ct-addr { font-family: var(--ar-display); font-size: 18px; color: var(--ink); line-height: 1.6; margin-bottom: var(--s2); }
.ct-x { font-size: 14.5px; line-height: 1.8; color: var(--ink-2); max-width: 46ch; }
.ct-card p { margin-bottom: var(--s2); }
.ct-card p:last-child { margin-bottom: 0; }

.ct-link {
  color: var(--navy); border-bottom: 1px solid var(--line-2); font-size: 15.5px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
  overflow-wrap: anywhere;
}
.ct-link:hover { color: var(--gold-ink); border-color: var(--gold); }
:root[data-theme="dark"] .ct-link:hover { color: var(--gold); }

.ct-note { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }

.ct-disclaim {
  margin-top: var(--s4); padding: var(--s3) var(--s4);
  font-size: 13.5px; line-height: 1.75; color: var(--muted);
  border: 1px dashed var(--line-2); border-radius: 11px;
}

/* ---------- form ---------- */
.ct-form {
  margin-top: var(--s4); padding: clamp(var(--s5), 4vw, var(--s6));
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  display: flex; flex-direction: column; gap: var(--s4);
}
.ct-field { display: flex; flex-direction: column; gap: var(--s2); }
.ct-field label { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.req { color: var(--red); }

.ct-field input,
.ct-field select,
.ct-field textarea {
  font-family: var(--ar-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 12px 14px; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.ct-field textarea { resize: vertical; min-height: 130px; line-height: 1.75; }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,26,.18);
}
.ct-field input[aria-invalid="true"],
.ct-field textarea[aria-invalid="true"] { border-color: var(--red); }

.ct-err { font-size: 13px; color: var(--red); }

.ct-submit { align-self: flex-start; }

.ct-honest {
  font-size: 13.5px; line-height: 1.8; color: var(--muted);
  padding-top: var(--s3); border-top: 1px solid var(--line);
}

.ct-sent {
  font-size: 14.5px; line-height: 1.8; color: var(--ink-2);
  padding: var(--s3) var(--s4); border-radius: 11px;
  background: var(--bg-2); border-inline-start: 3px solid var(--gold);
}

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .ct-hero { padding-top: calc(84px + var(--s6)); }
  .ct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .ct-hero { padding-inline: var(--s4); }
  .ct-card { flex-direction: column; gap: var(--s3); }
  .ct-submit { width: 100%; }
}
