/* ═══════════════════════════════════════════════
   Omixus — Pages CSS
   Legal + Contact + FAQ + About + Footer V4
   ═══════════════════════════════════════════════ */

/* ─────── Shared crumb & page-foot ─────── */
.omx-legal-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
}
.omx-legal-crumb a { color: var(--c-accent); text-decoration: none; }
.omx-legal-crumb a:hover { color: var(--c-accent-h); }
.omx-legal-crumb .sep { color: var(--c-muted-2); font-size: 15px; }

.omx-legal-foot {
  margin: 40px 0 60px;
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.omx-legal-foot-q { font-size: 15px; font-weight: 700; color: var(--c-text); }
.omx-legal-foot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
}
.omx-legal-foot-btn:hover {
  background: var(--c-accent-h);
  box-shadow: 0 8px 24px var(--c-accent-glow);
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES (privacy / terms / returns / shipping)
   ═══════════════════════════════════════════════ */
.omx-legal-page .container { max-width: 900px; }

.omx-legal-header { margin-bottom: 24px; }
.omx-legal-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.omx-legal-updated {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0;
}
.omx-legal-updated time { color: var(--c-accent); font-weight: 700; }

.omx-legal-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 40px 44px;
}

.omx-legal-content {
  color: var(--c-text);
  line-height: 1.85;
  font-size: 15px;
}
.omx-legal-content p { margin: 0 0 16px; color: var(--c-text-2); }
.omx-legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  margin: 30px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border);
}
.omx-legal-content h2:first-child { margin-top: 0; }
.omx-legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-text);
  margin: 22px 0 10px;
}
.omx-legal-content ul, .omx-legal-content ol {
  padding-inline-start: 22px;
  margin: 0 0 18px;
  color: var(--c-text-2);
}
.omx-legal-content li { margin-bottom: 6px; line-height: 1.75; }
.omx-legal-content strong { color: var(--c-text); font-weight: 700; }
.omx-legal-content a { color: var(--c-accent); text-decoration: none; font-weight: 600; }
.omx-legal-content a:hover { text-decoration: underline; }
.omx-legal-content em {
  display: block;
  padding: 12px 16px;
  margin-top: 20px;
  background: var(--c-accent-soft);
  border-radius: 10px;
  color: var(--c-muted);
  font-size: 13px;
  font-style: normal;
}
.omx-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.omx-legal-content th,
.omx-legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: start;
}
.omx-legal-content th {
  background: var(--c-surface-2);
  font-weight: 700;
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.omx-contact-page .container { max-width: 1100px; }

.omx-contact-header {
  text-align: center;
  margin: 20px 0 36px;
}
.omx-contact-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--c-text);
  margin: 8px 0 10px;
}
.omx-contact-sub {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0;
}

.omx-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.omx-contact-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 32px;
}
.omx-contact-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 22px;
}

.omx-contact-success {
  padding: 14px 18px;
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .3);
  border-radius: 12px;
  color: #4ade80;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.omx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.omx-form-field-full { grid-column: 1 / -1; }
.omx-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-muted);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
.omx-form-field input,
.omx-form-field select,
.omx-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-text);
  font-size: 14px;
  font-family: var(--font-ar);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.omx-form-field input:focus,
.omx-form-field select:focus,
.omx-form-field textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.omx-form-field textarea { resize: vertical; min-height: 110px; }
.omx-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8E98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 40px;
  cursor: pointer;
  appearance: none;
}
.omx-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-ar);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .1s;
}
.omx-contact-submit:hover {
  background: var(--c-accent-h);
  box-shadow: 0 8px 28px var(--c-accent-glow);
}
.omx-contact-submit:active { transform: scale(.98); }

/* Honeypot — visually hidden without creating scroll */
.omx-honeypot {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════
   MAINTENANCE PAGE — Reference design
   ═══════════════════════════════════════════════ */
.omx-maint-page .container { max-width: 1200px; }

.maint-alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}
.maint-alert--ok {
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .3);
  color: #4ade80;
}
.maint-alert--ok strong {
  background: rgba(74, 222, 128, .2);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: monospace;
}
.maint-alert--err {
  background: rgba(248, 113, 113, .1);
  border: 1px solid rgba(248, 113, 113, .3);
  color: #f87171;
}

/* ── Hero card ── */
.maint-hero-card {
  background: linear-gradient(135deg, var(--c-accent-soft) 0%, rgba(99,17,185,.04) 100%);
  border: 1px solid rgba(99,17,185,.2);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
}
.maint-hero-icon { font-size: 48px; margin-bottom: 12px; line-height: 1; }
.maint-hero-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: var(--c-text);
  margin: 0 0 10px;
  line-height: 1.2;
}
.maint-hero-desc {
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 15px;
  line-height: 1.7;
}
.maint-hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.maint-pill {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.maint-pill--green  { background: rgba(34,197,94,.12);  color: #22c55e; }
.maint-pill--blue   { background: rgba(59,130,246,.12); color: #3b82f6; }
.maint-pill--yellow { background: rgba(234,179,8,.12);  color: #eab308; }
.maint-pill--purple { background: rgba(168,85,247,.12); color: #a855f7; }

/* ── Tabs ── */
.maint-tabs {
  display: flex;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 24px;
  gap: 0;
}
.maint-tabs .tab-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--c-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-ar);
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.maint-tabs .tab-btn:hover { color: var(--c-text); }
.maint-tabs .tab-btn.active {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}

/* ── 2-column layout ── */
.maintenance-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 60px;
}
@media (min-width: 900px) {
  .maintenance-layout { grid-template-columns: 1fr 360px; }
}

/* ── Form card ── */
.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 28px;
}
.form-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 4px;
}
.form-card .subtitle {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--c-text);
  font-family: var(--font-ar);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-muted-2); }
