/* ==========================================================================
   Rainham Mercy Association — Unique Modern Islamic Design System
   Location: Rainham / Gillingham, Kent (ME8 7SG)
   ========================================================================== */

/* ─── Google Fonts Import ───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=Amiri&display=swap');

/* ─── CSS Variables & Design Tokens ───────────────────────────────────── */
:root {
    /* Brand Colors */
    --rma-lapis:   #12296B;
    --rma-saffron: #E9A800;
    --rma-palesky: #DDE6F5;
    --rma-madder:  #A8243B;
    --rma-ink:     #0B1531;
    --rma-white:   #FFFFFF;
    --rma-muted:   #5A6480;
    --rma-line:    #DCE3F1;

    /* Semantic Mapping */
    --bg-main: var(--rma-white);
    --bg-surface: var(--rma-palesky);
    --bg-card: var(--rma-white);
    --bg-card-hover: #f8fafc;
    --bg-glass: transparent;
    
    --primary: var(--rma-lapis);
    --primary-light: #204099;
    --primary-glow: rgba(18, 41, 107, 0.15);
    
    --accent-gold: var(--rma-saffron);
    --accent-gold-light: #fbc629;
    --accent-gold-glow: rgba(233, 168, 0, 0.15);
    
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1eaf53;
    
    --text-main: var(--rma-ink);
    --text-muted: var(--rma-muted);
    --text-dim: #8b97b0;
    --border-color: var(--rma-line);
    --border-glow: rgba(18, 41, 107, 0.1);
    --border-teal: rgba(233, 168, 0, 0.3);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
    --font-arabic: 'Amiri', serif;
    
    /* Layout & Utilities */
    --container-max: 1400px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 4px 15px rgba(11, 21, 49, 0.05);
    --shadow-glow: 0 0 25px rgba(18, 41, 107, 0.1);
}

/* ─── CSS Reset & Base Styles ────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-surface);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* ─── Container Utility ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ─── Section Padding & Typography Standards ────────────────────────── */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rma-ink);
    background: var(--rma-saffron);
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    border: none;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rma-ink);
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ─── Buttons Design System ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-gold {
    background: var(--rma-saffron);
    color: var(--rma-ink) !important;
    border: none;
}

.btn-gold:hover {
    background: #fbc629;
    transform: translateY(-2px);
    color: var(--rma-ink) !important;
}

.btn-primary {
    background: var(--rma-lapis);
    color: var(--rma-white) !important;
    border: none;
}

.btn-primary:hover {
    background: #204099;
    transform: translateY(-2px);
    color: var(--rma-white) !important;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--rma-ink) !important;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    color: var(--rma-ink) !important;
}

.btn-outline {
    background: transparent;
    color: var(--rma-lapis) !important;
    border: 1.5px solid var(--rma-lapis);
}

.btn-white {
    background: var(--rma-white);
    color: var(--rma-ink) !important;
    border: none;
}

.btn-white:hover {
    background: var(--rma-palesky);
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: rgba(18, 41, 107, 0.05);
    border-color: var(--rma-lapis);
    color: var(--rma-lapis) !important;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--rma-white) !important;
    border: 1.5px solid var(--rma-white);
}

.btn-outline-white:hover {
    background: transparent;
    border-color: var(--rma-white);
    color: var(--rma-white) !important;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.97) !important;
    transition-duration: 0.1s;
}

/* ─── Site Header & Navigation Bar ───────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--rma-ink);
    border-bottom: 2px solid var(--rma-saffron);
    transition: var(--transition-fast);
}

.top-announcement-bar {
    background: var(--rma-ink);
    border-bottom: 1px solid rgba(233, 168, 0, 0.4);
    padding: 0.4rem 0;
    font-size: 0.825rem;
    color: var(--rma-palesky);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.announcement-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.location-tag, .est-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.location-tag i { color: var(--primary-light); }
.est-tag i { color: var(--accent-gold-light); }

.next-prayer-ticker {
    color: #e2e8f0;
}

.next-prayer-ticker strong {
    color: var(--accent-gold-light);
}

.main-nav {
    padding: 0.85rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none !important;
    flex-shrink: 0;
}

.logo-emblem {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rma-white);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--rma-palesky);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation List & Actions */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    display: inline-block;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--rma-white) !important;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--rma-saffron) !important;
    background: transparent;
}

