/**
 * Al-Sorouh Exhibition Hall Plan & Booth Reservation System Styles
 *
 * Scoped, responsive, high-performance styling for interactive SVG floor plans,
 * booth hover/tap states, floating tooltips, accessible modal dialogs, and controls.
 */

:root {
    --alsorouh-navy: #071526;
    --alsorouh-navy-light: #0d223f;
    --alsorouh-blue: #1d4ed8;
    --alsorouh-blue-glow: rgba(29, 78, 216, 0.4);
    --alsorouh-orange: #f26a21;
    --alsorouh-slate-50: #f8fafc;
    --alsorouh-slate-100: #f1f5f9;
    --alsorouh-slate-200: #e2e8f0;
    --alsorouh-slate-300: #cbd5e1;
    --alsorouh-slate-500: #64748b;
    --alsorouh-slate-700: #334155;
    --alsorouh-slate-900: #0f172a;
    --alsorouh-emerald: #10b981;
    --alsorouh-rose: #e11d48;
}

/* ==========================================================================
   Full-Bleed Header & Zero Gap Integration
   ========================================================================== */
.site-content.alsorouh-exhibition-single-wrap,
.site-content.alsorouh-exhibitions-archive-wrap,
.single-exhibition #content,
.post-type-archive-exhibition #content {
    padding-top: 0 !important;
}

.alsorouh-exhibition-single-wrap > main,
.alsorouh-exhibitions-archive-wrap > main,
.alsorouh-exhibition-main,
.alsorouh-archive-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.alsorouh-exh-hero,
.alsorouh-archive-hero {
    margin-top: 0 !important;
}

/* ==========================================================================
   Hall Plan Experience Container
   ========================================================================== */
.alsorouh-hall-plan-experience {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    background: #ffffff;
    border: 1px solid var(--alsorouh-slate-200);
    border-radius: 12px;
    box-shadow: 0 10px 35px -5px rgba(7, 21, 38, 0.08), 0 0 0 1px rgba(7, 21, 38, 0.03);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--alsorouh-slate-900);
}

/* Header & Controls Bar */
.alsorouh-plan-header-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--alsorouh-slate-50);
    border-bottom: 1px solid var(--alsorouh-slate-200);
}

/* Stats Badges */
.alsorouh-plan-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.alsorouh-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 500;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid var(--alsorouh-slate-200);
    color: var(--alsorouh-slate-700);
}

.alsorouh-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.alsorouh-stat-available .alsorouh-stat-dot {
    background: var(--alsorouh-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.alsorouh-stat-reserved .alsorouh-stat-dot {
    background: var(--alsorouh-rose);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

.alsorouh-stat-number {
    font-weight: 700;
    color: var(--alsorouh-slate-900);
}

/* Toolbar & Zoom Controls */
.alsorouh-plan-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.alsorouh-zone-filters {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--alsorouh-slate-200);
    border-radius: 8px;
    padding: 2px;
    gap: 2px;
}

.alsorouh-zone-filter-title {
    padding: 0 0.5rem 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--alsorouh-slate-500);
    text-transform: uppercase;
}

.alsorouh-zone-btn {
    border: none;
    background: transparent;
    color: var(--alsorouh-slate-700);
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.alsorouh-zone-btn:hover {
    background: var(--alsorouh-slate-100);
    color: var(--alsorouh-slate-900);
}

.alsorouh-zone-btn.active {
    background: var(--alsorouh-navy);
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(7, 21, 38, 0.2);
}

.alsorouh-zoom-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border: 1px solid var(--alsorouh-slate-200);
    border-radius: 8px;
    padding: 2px;
}

.alsorouh-zoom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--alsorouh-slate-700);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.alsorouh-zoom-btn:hover {
    background: var(--alsorouh-slate-100);
    color: var(--alsorouh-slate-900);
}

.alsorouh-zoom-btn:focus-visible {
    outline: 2px solid var(--alsorouh-blue);
    outline-offset: 1px;
}