.form-select { cursor: pointer; appearance: none; padding-inline-start: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8E98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 14px center; }
.form-textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: background .18s, box-shadow .18s, transform .1s;
  margin-top: 12px;
}
.submit-btn:hover {
  background: var(--c-accent-h);
  box-shadow: 0 8px 28px var(--c-accent-glow);
}
.submit-btn:active { transform: scale(.99); }
.maint-submit-note {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  margin: 10px 0 0;
}

/* ── Photo drop zone ── */
.omx-photo-drop {
  border: 2px dashed var(--c-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.omx-photo-drop:hover,
.omx-photo-drop.is-drag {
  border-color: var(--c-accent);
  background: var(--c-accent-soft);
}
.omx-photo-drop-icon { font-size: 32px; margin-bottom: 8px; line-height: 1; }
.omx-photo-drop-main { font-size: 14px; color: var(--c-muted); font-weight: 600; }
.omx-photo-drop-sub { font-size: 12px; color: var(--c-muted-2); margin-top: 4px; }

.omx-photo-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.omx-photo-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-border);
}
.omx-photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.omx-photo-thumb .rm {
  position: absolute;
  top: 3px;
  inset-inline-end: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.omx-photo-thumb .rm:hover { background: #ef4444; }

/* ── Sidebar cards ── */
.maint-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ticket-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
}
.ticket-card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-card-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 20px;
}
.process-step {
  display: flex;
  gap: 14px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-end: 19px;
  top: 40px;
  bottom: -8px;
  width: 2px;
  background: var(--c-border);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.step-content { padding: 8px 0 20px; }
.step-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

.maint-guarantees {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.maint-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.5;
}
.maint-guarantee .g-icon { font-size: 20px; flex-shrink: 0; }

/* ── Mobile tweaks (global maintenance page) ── */
@media (max-width: 768px) {
  .omx-maint-page .container { padding-inline: 14px; }
  .maint-hero-card {
    padding: 24px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
  }
  .maint-hero-icon {
    width: 58px !important; height: 58px !important;
    margin-bottom: 12px;
  }
  .maint-hero-icon .mi { width: 28px !important; height: 28px !important; }
  .maint-hero-title { font-size: 22px; line-height: 1.25; margin-bottom: 8px; }
  .maint-hero-desc { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
  .maint-hero-pills { gap: 6px; }
  .maint-pill {
    padding: 5px 12px;
    font-size: 11px;
    gap: 3px;
  }

  /* Tabs — full width on mobile */
  .maint-tabs {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .maint-tabs::-webkit-scrollbar { display: none; }
  .maint-tabs .tab-btn {
    padding: 12px 16px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
  }
  .tab-badge { min-width: 18px; height: 18px; font-size: 10px; }

  /* Form */
  .form-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .form-card h2 { font-size: 18px; }
  .form-card .subtitle { font-size: 13px; margin-bottom: 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-input, .form-select, .form-textarea {
    font-size: 15px;  /* Prevents iOS zoom on focus */
    padding: 12px 14px;
  }
  .form-label { font-size: 12.5px; }
  .submit-btn {
    padding: 14px;
    font-size: 15px;
  }

  /* Photo drop */
  .omx-photo-drop { padding: 20px 16px; }
  .omx-photo-drop-icon {
    width: 48px; height: 48px;
    margin-bottom: 6px;
  }
  .omx-photo-drop-main { font-size: 13px; }
  .omx-photo-drop-sub { font-size: 11px; }

  /* Sidebar cards */
  .maintenance-layout { gap: 16px; }
  .maint-side { gap: 14px; }
  .omx-wa-card { padding: 18px 16px; border-radius: 14px; }
  .omx-wa-title { font-size: 16px; margin-bottom: 4px; }
  .omx-wa-desc { font-size: 12.5px; margin-bottom: 12px; }
  .omx-wa-btn {
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .omx-wa-hint { font-size: 11px; }

  .omx-trust-card { padding: 18px 16px; border-radius: 14px; }
  .omx-trust-title { font-size: 11px; margin-bottom: 10px; }
  .omx-trust-row { padding: 8px 0; gap: 10px; }
  .omx-trust-icon { width: 30px; height: 30px; }
  .omx-trust-row b { font-size: 13px; }
  .omx-trust-row small { font-size: 11px; }
  .omx-trust-sep { margin: 14px 0 12px; }

  /* Payment pills — ensure they wrap nicely */
  .omx-pay-grid { gap: 5px; }
  .omx-pay-pill {
    padding: 5px 9px;
    font-size: 10.5px;
  }
  .omx-pay-mc { padding-inline-start: 24px; }

  /* Success card (after submit) */
  .omx-success-card {
    padding: 28px 18px;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .omx-success-icon {
    width: 68px; height: 68px;
    margin-bottom: 14px;
  }
  .omx-success-icon .mi { width: 42px !important; height: 42px !important; }
  .omx-success-title { font-size: 20px; margin-bottom: 12px; }
  .omx-success-ref {
    padding: 8px 14px;
    margin-bottom: 16px;
  }
  .omx-success-ref strong { font-size: 15px; }
  .omx-success-wa-btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    min-width: unset;
  }
  .omx-success-note { font-size: 12px; }

  /* Alerts */
  .maint-alert {
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* Stats strip */
  .omx-tickets-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
  .omx-stat-card { padding: 10px 12px; gap: 10px; border-radius: 12px; }
  .omx-stat-icon { width: 34px; height: 34px; border-radius: 8px; }
  .omx-stat-card .omx-stat-num { font-size: 17px; }
  .omx-stat-card .omx-stat-label { font-size: 11px; }

  /* Breadcrumb — smaller */
  .omx-maint-page .breadcrumb { font-size: 12px; margin-bottom: 14px; }
}

/* Extra small screens */
@media (max-width: 420px) {
  .maint-hero-title { font-size: 19px; }
  .maint-pill { font-size: 10px; padding: 4px 10px; }
  .tab-btn { font-size: 13px; padding: 10px 10px; }
  .form-card { padding: 16px 14px; }
  .omx-success-title { font-size: 18px; }
}

/* ═══════════════════════════════════════════════
   MY ACCOUNT — Bookings
   ═══════════════════════════════════════════════ */
.omx-my-bookings h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 20px;
}

.omx-bookings-empty {
  padding: 40px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  text-align: center;
  color: var(--c-muted);
}
.omx-bookings-empty p { margin: 0 0 16px; font-size: 15px; }

.omx-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.omx-booking-card {
  padding: 20px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  transition: border-color .15s;
}
.omx-booking-card:hover { border-color: var(--c-accent); }

.omx-booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.omx-booking-ref {
  font-family: monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.omx-booking-service {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.omx-booking-status {
  padding: 4px 12px;
  border-radius: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.omx-booking-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--c-surface-2);
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 12.5px;
  color: var(--c-muted);
}

/* Timeline */
.omx-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 4px;
  position: relative;
}
.omx-timeline::before {
  content: '';
  position: absolute;
  top: 9px;
  inset-inline-start: 15px;
  inset-inline-end: 15px;
  height: 2px;
  background: var(--c-border);
  z-index: 0;
}
.omx-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.omx-timeline-step .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-surface-2);
  border: 2px solid var(--c-border);
  transition: all .2s;
}
.omx-timeline-step .label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.2;
}
.omx-timeline-step--done .dot {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.omx-timeline-step--done .dot::after {
  content: '✓';
  display: block;
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 16px;
  font-weight: 800;
}
.omx-timeline-step--active .dot {
  background: var(--c-accent);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-accent-soft);
}
.omx-timeline-step--active .label {
  color: var(--c-accent);
  font-weight: 800;
}
.omx-timeline--cancelled {
  padding: 10px 14px;
  background: rgba(248, 113, 113, .1);
  border: 1px solid rgba(248, 113, 113, .3);
  border-radius: 10px;
  color: #f87171;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.omx-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.omx-contact-info-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .15s, transform .15s;
}
.omx-contact-info-card:hover {
  border-color: var(--c-accent);
  transform: translateX(-2px);
}
.omx-info-icon { font-size: 22px; margin-bottom: 4px; }
.omx-info-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.omx-info-val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
}
a.omx-info-val:hover { color: var(--c-accent); }

/* ═══════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════ */
.omx-faq-page .container { max-width: 1000px; }

.omx-faq-header {
  text-align: center;
  margin: 20px 0 40px;
}
.omx-faq-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--c-text);
  margin: 8px 0 10px;
}
.omx-faq-sub {
  font-size: 14.5px;
  color: var(--c-muted);
  margin: 0;
}

