/*
 * Mushraq Theme - Modern Design inspired by Athr
 * Clean, minimal design with IBM Plex Sans Arabic font
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --font-primary: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --color-background: #ffffff;
    --color-background-alt: #f9f9f9;
    --color-foreground: #171717;
    --color-foreground-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-border-hover: #d1d5db;
    --color-primary: #000000;
    --color-primary-hover: #262626;
    --navbar-height: 64px;
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
}

/* ========================================
   Base Overrides
   ======================================== */
html, body {
    font-family: var(--font-primary) !important;
    background-color: var(--color-background);
    color: var(--color-foreground);
    direction: rtl;
    margin: 0;
    padding: 0;
}

body {
    margin-top: var(--navbar-height) !important;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
    font-weight: 600;
    color: var(--color-foreground);
}

p, a, span, div, input, button, label {
    font-family: var(--font-primary) !important;
}

/* ========================================
   Modern Navbar
   ======================================== */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    height: var(--navbar-height);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo and Brand */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.navbar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-foreground);
    letter-spacing: -0.025em;
}

.navbar-brand-modern:hover .navbar-title {
    color: var(--color-foreground);
}

/* Navigation Links */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-modern {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground-muted);
    text-decoration: none;
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

.nav-link-modern:hover {
    color: var(--color-foreground);
    background-color: var(--color-background-alt);
}

.nav-link-modern.active {
    color: var(--color-foreground);
    background-color: var(--color-background-alt);
}

/* Language Switch in Navbar */
.lang-switch-nav {
    background-color: var(--color-foreground) !important;
    color: var(--color-background) !important;
    font-weight: 600 !important;
    padding: 0.375rem 0.75rem !important;
}

.lang-switch-nav:hover {
    background-color: var(--color-primary-hover) !important;
    color: var(--color-background) !important;
}

/* Mobile Toggle Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.navbar-toggle:hover {
    background-color: var(--color-background-alt);
}

.toggle-bar {
    width: 18px;
    height: 2px;
    background-color: var(--color-foreground);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--color-foreground-muted);
}

/* Mobile Responsive - Keep nav links visible */
@media (max-width: 768px) {
    .navbar-nav-modern {
        display: flex;
        gap: 0.25rem;
    }

    .nav-link-modern {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }

    .lang-switch-nav {
        padding: 0.25rem 0.5rem !important;
    }

    .navbar-title {
        font-size: 1rem;
    }
}

/* ========================================
   Hide old navbar styles
   ======================================== */
.header-area,
.navbar-area,
.navbar.navbar-expand-lg {
    display: none !important;
}

/* ========================================
   Content Area Adjustments
   ======================================== */