.nav-link i {
    font-size: 0.85rem;
    color: var(--rma-saffron);
}

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

.nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--accent-gold);
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* ─── Hero Section ───────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem 0;
    text-align: center;
    background-color: var(--rma-lapis);
    color: var(--rma-white);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.bismillah-wrapper {
    margin-bottom: 1.5rem;
}

.bismillah-calligraphy {
    font-family: var(--font-arabic);
    font-size: 2.4rem;
    color: var(--accent-gold-light);
    display: block;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.bismillah-translation {
    font-size: 0.875rem;
    color: var(--rma-palesky);
    font-style: italic;
    margin-top: 0.25rem;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rma-palesky);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--rma-saffron);
    box-shadow: 0 0 10px var(--rma-saffron);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--rma-saffron); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

@keyframes heroMeshFloat {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: translateY(20px) scale(0.9); opacity: 0; }
    60% { transform: translateY(-4px) scale(1.02); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes goldBorderPulse {
    0%, 100% { border-color: rgba(245, 158, 11, 0.2); box-shadow: 0 0 20px rgba(245, 158, 11, 0.05); }
    50% { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 0 30px rgba(245, 158, 11, 0.12); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--rma-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 6px;
    background-color: var(--rma-saffron);
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--rma-palesky);
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    font-weight: 400;
}

/* Hero Live Prayer Widget */
.hero-prayer-widget {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    max-width: 480px;
    margin: 0 auto 2.5rem auto;
    box-shadow: var(--shadow-card);
}

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

.widget-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.widget-label i { color: var(--accent-gold-light); }

.widget-prayer-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.widget-time-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.time-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rma-ink);
}

.countdown-badge {
    text-align: right;
}

.cd-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.cd-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: monospace;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-group .btn i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-group .btn:hover i {
    transform: translateX(3px);
}

/* ─── Scroll Reveal Animations ───────────────────────────────────────── */
.section-padding {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-padding.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure hero is always visible (no reveal needed) */
.hero-section {
    opacity: 1 !important;
    transform: none !important;
}

/* ─── Prayer Timetable Section ───────────────────────────────────────── */
.prayers-section {
    background: var(--rma-white);
    position: relative;
}

/* ─── Compact Prayer Card ────────────────────────────────────────────── */
.compact-prayer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
}

.compact-prayer-header {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    background: var(--rma-ink);
}

.compact-prayer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rma-saffron);
}

.compact-prayer-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--rma-white);
    margin-bottom: 0.5rem;
}

.compact-prayer-date {
    font-size: 0.95rem;
    color: var(--rma-palesky);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.date-divider {
    margin: 0 0.75rem;
    color: var(--rma-saffron);
}

.compact-prayer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--border-color); /* Acts as the border between cells */
    gap: 1px; /* Creates the inner borders */
}

.compact-prayer-item {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background 0.3s ease;
    position: relative;
}

.prayer-name-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--rma-muted);
    margin-bottom: 0.5rem;
}

.prayer-time-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--rma-ink);
}

/* Active Prayer Highlight */
.compact-prayer-item.active-prayer {
    background: var(--rma-ink);
    box-shadow: inset 0 0 0 1px var(--rma-ink);
}

.compact-prayer-item.active-prayer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rma-saffron);
}

.compact-prayer-item.active-prayer .prayer-name-label {
    color: var(--rma-palesky);
}

.compact-prayer-item.active-prayer .prayer-time-value {
    color: var(--rma-saffron);
}

.compact-prayer-footer {
    background: var(--rma-saffron);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.compact-prayer-footer * {
    color: var(--rma-ink) !important;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--accent-gold-light);
    margin-bottom: 0.4rem;
}

.disclaimer-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.timetable-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.prayer-table,
.activities-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.prayer-table th,
.activities-table th {
    background: var(--rma-white);
    padding: 1.1rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.prayer-table td,
.activities-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid transparent;
    font-size: 1rem;
    vertical-align: middle;
}