.omx-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.omx-faq-cat {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-accent);
  margin: 0 0 14px;
  padding-inline-start: 10px;
  border-inline-start: 3px solid var(--c-accent);
}

.omx-faq-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.omx-faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
.omx-faq-item[open] { border-color: var(--c-accent); }
.omx-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-text);
  list-style: none;
  transition: background .15s;
}
.omx-faq-item summary::-webkit-details-marker { display: none; }
.omx-faq-item summary:hover { background: var(--c-accent-soft); }
.omx-faq-item summary svg {
  transition: transform .2s;
  color: var(--c-muted);
  flex-shrink: 0;
}
.omx-faq-item[open] summary svg { transform: rotate(180deg); color: var(--c-accent); }
.omx-faq-answer {
  padding: 0 20px 18px;
  color: var(--c-text-2);
  font-size: 14px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.omx-about-page { overflow-x: hidden; }

.omx-about-hero {
  padding: 20px 0 60px;
}
.omx-about-hero .container { max-width: 900px; }
.omx-about-title {
  font-size: 46px;
  font-weight: 800;
  color: var(--c-text);
  margin: 10px 0 18px;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--c-text), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.omx-about-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-text-2);
  max-width: 720px;
  margin: 0;
}

.omx-about-stats-section {
  padding: 40px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.omx-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.omx-stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.omx-stat-label {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 600;
}

.omx-about-values-section { padding: 70px 0; }
.omx-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.omx-value-card {
  padding: 26px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  transition: border-color .2s, transform .2s;
}
.omx-value-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.omx-value-icon { font-size: 32px; margin-bottom: 12px; }
.omx-value-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 10px;
}
.omx-value-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

.omx-about-mission { padding: 60px 0; }
.omx-about-mission .container { max-width: 800px; }
.omx-mission-card {
  padding: 44px;
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-accent-soft) 100%);
  border: 1px solid var(--c-border);
  border-radius: 20px;
}
.omx-mission-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 18px;
}
.omx-mission-card p {
  font-size: 15.5px;
  color: var(--c-text-2);
  line-height: 1.85;
  margin: 0 0 14px;
}

.omx-about-cta { padding: 40px 0 80px; }
.omx-about-cta-card {
  padding: 50px 40px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 20px;
  text-align: center;
}
.omx-about-cta-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
}
.omx-about-cta-card p {
  font-size: 16px;
  opacity: .9;
  margin: 0 0 24px;
}
.omx-about-cta-btns {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.omx-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.omx-btn-primary { background: #fff; color: var(--c-accent); }
.omx-btn-primary:hover { transform: translateY(-2px); }
.omx-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}
.omx-btn-ghost:hover { background: rgba(255, 255, 255, .1); }

/* ═══════════════════════════════════════════════
   FOOTER V3 MINIMAL — 2 rows only
   ═══════════════════════════════════════════════ */
.ftr3 {
  background: #07070B;
  border-top: 1px solid var(--c-border);
  margin-top: 60px;
}
.ftr3-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Row 1 — Brand · Nav · Social */
.ftr3-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}

/* Footer brand mirrors .nav-logo exactly — override border/padding that only fit the navbar */
.ftr3-brand.nav-logo {
  padding: 0;
  border-left: 0;
}