.container {
    max-width: 1280px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ========================================
   Map Container
   ======================================== */
#map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Search Input
   ======================================== */
input[type="text"],
input[type="search"],
.form-control {
    font-family: var(--font-primary) !important;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

input[type="text"]:focus,
input[type="search"]:focus,
.form-control:focus {
    outline: none;
    border-color: var(--color-foreground);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Buttons
   ======================================== */
.btn,
button[type="submit"] {
    font-family: var(--font-primary) !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.btn-primary,
.main-btn {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.main-btn:hover {
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
}

/* ========================================
   Cards and Panels
   ======================================== */
.card,
.panel {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Tables
   ======================================== */
.table {
    font-family: var(--font-primary) !important;
}

.table th {
    font-weight: 600;
    color: var(--color-foreground);
    border-bottom: 2px solid var(--color-border);
}

.table td {
    color: var(--color-foreground);
    border-bottom: 1px solid var(--color-border);
}

/* ========================================
   Footer
   ======================================== */
.footer,
footer {
    background-color: var(--color-background-alt);
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p,
footer p {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
}

/* ========================================
   Leaflet Map Popup Overrides
   ======================================== */
.leaflet-popup-content-wrapper {
    font-family: var(--font-primary) !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    font-family: var(--font-primary) !important;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ========================================
   About Page
   ======================================== */
.about-section {
    padding: 3rem 0;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1rem;
    color: var(--color-foreground-muted);
    line-height: 1.8;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-muted {
    color: var(--color-foreground-muted) !important;
}

.bg-light {
    background-color: var(--color-background-alt) !important;
}

.border {
    border-color: var(--color-border) !important;
}

/* ========================================
   Animation
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-background-alt);
    padding: 1.5rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.powered-by:hover {
    color: var(--color-foreground);
}

.sirdab-logo {
    height: 24px;
}

/* ========================================
   Map Controls
   ======================================== */
.map-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.year-slider {
    width: 200px;
    accent-color: var(--color-foreground);
}

.year-display {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
    min-width: 50px;
}

.btn-toggle {
    padding: 0.5rem 1rem;
    background: var(--color-background);
    color: var(--color-foreground);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-toggle:hover {
    background: var(--color-background-alt);
    border-color: var(--color-border-hover);
}

.btn-toggle.active {
    background: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
}

/* ========================================
   Property Popup Styles
   ======================================== */
.property-popup {
    min-width: 280px;
}

.property-popup h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--color-foreground);
}

.property-popup p {
    font-size: 0.875rem;
    margin: 0.25rem 0;
    color: var(--color-foreground-muted);
}

.property-popup canvas {
    margin: 1rem 0;
}

.btn-details {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-foreground);
    color: var(--color-background) !important;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.btn-details:hover {
    background: var(--color-primary-hover);
    text-decoration: none;
}

/* ========================================
   Mobile-First Layout
   ======================================== */
.mobile-first-layout {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

/* ========================================
   App Header (Compact)
   ======================================== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    height: 56px;
    box-sizing: border-box;
}

.header-brand {
    flex-shrink: 0;
}

.header-logo {
    height: 32px;
    width: auto;
}

.header-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--color-background-alt);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    min-width: 0;
}

.header-search input:focus {
    outline: none;
}

.header-search input::placeholder {
    color: var(--color-foreground-muted);
}

.header-search button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--color-foreground-muted);
    cursor: pointer;
}

.header-search button:hover {
    color: var(--color-foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-actions button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-foreground);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.header-actions button:hover {
    background: var(--color-background-alt);
}

.filter-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .filter-badge {
    right: auto;
    left: -4px;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-foreground);
    color: var(--color-background) !important;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.lang-switch:hover {
    background: var(--color-primary-hover);
    text-decoration: none;
}

/* ========================================
   Filter Drawer
   ======================================== */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.filter-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--color-background);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .filter-drawer {
    right: auto;
    left: -320px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.filter-drawer.open {
    right: 0;
}

[dir="rtl"] .filter-drawer.open {
    right: auto;
    left: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.drawer-header h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.drawer-header button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--color-foreground-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.drawer-header button:hover {
    background: var(--color-background-alt);
    color: var(--color-foreground);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.drawer-filter-group {
    margin-bottom: 1.5rem;
}

.drawer-filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.drawer-filter-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-filter-range input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: var(--font-primary);
}

.drawer-filter-range input:focus {
    outline: none;
    border-color: var(--color-foreground);
}

.drawer-filter-range span {
    color: var(--color-foreground-muted);
}

/* Year Slider */
.drawer-year-slider {
    padding-top: 0.5rem;
}

.year-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.year-range-display {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.year-slider-container {
    position: relative;
    height: 24px;
    margin-bottom: 0.5rem;
}

.year-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    transform: translateY(-50%);
}

.year-slider-range {
    position: absolute;
    top: 50%;
    height: 4px;
    background: var(--color-foreground);
    border-radius: 2px;
    transform: translateY(-50%);
}

.year-slider-container input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.year-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-foreground);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid var(--color-background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.year-slider-container input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--color-foreground);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid var(--color-background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.year-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.year-tick {
    font-size: 0.625rem;
    color: var(--color-foreground-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.year-tick.active {
    color: var(--color-foreground);
    font-weight: 500;
}

.year-tick:hover {
    color: var(--color-foreground);
}

/* Drawer Stats */
.drawer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-background-alt);
}

.stat-chip {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    background: var(--color-background);
    padding: 0.375rem 0.625rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
}

.stat-chip strong {
    color: var(--color-foreground);
    font-weight: 600;
}

/* Drawer Actions */
.drawer-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--color-border);
}

.drawer-actions .btn-primary {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.drawer-actions .btn-primary:hover {
    background: var(--color-primary-hover);
}

.drawer-actions .btn-secondary {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--color-background);
    color: var(--color-foreground);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.drawer-actions .btn-secondary:hover {
    background: var(--color-background-alt);
}

/* ========================================
   Map Container (Full Height)
   ======================================== */
.map-container {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-container .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

/* ========================================
   Loading Overlay
   ======================================== */
.loading-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.loading-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.skeleton-parcel {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, var(--color-border) 25%, var(--color-background-alt) 50%, var(--color-border) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading-text {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
}

/* ========================================
   Compact Popup Styles
   ======================================== */
.popup-compact {
    min-width: 220px;
    font-family: var(--font-primary);
}

.popup-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.popup-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.popup-plan {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
}

.popup-body {
    margin-bottom: 0.75rem;
}

.popup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.popup-label {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
}

.popup-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.popup-history {
    margin: 0.75rem 0;
    padding: 0.5rem;
    background: var(--color-background-alt);
    border-radius: 6px;
}

.popup-table {
    width: 100%;
    font-size: 0.75rem;
    border-collapse: collapse;
}

.popup-table th {
    padding: 0.375rem 0.25rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

[dir="rtl"] .popup-table th {
    text-align: right;
}

.popup-table td {
    padding: 0.375rem 0.25rem;
    color: var(--color-foreground-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.popup-table td:last-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-foreground);
}

[dir="rtl"] .popup-table td:last-child {
    text-align: right;
}

.popup-cta {
    display: block;
    width: 100%;
    padding: 0.625rem;
    background: var(--color-foreground);
    color: var(--color-background) !important;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.popup-cta:hover {
    background: var(--color-primary-hover);
    text-decoration: none;
}

/* ========================================
   LTR Support
   ======================================== */
.navbar-ltr,
.footer-ltr {
    direction: ltr;
}

.footer-ltr .footer-container {
    flex-direction: row;
}