/* User Instruction Hint */
.alsorouh-plan-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--alsorouh-slate-200);
    font-size: 0.8rem;
    color: var(--alsorouh-slate-500);
}

.alsorouh-hint-icon {
    font-size: 1rem;
}

.alsorouh-hint-drag {
    margin-left: auto;
    font-style: italic;
    opacity: 0.85;
}

/* ==========================================================================
   Interactive SVG Viewport
   ========================================================================== */
.alsorouh-viewport-container {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 72vh;
    max-height: 820px;
    background: #ffffff;
    overflow: hidden;
    user-select: none;
    cursor: grab;
    cursor: -webkit-grab;
}

.alsorouh-viewport-container.is-dragging {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.alsorouh-viewport-container.is-fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    z-index: 99990;
    border-radius: 0;
}

.alsorouh-svg-pan-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    will-change: transform;
}

.alsorouh-svg-pan-layer svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Scroll Zoom Hint Overlay (Ctrl + Scroll)
   ========================================================================== */
.alsorouh-scroll-hint-overlay {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 21, 38, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.alsorouh-scroll-hint-overlay.is-visible {
    opacity: 1;
}

.alsorouh-scroll-hint-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(7, 21, 38, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.alsorouh-scroll-hint-overlay.is-visible .alsorouh-scroll-hint-content {
    transform: scale(1);
}

.alsorouh-scroll-hint-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E33D00;
}

.alsorouh-scroll-hint-icon svg {
    display: block;
}

.alsorouh-scroll-hint-text {
    white-space: nowrap;
}

/* ==========================================================================
   SVG Interactive Booth Rules
   ========================================================================== */

/* Fixed assets in #FIXED: completely non-clickable */
#FIXED,
#FIXED * {
    pointer-events: none !important;
    cursor: default !important;
}

/* Base Booth Styling */
#BOOTHS > g {
    cursor: pointer;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

#BOOTHS > g rect.booth-fill {
    transition: fill-opacity 0.2s ease, fill 0.2s ease;
}

/* Hover on Available Booths */
#BOOTHS > g:not(.booth-reserved):hover {
    filter: drop-shadow(0 0 3.5px rgba(29, 78, 216, 0.75));
}

#BOOTHS > g:not(.booth-reserved):hover rect.booth-fill {
    fill-opacity: 0.38 !important;
}

#BOOTHS > g:not(.booth-reserved):focus-visible {
    outline: 2px solid var(--alsorouh-blue);
}

/* Active / Selected Booth state */
#BOOTHS > g.booth-selected {
    filter: drop-shadow(0 0 6px rgba(242, 106, 33, 0.95)) !important;
}

#BOOTHS > g.booth-selected rect.booth-fill {
    fill-opacity: 0.5 !important;
}

/* Reserved Booth Styling */
#BOOTHS > g.booth-reserved {
    cursor: not-allowed;
}

#BOOTHS > g.booth-reserved rect.booth-fill {
    fill: #dc2626 !important;
    fill-opacity: 0.28 !important;
}

#BOOTHS > g.booth-reserved rect[id^="BORDERS"] {
    stroke: #e11d48 !important;
    stroke-opacity: 0.8 !important;
    stroke-width: 1.1px !important;
    stroke-dasharray: 2 1.5 !important;
}

#BOOTHS > g.booth-reserved text {
    opacity: 0.65;
}

#BOOTHS > g.booth-reserved:hover {
    filter: drop-shadow(0 0 2px rgba(225, 29, 72, 0.5));
}

/* Zone Filter Dimming */
#BOOTHS > g.booth-dimmed {
    opacity: 0.18;
    pointer-events: none;
}

/* Legend Swatch styling */
.legend-swatch-reserved {
    filter: drop-shadow(0 0 1px rgba(225, 29, 72, 0.5));
}

/* Booths with Pending Requests (not yet approved) */
#BOOTHS > g.booth-has-requests:not(.booth-reserved) rect.booth-fill {
    fill: #f59e0b !important;
    fill-opacity: 0.22 !important;
}