/* Uppercase monospace copyright for brand parity */
.ftr3-copy { text-transform: none; }

.ftr3-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.ftr3-nav a {
  font-size: 13px;
  color: #B8B8C4;
  text-decoration: none;
  transition: color .15s;
}
.ftr3-nav a:hover { color: #fff; }

.ftr3-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ftr3-social-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: color .15s, border-color .15s, transform .15s, background .15s;
}
.ftr3-social-btn:hover {
  transform: translateY(-1px);
  color: #fff;
}

/* Per-brand tints (icon color in rest state) */
.ftr3-social-btn.is-whatsapp  { color: #25D366; }
.ftr3-social-btn.is-x         { color: #E7E9EA; }
.ftr3-social-btn.is-instagram { color: #E1306C; }
.ftr3-social-btn.is-tiktok    { color: #00F2EA; }

/* Per-brand hover backgrounds — force white icon via !important to beat rest-state tint specificity tie */
.ftr3-social-btn.is-whatsapp:hover  { background: #25D366; border-color: #25D366; color: #fff !important; }
.ftr3-social-btn.is-x:hover         { background: #000;    border-color: #fff;    color: #fff !important; }
.ftr3-social-btn.is-instagram:hover { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); border-color: transparent; color: #fff !important; }
.ftr3-social-btn.is-tiktok:hover    { background: #000; border-color: #FF0050; box-shadow: 2px 0 0 #FF0050, -2px 0 0 #00F2EA; color: #fff !important; }

/* Row 2 — Copy · Payments · Legal */
.ftr3-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.ftr3-copy {
  font-size: 11px;
  color: var(--c-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .2px;
}
.ftr3-pay {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.ftr3-pay .pay-pill {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 22px;
}
.pay-mada   { background: #fff; color: #00a859; }
.pay-visa   { background: #fff; color: #1a1f71; }
.pay-mc     { background: #fff; color: #222; }
.mc-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.mc-dot.mc-red { background: #eb001b; }
.mc-dot.mc-yellow { background: #f79e1b; margin-inline-start: -4px; }
.mc-text { margin-inline-start: 4px; color: #222; font-size: 9px; }
.pay-applepay { background: #000; color: #fff; }
.pay-samsungpay { background: #1428A0; color: #fff; }
.pay-stcpay { background: #4f008c; color: #fff; }
.pay-tabby    { background: #00d4aa; color: #003d2e; }
.pay-tamara   { background: #ffb428; color: #4a2f00; }

.ftr3-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ftr3-legal a {
  font-size: 12px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color .15s;
}
.ftr3-legal a:hover { color: #fff; }

/* Kill legacy footer markup if it leaks */
.ftr4, .ftr2, .footer { display: none !important; }

/* ═══════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .omx-contact-grid { grid-template-columns: 1fr; }
  .omx-form-grid { grid-template-columns: 1fr; }
  .omx-about-stats { grid-template-columns: repeat(2, 1fr); }
  .omx-values-grid { grid-template-columns: 1fr 1fr; }
  .omx-about-title { font-size: 34px; }
  .omx-legal-title { font-size: 28px; }
  .omx-faq-title { font-size: 30px; }
  .omx-contact-title { font-size: 30px; }
}

/* Tablet + mobile: center-stacked, clean vertical rhythm */
@media (max-width: 820px) {
  .ftr3-top {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    text-align: center;
  }
  .ftr3-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 0 18px;
    text-align: center;
  }
  .ftr3-nav       { flex-wrap: wrap; justify-content: center; gap: 18px; row-gap: 8px; }
  .ftr3-social    { justify-content: center; }
  .ftr3-pay       { justify-content: center; }
  .ftr3-legal     { justify-content: center; }
}

@media (max-width: 600px) {
  .omx-legal-card { padding: 24px 22px; }
  .omx-contact-form-card { padding: 22px; }
  .omx-values-grid { grid-template-columns: 1fr; }
  .omx-about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .omx-stat-num { font-size: 30px; }
}

/* Small phones (iPhone 12/13/SE): compress for narrow viewport */
@media (max-width: 480px) {
  .ftr3-inner            { padding: 0 16px; }
  .ftr3-top              { gap: 10px; padding: 14px 0; }
  .ftr3-bottom           { gap: 8px;  padding: 10px 0 14px; }
  .ftr3-nav              { gap: 14px; row-gap: 6px; }
  .ftr3-nav a            { font-size: 12px; }
  .ftr3-social-btn       { width: 30px; height: 30px; }
  .ftr3-social           { gap: 6px; }
  .ftr3-pay              { gap: 4px; }
  .ftr3-pay .pay-pill    { font-size: 9px; padding: 0 6px; height: 18px; }
  .ftr3-legal            { gap: 14px; }
  .ftr3-legal a          { font-size: 11.5px; }
  .ftr3-copy             { font-size: 10px; }
}

/* ═══════════════════════════════════════════════
   SUCCESS CARD (after form submit) + auto-WA redirect
   ═══════════════════════════════════════════════ */
.omx-success-card {
  background: linear-gradient(135deg, rgba(34,197,94,.14) 0%, rgba(34,197,94,.04) 100%);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 28px;
  animation: omxSuccessIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes omxSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.omx-success-icon {
  display: inline-flex;
  width: 84px; height: 84px;
  align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 8px 28px rgba(34,197,94,.4);
  animation: omxSuccessPop .5s cubic-bezier(.16,1,.3,1) .1s backwards;
}
@keyframes omxSuccessPop {
  0%   { transform: scale(0) rotate(-20deg); }
  100% { transform: scale(1) rotate(0); }
}
.omx-success-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--c-text);
  margin: 0 0 14px;
}
.omx-success-ref {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(34,197,94,.14);
  border: 1px dashed rgba(34,197,94,.4);
  border-radius: 12px;
  margin-bottom: 22px;
}
.omx-success-ref span { font-size: 12px; color: var(--c-muted); }
.omx-success-ref strong {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 900;
  color: #22c55e;
  letter-spacing: 1px;
}

.omx-success-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.omx-success-redirect-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(34,197,94,.12);
  border-radius: 20px;
  font-size: 12.5px;
  color: #22c55e;
  font-weight: 700;
}
.omx-success-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: #22c55e;
  color: #fff;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  font-family: var(--font-ar);
  transition: background .15s, transform .1s, box-shadow .15s;
  min-width: 260px;
}
.omx-success-wa-btn:hover {
  background: #16a34a;
  box-shadow: 0 8px 24px rgba(34,197,94,.4);
}
.omx-success-wa-btn:active { transform: scale(.99); }
.omx-success-wa-btn.is-pulse {
  animation: omxWaBtnPulse 1.1s infinite;
}
@keyframes omxWaBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); transform: scale(1); }
  50%      { box-shadow: 0 0 0 14px rgba(34,197,94,0); transform: scale(1.03); }
}
.omx-success-note {
  font-size: 13px;
  color: var(--c-muted);
  margin: 4px 0 0;
}
.omx-success-secondary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(34,197,94,.2);
}
.omx-success-secondary .btn-outline {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ar);
}
.omx-success-secondary .btn-outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

@media (max-width: 600px) {
  .omx-success-card { padding: 32px 20px; }
  .omx-success-title { font-size: 22px; }
  .omx-success-wa-btn { min-width: unset; width: 100%; padding: 14px 24px; }
}

/* ═══════════════════════════════════════════════
   SIDEBAR v3 — WhatsApp-first + trust stack
   ═══════════════════════════════════════════════ */

/* WhatsApp quick-book card */
.omx-wa-card {
  background: linear-gradient(135deg, #13281c 0%, #0f1e16 100%);
  border: 1px solid rgba(34, 197, 94, .25);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.omx-wa-card::before {
  content: '';
  position: absolute;
  top: -40px;
  inset-inline-end: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(34, 197, 94, .15), transparent 70%);
  pointer-events: none;
}
.omx-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, .14);
  color: #22c55e;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
}
.omx-wa-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
  animation: omxWaPulse 1.8s infinite;
}
@keyframes omxWaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.omx-wa-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-text);
  margin: 0 0 6px;
  line-height: 1.3;
}
.omx-wa-desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.omx-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #22c55e;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  font-family: var(--font-ar);
}
.omx-wa-btn:hover {
  background: #16a34a;
  box-shadow: 0 6px 20px rgba(34, 197, 94, .3);
}
.omx-wa-btn:active { transform: scale(.99); }
.omx-wa-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.5;
}
.omx-wa-hint .mi { color: #22c55e; flex-shrink: 0; }

/* Trust stack */
.omx-trust-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 22px;
}
.omx-trust-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.omx-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.omx-trust-row + .omx-trust-row { border-top: 1px solid var(--c-border); }
.omx-trust-icon {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  flex-shrink: 0;
}
.omx-trust-row > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.omx-trust-row b {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}
.omx-trust-row small {
  font-size: 11.5px;
  color: var(--c-muted);
}

.omx-trust-sep {
  height: 1px;
  background: var(--c-border);
  margin: 18px 0 16px;
}

/* Payment pills */
.omx-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.omx-pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-en);
  letter-spacing: -.2px;
  color: #fff;
  line-height: 1;
}
.omx-pay-mada   { background: #84b740; }
.omx-pay-visa   { background: #1434cb; letter-spacing: 2px; }
.omx-pay-mc     { background: #000; position: relative; padding-inline-start: 26px; }
.omx-pay-mc::before { content: ''; position: absolute; inset-inline-start: 6px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; background: #eb001b; border-radius: 50%; box-shadow: 7px 0 0 #f79e1b; mix-blend-mode: normal; }
.omx-pay-apple  { background: #0a0a0a; }
.omx-pay-stc    { background: #5b2d91; }
.omx-pay-stc b  { color: #ff375f; font-weight: 800; }
.omx-pay-tabby  { background: #3bdb9f; color: #052a2b; }
.omx-pay-tamara { background: #ff8c42; color: #fff; }

.omx-pay-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--c-muted);
  line-height: 1.5;
}
.omx-pay-hint .mi { color: var(--c-accent); flex-shrink: 0; }

@media (max-width: 600px) {
  .omx-wa-card, .omx-trust-card { padding: 18px; }
  .omx-wa-title { font-size: 16px; }
}

/* ═══════════════════════════════════════════════
   MAINTENANCE v2 — SVG icons, inline tabs, modal
   ═══════════════════════════════════════════════ */

.mi {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}
.maint-pill .mi { vertical-align: -3px; margin-inline-end: 2px; }
.tab-btn .mi   { vertical-align: -3px; }

/* Hero icon */
.maint-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  line-height: 1;
}

.ticket-card-header h3 { display: inline-flex; align-items: center; gap: 8px; }

/* Photo drop icon */
.omx-photo-drop-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: 0;
}

/* Submit btn icon */
.submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.submit-btn .mi { color: currentColor; }

/* Guarantee g-icon (SVG version) */
.maint-guarantee .g-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-size: 0;
}

/* Alert icon + text */
.maint-alert { display: flex; align-items: flex-start; gap: 10px; }
.maint-alert .mi { margin-top: 2px; flex-shrink: 0; }

/* Tab badge */
.tab-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-en);
  line-height: 1;
}

/* Tab panels */
.maint-tab-panel { display: block; }
.maint-tab-panel[hidden] { display: none; }

/* Stats strip */
.omx-tickets-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.omx-tickets-stats [hidden] { display: none; }
.omx-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  transition: border-color .15s, transform .15s;
}
.omx-stat-card:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.omx-stat-icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--c-surface-2);
  color: var(--c-muted);
  flex-shrink: 0;
}
.omx-stat-card.is-active   .omx-stat-icon { background: rgba(59,130,246,.12);  color: #38bdf8; }
.omx-stat-card.is-pay      .omx-stat-icon { background: rgba(34,197,94,.12);   color: #22c55e; }
.omx-stat-card.is-warranty .omx-stat-icon { background: rgba(234,179,8,.12);   color: #eab308; }
.omx-stat-card.is-done     .omx-stat-icon { background: rgba(34,197,94,.12);   color: #22c55e; }
.omx-stat-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.omx-stat-card .omx-stat-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-text);
  font-family: var(--font-en);
  line-height: 1;
}
.omx-stat-card .omx-stat-label {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 600;
}

/* Tickets list */
.omx-tickets-list {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.omx-ticket-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-ar);
  text-align: start;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.omx-ticket-row:hover {
  border-color: var(--c-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.omx-ticket-row + .omx-ticket-row { margin-top: 10px; }

.omx-ticket-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.omx-ticket-icon.is-pending { background: rgba(168,85,247,.14); color: #a78bfa; }
.omx-ticket-icon.is-active  { background: rgba(59,130,246,.14); color: #38bdf8; }
.omx-ticket-icon.is-done    { background: rgba(34,197,94,.14);  color: #22c55e; }

.omx-ticket-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.omx-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.omx-ticket-id {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: .5px;
}
.omx-ticket-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.omx-ticket-status.is-pending { background: rgba(168,85,247,.14); color: #a78bfa; }
.omx-ticket-status.is-active  { background: rgba(59,130,246,.14); color: #38bdf8; }
.omx-ticket-status.is-done    { background: rgba(34,197,94,.14);  color: #22c55e; }

.omx-ticket-device {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.omx-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.omx-ticket-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
}
.omx-ticket-chip .mi { color: var(--c-muted); }
.omx-ticket-chip.is-price {
  background: rgba(251,146,60,.1);
  border-color: rgba(251,146,60,.3);
  color: #fb923c;
}
.omx-ticket-chip.is-price .mi { color: #fb923c; }

.omx-ticket-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.omx-ticket-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--c-border);
  border-radius: 4px;
  overflow: hidden;
}
.omx-ticket-progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), #fb923c);
  border-radius: 4px;
  transition: width .3s;
}
.omx-ticket-progress-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-muted);
  font-family: var(--font-en);
  min-width: 70px;
  text-align: end;
}

.omx-ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
}
.omx-ticket-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-muted);
  font-family: var(--font-en);
}
.omx-ticket-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
}
.omx-ticket-cta.is-pay {
  color: #22c55e;
  padding: 4px 10px;
  background: rgba(34,197,94,.12);
  border-radius: 8px;
}

/* Empty state */
.omx-empty-state { padding: 48px 24px; text-align: center; }
.omx-empty-icon {
  display: inline-flex;
  width: 72px; height: 72px;
  align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--c-surface-2);
  color: var(--c-muted);
}
.omx-empty-title { font-size: 18px; font-weight: 800; color: var(--c-text); margin: 0 0 6px; }
.omx-empty-desc  { font-size: 14px; color: var(--c-muted); margin: 0 0 18px; }

/* Ticket detail modal */
.omx-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.omx-modal[hidden] { display: none !important; }
.omx-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.omx-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  min-height: 260px;
  overflow-y: auto;
  background: #16141c;
  background: var(--c-surface, #16141c);
  border: 1px solid #2a2432;
  border: 1px solid var(--c-border, #2a2432);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: omxModalIn .2s cubic-bezier(.16,1,.3,1);
  color: #fff;
  color: var(--c-text, #fff);
  isolation: isolate;
}
@keyframes omxModalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.omx-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--c-border);
}
.omx-modal-eyebrow { font-size: 11px; color: var(--c-muted); margin-bottom: 2px; }
.omx-modal-ref {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: .5px;
}
.omx-modal-close {
  width: 32px; height: 32px;
  background: var(--c-surface-2);
  border: none;
  border-radius: 8px;
  color: var(--c-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.omx-modal-close:hover { background: var(--c-border); color: var(--c-text); }

.omx-modal-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
}
.omx-modal-info .full { grid-column: 1 / -1; }
.omx-modal-info .k { display: block; font-size: 11px; color: var(--c-muted); margin-bottom: 3px; }
.omx-modal-info .v { display: block; font-size: 14px; font-weight: 600; color: var(--c-text); }

.omx-modal-section { padding: 20px 22px; }
.omx-modal-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

/* Vertical 8-step timeline */
.omx-vtimeline { display: flex; flex-direction: column; position: relative; }
.omx-vstep {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding-bottom: 20px;
}
.omx-vstep:last-child { padding-bottom: 0; }
.omx-vstep::before {
  content: '';
  position: absolute;
  inset-inline-start: 17px;
  top: 34px;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}
.omx-vstep:last-child::before { display: none; }
.omx-vstep.is-done::before { background: var(--c-accent); }

.omx-vstep-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  background: var(--c-surface-2);
  border: 2px solid var(--c-border);
  color: var(--c-muted);
  transition: all .2s;
}
.omx-vstep.is-done .omx-vstep-dot,
.omx-vstep.is-active .omx-vstep-dot {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}
.omx-vstep.is-active .omx-vstep-dot {
  box-shadow: 0 0 0 4px var(--c-accent-soft);
}

.omx-vstep-body { padding-top: 6px; flex: 1; }
.omx-vstep-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  line-height: 1.3;
}
.omx-vstep.is-done .omx-vstep-label,
.omx-vstep.is-active .omx-vstep-label { color: var(--c-text); }
.omx-vstep.is-active .omx-vstep-label { font-weight: 800; }
.omx-vstep-sub {
  font-size: 11px;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 2px;
}

/* Cancelled / refused row */
.omx-vtimeline-cancelled {
  padding: 14px 16px;
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.3);
  color: #ef4444;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Status pill in modal info */
[data-status-pill] .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}
[data-status-pill] .chip.is-pending { background: rgba(168,85,247,.12); color: #a78bfa; }
[data-status-pill] .chip.is-active  { background: rgba(59,130,246,.12); color: #38bdf8; }
[data-status-pill] .chip.is-done    { background: rgba(34,197,94,.12);  color: #22c55e; }

body.omx-modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .omx-modal-dialog { max-height: 92vh; border-radius: 14px; }
  .omx-modal-info { grid-template-columns: 1fr; gap: 10px; padding: 16px; }
  .omx-ticket-row { padding: 14px; gap: 10px; }
  .omx-ticket-icon { width: 42px; height: 42px; }
  .omx-ticket-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .omx-ticket-device { font-size: 14px; white-space: normal; }
  .omx-ticket-progress-label { min-width: 56px; font-size: 10px; }
  .omx-tickets-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .omx-stat-card { padding: 12px 14px; gap: 10px; }
  .omx-stat-icon { width: 36px; height: 36px; }
  .omx-stat-card .omx-stat-num { font-size: 18px; }
}

/* ═══════════════════════════════════════════════
   MODAL v2 — Payment / Warranty / Events / Photos
   ═══════════════════════════════════════════════ */

.omx-modal-block {
  margin: 0 22px 16px;
  padding: 18px;
  border-radius: 14px;
}
.omx-block-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.omx-block-title .mi { color: var(--c-accent); }

/* Payment card */
.omx-payment-card {
  background: linear-gradient(135deg, var(--c-accent-soft) 0%, rgba(99,17,185,.04) 100%);
  border: 1px solid rgba(99,17,185,.22);
}
.omx-payment-rows .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}
.omx-payment-rows .row span { color: var(--c-muted); }
.omx-payment-rows .row b    { font-weight: 700; color: var(--c-text); }
.omx-payment-rows .row.total {
  border-top: 1px solid var(--c-border);
  margin-top: 6px;
  padding-top: 12px;
}
.omx-payment-rows .row.total span { font-size: 15px; font-weight: 800; color: var(--c-text); }
.omx-payment-rows .row.total b    {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-accent);
  font-family: var(--font-en);
}
.omx-payment-note {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--c-surface-2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--c-text-2);
}