.prayer-table tbody tr:hover,
.activities-table tbody tr:hover {
    background: var(--rma-palesky);
    transition: background 0.2s ease;
}

.prayer-name-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--rma-ink);
}

.prayer-name-cell i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.prayer-time-cell {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rma-ink);
}

.jamaat-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: transparent;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-th,
.status-cell {
    text-align: right;
}

.upcoming-badge {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Active Prayer Row Highlighting */
.prayer-table tr.active-prayer {
    background: linear-gradient(90deg, var(--rma-saffron), rgba(245, 158, 11, 0.15)) !important;
    border-left: 4px solid var(--accent-gold-light);
}

.prayer-table tr.active-prayer .prayer-name-cell {
    color: var(--accent-gold-light);
}

.prayer-table tr.active-prayer .prayer-name-cell i {
    background: var(--accent-gold-light);
    color: #0b132b;
}

.active-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b132b;
    font-weight: 700;
    font-size: 0.775rem;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

/* ─── Jumu'ah Section ─────────────────────────────────────────────────── */
.jummah-section {
    padding: 4rem 0;
}

.jummah-card-banner {
    background: var(--rma-saffron);
    border: none;
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.jummah-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--rma-ink);
    color: var(--rma-saffron);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.jummah-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rma-ink);
    margin-bottom: 0.75rem;
}

.jummah-sub {
    color: var(--rma-ink);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.jummah-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.jummah-detail-item {
    background: var(--rma-white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    transition: var(--transition-smooth);
}

.jummah-detail-item:hover {
    background: var(--rma-palesky);
    border-color: var(--border-teal);
    transform: translateY(-3px);
}

.jummah-detail-item i {
    font-size: 1.75rem;
    color: var(--primary-light);
}

.item-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-dim);
}

.item-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rma-ink);
}

.jummah-reminders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reminder-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--rma-ink);
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
}

.reminder-chip i { color: var(--rma-ink); }

/* ─── About Section ──────────────────────────────────────────────────── */
.about-centered {
    display: flex;
    justify-content: center;
}

.about-centered .about-content {
    max-width: 800px;
    text-align: center;
}

.about-paragraph {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}


/* ─── Vision Pillars Section ─────────────────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-teal);
    box-shadow: var(--shadow-glow);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--rma-saffron);
    border: 1px solid var(--border-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rma-ink);
    margin-bottom: 0.75rem;
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.975rem;
}

/* ─── Notices Section ────────────────────────────────────────────────── */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.notice-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.notice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 30px -10px rgba(245, 158, 11, 0.15);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notice-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--accent-gold-light);
}

.notice-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--rma-ink);
}

.notice-body {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── Skeleton Loading Placeholders ──────────────────────────────────── */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skeleton-card {
    pointer-events: none;
}

.skeleton-line {
    border-radius: 6px;
    background: linear-gradient(90deg, transparent 25%, transparent 50%, transparent 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.8s ease-in-out infinite;
}

.skeleton-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    background: linear-gradient(90deg, transparent 25%, transparent 50%, transparent 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.8s ease-in-out infinite;
}

.skeleton-title {
    height: 20px;
    width: 60%;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin-top: 0.75rem;
}

.skeleton-text.short {
    width: 70%;
}

.skeleton-table-row {
    height: 18px;
    width: 90%;
    margin: 0.5rem auto;
}

.skeleton-row td {
    padding: 1rem !important;
}

/* ─── Location & Map Section ─────────────────────────────────────────── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.address-box .icon {
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-top: 0.25rem;
}

.address-box h4 {
    font-size: 1.25rem;
    color: var(--rma-ink);
    margin-bottom: 0.5rem;
}

.address-box p {
    color: var(--text-muted);
    font-size: 0.975rem;
}

.action-buttons-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-embed-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

/* ─── Donation Section ───────────────────────────────────────────────── */
.donate-banner-card {
    background: linear-gradient(135deg, var(--rma-white) 0%, var(--rma-saffron) 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-card);
}

.donate-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.donate-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--rma-ink);
    margin-bottom: 0.75rem;
}