#BOOTHS > g.booth-has-requests:not(.booth-reserved) rect[id^="BORDERS"] {
    stroke: #d97706 !important;
    stroke-opacity: 0.85 !important;
    stroke-width: 1.1px !important;
}

#BOOTHS > g.booth-has-requests:not(.booth-reserved):hover {
    filter: drop-shadow(0 0 4.5px rgba(245, 158, 11, 0.9)) !important;
}

#BOOTHS > g.booth-has-requests:not(.booth-reserved):hover rect.booth-fill {
    fill-opacity: 0.38 !important;
}

/* ==========================================================================
   Floating Tooltip
   ========================================================================== */
.alsorouh-booth-tooltip {
    position: absolute;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -100%) translateY(-10px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    background: rgba(7, 21, 38, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    min-width: 140px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.alsorouh-booth-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -100%) translateY(-14px);
}

.alsorouh-tooltip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.alsorouh-tooltip-booth {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.alsorouh-tooltip-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.25);
    color: #34d399;
}

.alsorouh-tooltip-status.is-reserved {
    background: rgba(225, 29, 72, 0.3);
    color: #fb7185;
}

.alsorouh-tooltip-status.is-requested {
    background: rgba(245, 158, 11, 0.28);
    color: #fbbf24;
}

.alsorouh-tooltip-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alsorouh-tooltip-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.775rem;
    color: rgba(255, 255, 255, 0.75);
}

.alsorouh-tt-val {
    font-weight: 600;
    color: #ffffff;
}

.alsorouh-tooltip-footer {
    margin-top: 0.45rem;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    font-size: 0.725rem;
    color: var(--alsorouh-orange);
    font-weight: 600;
    text-align: center;
}

.alsorouh-tooltip-footer.is-reserved {
    color: #fb7185;
}

.alsorouh-tooltip-footer.is-requested {
    color: #fbbf24;
}

/* ==========================================================================
   Toast Notification Notice
   ========================================================================== */
.alsorouh-toast-notice {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: #0f172a;
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 200;
    pointer-events: none;
}

.alsorouh-toast-notice.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Accessible Modal Dialog
   ========================================================================== */
.alsorouh-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(7, 21, 38, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.alsorouh-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.alsorouh-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(7, 21, 38, 0.35), 0 0 0 1px rgba(7, 21, 38, 0.05);
    transform: scale(0.94) translateY(10px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.alsorouh-modal-backdrop.is-open .alsorouh-modal-card {
    transform: scale(1) translateY(0);
}

.alsorouh-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--alsorouh-slate-100);
    color: var(--alsorouh-slate-500);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s ease;
}

.alsorouh-modal-close:hover {
    background: var(--alsorouh-slate-200);
    color: var(--alsorouh-slate-900);
}

.alsorouh-modal-close:focus-visible {
    outline: 2px solid var(--alsorouh-blue);
    outline-offset: 2px;
}

/* Modal Header */
.alsorouh-modal-header {
    margin-bottom: 1.25rem;
    padding-right: 2rem;
}

.alsorouh-modal-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(242, 106, 33, 0.12);
    color: var(--alsorouh-orange);
    border-radius: 9999px;
    margin-bottom: 0.45rem;
}

.alsorouh-modal-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--alsorouh-navy);
    line-height: 1.3;
}

.alsorouh-modal-subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: var(--alsorouh-slate-500);
}

/* Selected Booth Summary Banner */
.alsorouh-selected-booth-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    background: var(--alsorouh-slate-50);
    border: 1px solid var(--alsorouh-slate-200);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alsorouh-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alsorouh-sum-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--alsorouh-slate-500);
}

.alsorouh-sum-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--alsorouh-slate-900);
}

.alsorouh-sum-val.alsorouh-highlight {
    color: var(--alsorouh-blue);
}

/* Modal Pending Alert Callout */
.alsorouh-modal-pending-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #92400e;
}

.alsorouh-modal-pending-alert .alsorouh-pending-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Form Controls */
.alsorouh-form-row {
    margin-bottom: 1rem;
}