.omx-btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: filter .15s, transform .1s;
}
.omx-btn-pay:hover { filter: brightness(1.08); }
.omx-btn-pay:active { transform: scale(.99); }
.omx-btn-pay b { font-family: var(--font-en); font-weight: 900; }

.omx-btn-refuse {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  background: transparent;
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: background .15s;
}
.omx-btn-refuse:hover { background: rgba(239,68,68,.08); }

.omx-payment-safe {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Quote info (post-payment summary) */
.omx-quote-info {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  padding: 14px 18px;
}
.omx-quote-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.omx-quote-info .row > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.omx-quote-info .row > b {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-accent);
  font-family: var(--font-en);
}
.omx-quote-info .paid-badge {
  margin-top: 6px;
  font-size: 12px;
  color: #22c55e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Photo grid */
.omx-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.omx-photo-tile {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .15s, border-color .15s;
}
.omx-photo-tile:hover {
  transform: scale(1.03);
  border-color: var(--c-accent);
}
.omx-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Events log */
.omx-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.omx-event {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
}
.omx-event.is-tech {
  background: rgba(59,130,246,.08);
  border-color: rgba(59,130,246,.2);
}
.omx-event-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 10px;
}
.omx-event-head .who {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
}
.omx-event.is-tech .omx-event-head .who { color: #3b82f6; }
.omx-event-head .when {
  font-size: 11px;
  color: var(--c-muted);
  font-family: var(--font-en);
}
.omx-event-text {
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.omx-event-photos {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.omx-event-photos a {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.omx-event-photos img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Event add form */
.omx-event-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.omx-event-form textarea {
  width: 100%;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-surface-2);
  color: var(--c-text);
  font-family: var(--font-ar);
  font-size: 13px;
  resize: vertical;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.omx-event-form textarea:focus { border-color: var(--c-accent); }
.omx-event-form .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.omx-event-form .attach {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--c-muted);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.omx-event-form .attach:hover { color: var(--c-accent); border-color: var(--c-accent); }
.omx-event-form .photo-hint {
  flex: 1;
  font-size: 11px;
  color: var(--c-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.omx-event-form button {
  margin-inline-start: auto;
  padding: 8px 18px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: background .15s;
}
.omx-event-form button:hover { background: var(--c-accent-h); }

/* Warranty card */
.omx-warranty-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
}
.omx-warranty-success {
  margin: -18px -18px 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(34,197,94,.12), rgba(34,197,94,.04));
  border-bottom: 1px solid rgba(34,197,94,.25);
  border-radius: 14px 14px 0 0;
}
.omx-warranty-success b { display: block; font-size: 14px; color: var(--c-text); margin-bottom: 4px; font-weight: 800; }
.omx-warranty-success p { font-size: 13px; color: var(--c-muted); line-height: 1.6; margin: 0; }

.omx-warranty-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.omx-warranty-head .title {
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
}
.omx-warranty-head .title .mi { color: var(--c-accent); }
.omx-warranty-head .days { font-size: 12px; font-weight: 700; }
.omx-warranty-head .days.is-active { color: #22c55e; }
.omx-warranty-head .days.is-ended  { color: var(--c-muted); }

.omx-warranty-bar {
  background: var(--c-border);
  border-radius: 6px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.omx-warranty-bar span {
  display: block;
  height: 100%;
  background: #22c55e;
  border-radius: 6px;
  transition: width .3s;
}
.omx-warranty-end {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 14px;
}

.omx-warranty-pending {
  padding: 14px;
  background: linear-gradient(135deg, rgba(251,146,60,.12), rgba(251,146,60,.03));
  border: 1px solid rgba(251,146,60,.25);
  border-radius: 10px;
  margin-bottom: 10px;
}
.omx-warranty-pending b { display: block; font-size: 14px; color: var(--c-text); margin-bottom: 6px; }
.omx-warranty-pending p { font-size: 13px; color: var(--c-muted); line-height: 1.6; margin: 0 0 8px; }
.omx-warranty-pending em {
  display: block;
  padding: 8px 10px;
  background: var(--c-surface);
  border-radius: 8px;
  font-style: normal;
  font-size: 13px;
  color: var(--c-text);
}

.omx-warranty-form {
  margin-bottom: 10px;
}
.omx-warranty-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-surface);
  color: var(--c-text);
  font-family: var(--font-ar);
  font-size: 13px;
  resize: vertical;
  box-sizing: border-box;
  outline: none;
}
.omx-warranty-form textarea:focus { border-color: var(--c-accent); }
.omx-warranty-form .actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.omx-warranty-form .btn-send {
  flex: 1;
  padding: 12px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-ar);
}
.omx-warranty-form .btn-cancel {
  padding: 12px 16px;
  background: var(--c-surface);
  color: var(--c-muted);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-ar);
}

.omx-warranty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-ar);
  transition: background .15s;
}
.omx-warranty-btn:hover { background: var(--c-accent-h); }
.omx-warranty-btn.is-expired {
  background: var(--c-border);
  color: var(--c-muted);
  cursor: not-allowed;
  opacity: .7;
}

