/* ── CONTACT PAGE SPECIFIC STYLES ── */

/* ── Field focus-within highlight ── */
.field:focus-within label {
  color: #fff;
}
.field:focus-within input,
.field:focus-within select,
.field:focus-within textarea {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.07);
  outline: none;
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #e03b3b;
  box-shadow: 0 0 0 3px rgba(224,59,59,0.15);
}

/* Date hint */
.date-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ── 24/7 ops badge at top of sidebar ── */
.ops-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.ops-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px rgba(37,211,102,0.7);
  flex-shrink: 0;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(37,211,102,0.7); }
  50%       { box-shadow: 0 0 12px rgba(37,211,102,1); }
}
.ops-badge p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.ops-badge p strong {
  color: #fff;
  font-weight: 700;
}

/* ── Map embed ── */
.map-block {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
}

.map-block iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ── RTL fixes ── */
html[lang="ar"] .acct-banner {
  border-inline-start: none;
  border-inline-end: 4px solid var(--red, #e03b3b);
}

/* Contact spacing & RTL alignment (desktop/tablet) */
.con-page .page-hero {
  padding-bottom: 56px; /* keep a touch more breathing room on contact */
}

.con-page .con-body {
  padding: 48px 80px 72px; /* less dead vertical space */
}

html[lang="ar"] .con-body .field-row {
  direction: rtl;
}

html[lang="ar"] .con-body input,
html[lang="ar"] .con-body textarea {
  text-align: right;
}

/* Tablet layout */
@media (max-width: 1100px) {
  .con-page .con-body {
    padding: 40px 40px 64px;
  }
}

/* Mobile spacing */
@media (max-width: 768px) {
  .con-page .con-body {
    padding: 32px 20px 56px;
  }
}