/* ===== الأزرار ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:focus-visible {
    outline: 3px solid var(--trust-blue-light);
    outline-offset: 2px;
}

.btn--amber {
    background: var(--ticket-amber);
    color: var(--ink-navy);
    box-shadow: 0 12px 24px -10px rgba(232, 163, 61, 0.55);
}

.btn--amber:hover {
    background: var(--ticket-amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -10px rgba(232, 163, 61, 0.6);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-navy {
    background: transparent;
    color: var(--ink-navy);
    border: 1.5px solid var(--border-soft);
}

.btn--outline-navy:hover {
    border-color: var(--trust-blue);
    color: var(--trust-blue);
}

.btn--block { width: 100%; }

/* ===== كارت التذكرة (العنصر المميز) ===== */
.ticket {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ticket:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.ticket__head {
    background: var(--ink-navy);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket__number {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ticket-amber);
}

.ticket__notch {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mist);
    top: 68px;
    z-index: 2;
}

.ticket__notch--right { right: -13px; }
.ticket__notch--left { left: -13px; }

.section--mist .ticket__notch { background: var(--mist); }
.section:not(.section--mist) .ticket__notch { background: var(--white); }

.ticket__seam {
    border-top: 2px dashed var(--border-soft);
    margin: 0 22px;
}

.ticket__body {
    padding: 24px 22px 28px;
}

.ticket__body h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.ticket__body p {
    font-size: 0.96rem;
}

/* ===== شارة الحالة (لأنيميشن الهيرو) ===== */
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    background: var(--ticket-amber);
    box-shadow: 0 0 0 0 rgba(232,163,61,.6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(232,163,61,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(232,163,61,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,163,61,0); }
}

/* ===== كروت عادية ===== */
.card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 28px;
}

/* ===== شبكة عامة ===== */
.grid {
    display: grid;
    gap: 28px;
}

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

@media (max-width: 900px) {
    .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ===== الإحصائيات ===== */
.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--ink-navy);
}

.stat__label {
    color: var(--slate);
    font-size: 0.95rem;
    margin-top: 6px;
}