.omx-modal-footer {
  padding: 10px 22px 18px;
  text-align: center;
  font-size: 11px;
  color: var(--c-muted-2);
  font-family: var(--font-en);
}

@media (max-width: 600px) {
  .omx-modal-block { margin: 0 14px 12px; padding: 14px; }
  .omx-modal-section { padding: 14px; }
  .omx-modal-footer { padding: 8px 14px 14px; }
  .omx-event-form .actions { flex-wrap: wrap; }
  .omx-event-form .photo-hint { width: 100%; order: 3; }
  .omx-event-form button { margin-inline-start: 0; }
}

/* ═══════════════════════════════════════════════
   CATEGORIES LANDING PAGE (page-categories.php)
   ═══════════════════════════════════════════════ */
.omx-categories-page{
  padding: 32px 0 60px;
}
.omx-cats-head{padding:8px 0 22px}
.omx-cats-title{
  font-family: var(--p-f-display, 'Manrope', sans-serif);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 900;
  color: var(--c-text, #fff);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.omx-cats-sub{
  font-size: 14px;
  color: var(--c-muted, #8a8a9c);
  margin: 0;
}

.omx-cats-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 8px 0 18px;
}

.omx-cat-card{
  --accent: #6311B9;
  --grad: linear-gradient(135deg,#6311B9 0%,#A78BFA 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--c-border, rgba(255,255,255,.08));
  border-radius: 18px;
  text-decoration: none;
  color: var(--c-text, #fff);
  min-height: 160px;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s, box-shadow .25s;
  isolation: isolate;
}
.omx-cat-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: .08;
  z-index: -1;
  transition: opacity .25s;
}
.omx-cat-card::after{
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 200px; height: 200px;
  background: var(--grad);
  filter: blur(60px);
  opacity: .22;
  z-index: -1;
  transition: opacity .25s;
}
.omx-cat-card:hover{
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.5);
}
.omx-cat-card:hover::before{opacity: .14}
.omx-cat-card:hover::after{opacity: .34}

.omx-cat-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--grad);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.4);
}
.omx-cat-icon svg{width: 22px; height: 22px}