.donate-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Donation Iframe Wrapper */
.donate-iframe-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.donate-iframe-container {
    background: var(--rma-palesky);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.donate-iframe-container iframe {
    display: block;
    width: 100%;
    min-height: 700px;
    background: #ffffff;
    border-radius: var(--radius-md);
}

.donate-fallback {
    text-align: center;
    margin-top: 1.5rem;
}

.donate-fallback p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* ─── Membership Section ─────────────────────────────────────────────── */
.membership-section {
    position: relative;
    overflow: hidden;
}

.membership-banner-card {
    background: var(--rma-lapis);
    border: none;
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18, 41, 107, 0.15);
}

.membership-glow-orb {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--rma-saffron) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.15); }
}

.membership-content {
    position: relative;
    z-index: 2;
}

.membership-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.membership-benefit-card {
    background: var(--rma-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--rma-saffron);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: var(--transition-smooth);
    text-align: center;
}

.membership-benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-teal);
    box-shadow: 0 12px 35px -10px var(--rma-saffron);
    background: var(--rma-palesky);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--rma-saffron), var(--rma-palesky));
    border: 1px solid var(--border-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin: 0 auto 1.25rem auto;
    transition: var(--transition-smooth);
}

.membership-benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #0b132b;
    transform: scale(1.1);
}

.membership-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rma-ink);
    margin-bottom: 0.75rem;
}

.membership-benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.membership-iframe-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.membership-iframe-container {
    background: var(--rma-palesky);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.membership-iframe-container iframe {
    display: block;
    width: 100%;
    min-height: 700px;
    background: #ffffff;
    border-radius: var(--radius-md);
}

.membership-fallback {
    text-align: center;
    margin-top: 1.5rem;
}

.membership-fallback p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.membership-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.membership-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, transparent, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.membership-btn:hover::before {
    transform: translateX(100%);
}

.membership-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.membership-note i {
    color: var(--primary-light);
}

/* ─── Footer Section ─────────────────────────────────────────────────── */
.site-footer {
    background: #040812;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    color: var(--rma-palesky);
}

.footer-top-callout {
    margin-bottom: 3.5rem;
}

.quran-verse-card {
    background: var(--rma-white);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    animation: goldBorderPulse 4s ease-in-out infinite;
}

.quran-icon {
    font-size: 2rem;
    color: var(--rma-saffron);
    margin-bottom: 1rem;
}

.arabic-text {
    font-family: var(--font-arabic);
    font-size: 1.8rem;
    color: var(--rma-saffron);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.verse-translation {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.verse-ref {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rma-saffron);
    margin-bottom: 1rem;
}

.footer-logo i { color: var(--rma-saffron); }

.footer-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rma-palesky);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--rma-saffron);
    color: var(--rma-ink);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--rma-saffron);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.925rem;
    color: var(--rma-palesky);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rma-saffron);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--rma-saffron);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-address {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-address i { color: var(--rma-saffron); margin-right: 0.4rem; }

.footer-contact-item {
    font-size: 0.925rem;
    margin-bottom: 0.5rem;
}

.footer-contact-item i { color: var(--rma-saffron); margin-right: 0.4rem; }

.footer-whatsapp-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid transparent;
}

.footer-whatsapp-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid transparent;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.moonsighting-note {
    font-size: 0.775rem;
    margin-top: 0.25rem;
}

/* Back to Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    color: #0b132b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: #fbbf24;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    border: 1px solid var(--border-teal);
    color: var(--rma-ink);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2000;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

/* ─── Partners Section ───────────────────────────────────────────────── */
.partners-section {
    background: var(--rma-white);
}

.partners-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}

@media (max-width: 768px) {
    .partners-carousel-wrapper {
        padding: 0;
    }
    .partners-nav {
        display: none !important;
    }
}

.partners-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.partners-grid::-webkit-scrollbar {
    display: none;
}

.partners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-teal);
    background: var(--rma-white);
    backdrop-filter: blur(8px);
    color: var(--primary-light);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
}

.partners-nav.visible {
    opacity: 1;
    pointer-events: auto;
}

.partners-nav:hover {
    background: var(--primary-color);
    color: var(--rma-ink);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--rma-saffron);
}

.partners-nav-prev {
    left: 0;
}

.partners-nav-next {
    right: 0;
}