.alsorouh-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.alsorouh-form-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--alsorouh-slate-700);
}

.alsorouh-form-label .required {
    color: var(--alsorouh-rose);
}

.alsorouh-form-label .optional {
    font-weight: 400;
    color: var(--alsorouh-slate-500);
    font-size: 0.775rem;
}

.alsorouh-input,
.alsorouh-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    border: 1.5px solid var(--alsorouh-slate-300);
    border-radius: 8px;
    background: #ffffff;
    color: var(--alsorouh-slate-900);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.alsorouh-input:focus,
.alsorouh-textarea:focus {
    outline: none;
    border-color: var(--alsorouh-blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.alsorouh-input.is-invalid,
.alsorouh-textarea.is-invalid {
    border-color: var(--alsorouh-rose);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.alsorouh-textarea {
    resize: vertical;
}

.alsorouh-form-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.alsorouh-form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alsorouh-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--alsorouh-slate-200);
}

.alsorouh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    text-decoration: none;
}

.alsorouh-btn-secondary {
    background: var(--alsorouh-slate-100);
    color: var(--alsorouh-slate-700);
}

.alsorouh-btn-secondary:hover {
    background: var(--alsorouh-slate-200);
    color: var(--alsorouh-slate-900);
}

.alsorouh-btn-primary {
    background: var(--alsorouh-navy);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(7, 21, 38, 0.2);
}

.alsorouh-btn-primary:hover {
    background: var(--alsorouh-orange);
    box-shadow: 0 4px 18px rgba(242, 106, 33, 0.35);
}

.alsorouh-btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

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

.alsorouh-spin-icon {
    width: 18px;
    height: 18px;
    animation: alsorouh-spin 0.8s linear infinite;
}

@keyframes alsorouh-spin {
    to { transform: rotate(360deg); }
}

/* Success View */
.alsorouh-modal-success-view {
    text-align: center;
    padding: 1rem 0;
}

.alsorouh-success-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #dcfce7;
    margin-bottom: 1.25rem;
}

.alsorouh-success-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--alsorouh-navy);
    margin: 0 0 0.5rem;
}

.alsorouh-success-msg {
    font-size: 0.95rem;
    color: var(--alsorouh-slate-500);
    margin: 0 0 1.5rem;
}

.alsorouh-success-card {
    background: var(--alsorouh-slate-50);
    border: 1px solid var(--alsorouh-slate-200);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
    .alsorouh-plan-header-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .alsorouh-plan-toolbar {
        justify-content: space-between;
    }

    .alsorouh-form-grid-2 {
        grid-template-columns: 1fr;
    }

    .alsorouh-viewport-container {
        height: 60vh;
        min-height: 380px;
    }

    .alsorouh-modal-card {
        padding: 1.5rem;
    }

    .alsorouh-hint-drag {
        display: none;
    }
}

/* ==========================================================================
   Arabic / RTL Specific Enhancements
   ========================================================================== */
.alsorouh-hall-plan-experience[dir="rtl"],
.rtl .alsorouh-hall-plan-experience,
.alsorouh-exhibition-single-wrap[dir="rtl"],
.alsorouh-exhibitions-archive-wrap[dir="rtl"] {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .alsorouh-modal-card {
    text-align: right;
    direction: rtl;
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

[dir="rtl"] .alsorouh-modal-close {
    right: auto;
    left: 1.25rem;
}

[dir="rtl"] .alsorouh-success-card {
    text-align: right;
}

[dir="rtl"] .alsorouh-form-label .required {
    margin-right: 2px;
    margin-left: 0;
}

[dir="rtl"] .alsorouh-form-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .alsorouh-plan-hint {
    text-align: right;
}

[dir="rtl"] .alsorouh-plan-hint .alsorouh-hint-icon {
    margin-right: 0;
    margin-left: 6px;
}

[dir="rtl"] .alsorouh-booth-tooltip {
    text-align: right;
    direction: rtl;
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