.omx-cat-body{flex: 1}
.omx-cat-title{
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--c-text, #fff);
}
.omx-cat-desc{
  font-size: 12px;
  color: var(--c-muted, #a8a8b8);
  line-height: 1.5;
}

.omx-cat-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--c-border, rgba(255,255,255,.06));
}
.omx-cat-count{
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .02em;
}
.omx-cat-arrow{
  font-size: 18px;
  color: var(--c-muted, #8a8a9c);
  transition: transform .25s, color .25s;
}
.omx-cat-card:hover .omx-cat-arrow{
  color: var(--accent);
  transform: translateX(-4px);
}

/* Featured service */
.omx-cats-featured{margin-top: 6px}
.omx-cat-feature{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(99,17,185,.18) 0%, rgba(99,17,185,.04) 100%);
  border: 1px solid rgba(99,17,185,.3);
  border-radius: 18px;
  text-decoration: none;
  color: var(--c-text, #fff);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.omx-cat-feature:hover{
  transform: translateY(-2px);
  border-color: rgba(99,17,185,.6);
  box-shadow: 0 16px 36px -12px rgba(99,17,185,.3);
}
.omx-cat-feature-kicker{
  font-size: 10.5px;
  font-weight: 800;
  color: #A78BFA;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.omx-cat-feature-title{
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.omx-cat-feature-desc{
  font-size: 13px;
  color: var(--c-muted, #a8a8b8);
}
.omx-cat-feature-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #6311B9;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(99,17,185,.5);
  flex-shrink: 0;
}
.omx-cat-feature-cta svg{flex-shrink: 0}

/* Mobile */
@media (max-width: 600px){
  .omx-categories-page{padding: 22px 0 40px}
  .omx-cats-grid{gap: 10px}
  .omx-cat-card{padding: 16px 14px; min-height: 140px}
  .omx-cat-icon{width: 38px; height: 38px; border-radius: 10px}
  .omx-cat-icon svg{width: 18px; height: 18px}
  .omx-cat-title{font-size: 14.5px}
  .omx-cat-desc{font-size: 11px}
  .omx-cat-feature{flex-direction: column; align-items: flex-start; padding: 18px 18px 20px}
  .omx-cat-feature-cta{align-self: stretch; justify-content: center}
}
