/**
 * Ajman Lawyer — Admin & Frontend Stylesheet
 *
 * TOC, Author Box, Key Takeaways, CTA, Stats, FAQ, Steps, Video,
 * Comparison Tables, Service Cards, Admin Highlights, Responsive, RTL, Dark Mode, Print.
 *
 * @package Ajman_Lawyer_Engine
 * @version 1.0.0
 */

/* ================================================================
   ROOT VARIABLES (Theme Identity)
   ================================================================ */
:root {
  --gold: #c5a55a;
  --gold-light: #f9f5e9;
  --gold-dark: #a0853c;
  --green: #1a5f2a;
  --green-dark: #0d3d1a;
  --green-light: #e8f5e9;
  --navy: #0a1628;
  --navy-light: #1a2a42;
  --accent: #c62828;
  --accent-hover: #b71c1c;
  --text: #1a1a2e;
  --text-light: #5a5a6e;
  --border: #e2e2e2;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --transition: 0.3s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   1. TABLE OF CONTENTS (TOC)
   ================================================================ */
.ajman-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.ajman-toc--sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.ajman-toc__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.ajman-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ajman-toc;
}

.ajman-toc__item {
  margin: 0.25rem 0;
}

.ajman-toc__item--level-2 {
  font-weight: 700;
}