.partner-card {
    position: relative;
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 260px;
    scroll-snap-align: start;
    background: var(--rma-lapis);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top: 4px solid var(--rma-saffron);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 24px rgba(11, 21, 49, 0.15);
}

.partner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 21, 49, 0.4);
    border-color: var(--rma-saffron);
}

.partner-card h4 {
    color: var(--rma-white) !important;
}

.partner-card p {
    color: var(--rma-palesky) !important;
}

.partner-card h4 {
    color: var(--rma-white) !important;
}

.partner-card p {
    color: var(--rma-palesky) !important;
}

.discount-badge {
    background: var(--rma-saffron);
    color: var(--rma-ink);
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover .discount-badge {
    transform: translateY(-3px) scale(1.05);
}

.discount-badge i {
    font-size: 0.9rem;
    color: var(--rma-ink);
}

.partner-link-wrapper {
    width: 100%;
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-partner {
    width: 100%;
    background: var(--rma-saffron);
    color: var(--rma-ink) !important;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-partner:hover {
    background: #fbc629;
    color: var(--rma-ink) !important;
    transform: translateY(-3px);
}

.partner-logo-wrapper {
    width: 100%;
    max-width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    padding: 0.75rem;
}

.partner-card:hover .partner-logo-wrapper {
    transform: scale(1.1);
    border-color: var(--rma-saffron);
    box-shadow: 0 0 15px rgba(233, 168, 0, 0.4);
}

.partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rma-saffron);
    margin-bottom: 0.25rem;
}

.partner-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rma-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.partner-link-wrapper {
    width: 100%;
}

.partner-link-wrapper .btn {
    width: 100%;
}

/* ─── Venue Gallery Section ─────────────────────────────────────────── */
.venue-section {
    background: var(--rma-white);
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.venue-gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    aspect-ratio: 4 / 3;
}

.venue-gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-teal);
    box-shadow: 0 20px 40px -15px var(--rma-saffron);
}

.venue-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-gallery-item:hover img {
    transform: scale(1.05);
}

.venue-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(to top, var(--rma-palesky) 0%, var(--rma-palesky) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.venue-gallery-caption i {
    font-size: 1.1rem;
    color: var(--accent-gold-light);
    flex-shrink: 0;
}

.venue-gallery-caption .caption-text {
    display: flex;
    flex-direction: column;
}

.venue-gallery-caption .caption-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rma-ink);
}

.venue-gallery-caption .caption-sub {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* ─── Responsive Media Queries ───────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-title { font-size: 2.75rem; }
    .about-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .border-left { border-left: none; padding-left: 0; }
    .membership-banner-card { padding: 3rem 2rem; }
    .donate-banner-card { padding: 2.5rem 2rem; }
}

/* Header/Nav collapses to hamburger below this breakpoint */
@media (max-width: 1340px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #070c18;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 5.5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateY(-110%);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-menu.open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
        color: var(--accent-gold);
        padding: 0.5rem;
        z-index: 1000;
    }
    
    .nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .announcement-left { display: none; }
    
    .hero-title { font-size: 2.25rem; }
    .stat-boxes-grid { grid-template-columns: 1fr; }
    .venue-gallery-grid { grid-template-columns: 1fr; }
    .membership-banner-card { padding: 2rem 1.25rem; }
    .membership-benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .donate-iframe-container iframe { min-height: 600px; }
    .membership-iframe-container iframe { min-height: 600px; }
    .membership-btn { width: 100%; }
}

@media (max-width: 640px) {
    .compact-prayer-grid { grid-template-columns: repeat(2, 1fr); }
    .compact-prayer-title { font-size: 1.8rem; }
    .prayer-time-value { font-size: 1.5rem; }
    
    .brand-title {
        white-space: normal;
        font-size: 1rem;
        line-height: 1.2;
    }
    .brand-sub {
        font-size: 0.7rem;
    }
    .brand-logo {
        gap: 0.5rem;
    }
    .nav-container {
        gap: 0.5rem;
    }
}











.asr-label {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--rma-ink);
}

.compact-prayer-item.active-prayer .asr-label {
    color: var(--rma-palesky);
}