.ajman-toc__item--level-3 {
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.ajman-toc__link {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.ajman-toc__link:hover,
.ajman-toc__link:focus {
  background: var(--gold-light);
  color: var(--navy);
}

/* Numbered style */
.ajman-toc--numbered .ajman-toc__list {
  list-style: decimal inside;
}

.ajman-toc--numbered .ajman-toc__item--level-3 {
  list-style: lower-alpha inside;
}

/* Bulleted style */
.ajman-toc--bulleted .ajman-toc__list {
  list-style: disc inside;
}

.ajman-toc--bulleted .ajman-toc__item--level-3 {
  list-style: circle inside;
}

/* Cards style */
.ajman-toc--cards .ajman-toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}

.ajman-toc--cards .ajman-toc__item {
  background: var(--gold-light);
  border-radius: 8px;
  padding: 0.5rem;
}

.ajman-toc--cards .ajman-toc__link {
  padding: 0.25rem;
}

/* ================================================================
   2. AUTHOR BOX
   ================================================================ */
.ajman-author-box {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.ajman-author-box__photo {
  flex-shrink: 0;
}

.ajman-author-box__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.ajman-author-box__body {
  flex: 1;
}

.ajman-author-box__name {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.ajman-verified-badge {
  color: var(--green);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.ajman-author-box__role {
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.ajman-author-box__bio {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.ajman-author-box__credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.ajman-author-box__credentials li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

.ajman-author-box__bar {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.ajman-author-box__linkedin {
  display: inline-block;
  color: #0077b5;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ajman-author-box__reviewed {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ================================================================
   3. KEY TAKEAWAYS BOX
   ================================================================ */
.ajman-key-takeaways {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.ajman-key-takeaways__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.ajman-key-takeaways__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.8;
}

.ajman-key-takeaways__list li {
  margin-bottom: 0.4rem;
}

.ajman-key-takeaways__list li::marker {
  color: var(--gold-dark);
}

/* ================================================================
   4. CTA SECTIONS
   ================================================================ */
.ajman-cta {
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ajman-cta--after-intro {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 1.5rem;
}

.ajman-cta--before-conclusion {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
}

.ajman-cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ajman-cta__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ajman-cta__icon--large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ajman-cta__title,
.ajman-cta__headline {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.ajman-cta--before-conclusion .ajman-cta__headline {
  font-size: 1.75rem;
  color: var(--white);
}

.ajman-cta__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  color: inherit;
}

.ajman-cta__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(198,40,40,0.35);
}

.ajman-cta__btn:hover,
.ajman-cta__btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,40,40,0.45);
  color: var(--white);
}

.ajman-cta__btn--large {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

.ajman-cta__trust {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.75rem;
}

.ajman-cta__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.ajman-cta__stat {
  text-align: center;
}

.ajman-cta__stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.ajman-cta__stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.ajman-cta__media {
  margin: 1.5rem 0;
}

.ajman-cta__img {
  border-radius: var(--radius);
  margin: 0 auto;
}

.ajman-cta__testimonial {
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  text-align: left;
  opacity: 0.9;
}

.ajman-cta__testimonial cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-style: normal;
  color: var(--gold);
}

.ajman-cta__rating {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0.75rem 0;
}

.ajman-cta__urgency {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--white);
}

.ajman-cta__urgency-title {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.ajman-cta__urgency-desc {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.ajman-cta__gift {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1rem;
}

/* ================================================================
   5. STATS COUNTER
   ================================================================ */
.ajman-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.ajman-stats__item {
  text-align: center;
  padding: 1rem;
}

.ajman-stats__number {
  display: block;
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.ajman-stats__label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.ajman-stats__suffix {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ================================================================
   6. FAQ ACCORDION
   ================================================================ */
.ajman-faq {
  margin: 2rem 0;
}

.ajman-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.ajman-faq__item:hover {
  box-shadow: var(--shadow);
}

.ajman-faq__question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.ajman-faq__question:hover {
  background: var(--gold-light);
}

.ajman-faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.ajman-faq__item.is-open .ajman-faq__question::after {
  content: '−';
  transform: rotate(180deg);
}

.ajman-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.ajman-faq__item.is-open .ajman-faq__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* ================================================================
   7. STEPS / PROGRESS
   ================================================================ */
.ajman-steps {
  margin: 2rem 0;
  counter-reset: ajman-step;
}

.ajman-steps__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.ajman-steps__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: -24px;
  width: 2px;
  background: var(--border);
}

.ajman-steps__number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 1;
}

.ajman-steps__number::before {
  counter-increment: ajman-step;
  content: counter(ajman-step);
}

.ajman-steps__body {
  flex: 1;
  padding-top: 0.25rem;
}

.ajman-steps__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.ajman-steps__desc {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   8. VIDEO CONTAINER (LAZY LOAD)
   ================================================================ */
.ajman-video-lazy {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  margin: 1.5rem 0;
}

.ajman-video-lazy__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ajman-video-lazy:hover .ajman-video-lazy__thumb {
  opacity: 1;
}

.ajman-video-lazy__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(198,40,40,0.4);
}

.ajman-video-lazy__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-hover);
}

/* ================================================================
   9. COMPARISON TABLE
   ================================================================ */
.ajman-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ajman-compare-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  font-weight: 700;
  text-align: center;
}

.ajman-compare-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text);
}

.ajman-compare-table tbody tr:nth-child(even) {
  background: var(--gold-light);
}

.ajman-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* ================================================================
   10. SERVICE LIST CARDS
   ================================================================ */
.ajman-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ajman-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.ajman-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.ajman-service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.ajman-service-card__title {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.ajman-service-card__desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   11. TABLE DATA
   ================================================================ */
.ajman-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ajman-data-table th,
.ajman-data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: start;
}

.ajman-data-table thead th {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.ajman-data-table tbody tr:nth-child(even) {
  background: var(--green-light);
}

.ajman-data-table tbody tr:hover {
  background: var(--gold-light);
}

/* ================================================================
   12. DIVIDER STYLES
   ================================================================ */
.ajman-divider {
  margin: 2rem 0;
  border: none;
  height: 1px;
  background: var(--border);
}

.ajman-divider--dots {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 4px,
    transparent 4px,
    transparent 12px
  );
}

.ajman-divider--wave {
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.18,137.37-30.66,208.15-30.66,72.08,0,139.35,26.56,208.73,30.66,54.47,3.81,110.34-5.86,158-28V0Z' fill='%23c5a55a' opacity='0.25'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

.ajman-divider--space {
  height: 3rem;
  background: transparent;
}

/* ================================================================
   13. ADMIN HIGHLIGHT STYLES
   ================================================================ */
.ajman-needs-review td {
  background-color: #fff8e1 !important;
}

.ajman-na {
  color: #9e9e9e;
  font-style: italic;
}

.ajman-date-stale {
  color: #e65100;
  font-weight: 700;
}

.ajman-date-ok {
  color: #2e7d32;
}

/* ================================================================
   14. ADMIN COLUMN STYLES
   ================================================================ */
.column-ajman_seo_title,
.column-ajman_focus_kw,
.column-ajman_schema,
.column-ajman_last_reviewed,
.column-ajman_reviewer,
.column-ajman_version,
.column-ajman_alert {
  vertical-align: middle;
}

.column-ajman_alert {
  text-align: center;
}

.ajman-alert-pill {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 4px;
}

.ajman-alert-pill--red    { background: #e53935; }
.ajman-alert-pill--orange { background: #fb8c00; }
.ajman-alert-pill--yellow { background: #fdd835; }
.ajman-alert-pill--green  { background: #43a047; }

/* ================================================================
   15. RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 768px) {
  .ajman-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ajman-cta__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .ajman-toc--sidebar {
    position: static;
    max-height: none;
  }

  .ajman-service-cards {
    grid-template-columns: 1fr;
  }

  .ajman-steps__item:not(:last-child)::before {
    left: 16px;
  }

  .ajman-steps__number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .ajman-compare-table thead {
    display: none;
  }

  .ajman-compare-table tbody td {
    display: block;
    text-align: right;
    padding: 0.75rem;
  }

  .ajman-compare-table tbody td::before {
    content: attr(data-label);
    float: left;
    font-weight: 700;
    color: var(--navy);
  }

  .ajman-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ajman-cta {
    padding: 1.25rem;
  }

  .ajman-cta__headline {
    font-size: 1.35rem;
  }

  .ajman-stats {
    grid-template-columns: 1fr;
  }

  .ajman-data-table th,
  .ajman-data-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* ================================================================
   16. RTL SUPPORT
   ================================================================ */
[dir="rtl"] .ajman-toc__item--level-3 {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .ajman-key-takeaways {
  border-left: none;
  border-right: 4px solid var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
  padding-left: 1.5rem;
  padding-right: 1.25rem;
}

[dir="rtl"] .ajman-cta__testimonial {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .ajman-author-box__photo {
  margin-right: 0;
  margin-left: 1.5rem;
}

[dir="rtl"] .ajman-verified-badge {
  margin-left: 0;
  margin-right: 0.5rem;
}

[dir="rtl"] .ajman-steps__item:not(:last-child)::before {
  left: auto;
  right: 20px;
}

[dir="rtl"] .ajman-steps__number {
  margin-right: 0;
  margin-left: 1rem;
}

[dir="rtl"] .ajman-compare-table tbody td::before {
  float: right;
}

/* ================================================================
   17. DARK MODE SUPPORT
   ================================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #e2e2e2;
    --text-light: #a0a0b0;
    --border: #2a2a3e;
    --white: #12121e;
    --gold-light: #1a1a2e;
    --green-light: #0d1a0e;
    --navy-light: #1a2a42;
    --shadow: 0 8px 32px rgba(0,0,0,0.25);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.35);
  }

  .ajman-toc,
  .ajman-author-box,
  .ajman-faq__item,
  .ajman-service-card,
  .ajman-compare-table,
  .ajman-data-table,
  .ajman-steps__body {
    background: #1a1a2e;
    color: #e2e2e2;
  }

  .ajman-toc__title,
  .ajman-author-box__name,
  .ajman-steps__title,
  .ajman-service-card__title,
  .ajman-compare-table thead th,
  .ajman-data-table thead th,
  .ajman-faq__question {
    color: #f0f0f0;
  }

  .ajman-toc__link:hover,
  .ajman-toc__link:focus {
    background: #2a2a42;
  }

  .ajman-faq__answer {
    color: #a0a0b0;
  }

  .ajman-data-table tbody tr:nth-child(even) {
    background: #1a2a1e;
  }

  .ajman-data-table tbody tr:hover {
    background: #2a2a1e;
  }
}

/* ================================================================
   18. PRINT STYLES
   ================================================================ */
@media print {
  .ajman-toc--sidebar,
  .ajman-cta,
  .ajman-video-lazy,
  .ajman-testimonials,
  .ajman-stats,
  .ajman-service-cards,
  .ajman-faq__question::after,
  .ajman-divider--wave,
  .ajman-divider--dots,
  .ajman-divider--space {
    display: none !important;
  }

  .ajman-author-box {
    border: 1px solid #000;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .ajman-key-takeaways {
    border: 1px solid #000;
    background: none;
  }

  .ajman-data-table,
  .ajman-compare-table {
    box-shadow: none;
    border: 1px solid #000;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8rem;
    color: #555;
  }
}

/* ================================================================
   19. ANIMATION KEYFRAMES
   ================================================================ */
@keyframes ajmanFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ajmanPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes ajmanSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ajmanBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.ajman-anim--fadeUp {
  animation: ajmanFadeUp 0.8s ease-out both;
}

.ajman-anim--pulse {
  animation: ajmanPulse 2s ease-in-out infinite;
}

.ajman-anim--slideIn {
  animation: ajmanSlideIn 0.8s ease-out both;
}

.ajman-anim--bounce {
  animation: ajmanBounce 1.5s ease-in-out infinite;
}

/* ================================================================
   20. ADDITIONAL ADMIN UI
   ================================================================ */
#ajman-pre-publish-checklist .ajman-checklist-score {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 0.75rem;
  background: var(--gold-light);
  border-radius: var(--radius);
  margin-top: 0.75rem;
  color: var(--navy);
}

.ajman-dashboard-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ajman-dashboard-widget li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.ajman-dashboard-widget li:last-child {
  border-bottom: none;
}

/* Admin bar styling */
#wp-admin-bar-ajman-lawyer-menu .ab-item {
  color: var(--gold) !important;
}

/* Quick edit fields */
.ajman-quick-edit label {
  display: block;
  margin-bottom: 0.75rem;
}

.ajman-quick-edit .title {
  display: inline-block;
  width: 120px;
  font-weight: 600;
}

.ajman-quick-edit input[type="text"],
.ajman-quick-edit input[type="date"],
.ajman-quick-edit select {
  width: calc(100% - 130px);
  max-width: 300px;
}
