/* ==========================================================================
   MAHARASHTRA VOLLEYBALL ASSOCIATION (MVA)
   Components CSS - Header, Hero, Cards, Scoreboards, Modals, Forms & Dashboards
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOP BAR & MAIN NAVIGATION
   -------------------------------------------------------------------------- */
.top-header-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-cta-btns {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-cta-btn {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--neutral-white);
    background: rgba(255, 255, 255, 0.12);
    transition: all var(--transition-fast);
}

.top-cta-btn:hover {
    background: var(--accent-saffron);
    color: var(--neutral-white);
}

.top-cta-btn.highlight {
    background: var(--accent-saffron);
}

.top-cta-btn.highlight:hover {
    background: var(--accent-saffron-hover);
}

/* Main Navbar */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-navy);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.7rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-saffron);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Nav Dropdown (More Menu) */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-white);
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.4);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all var(--transition-fast);
}

.dropdown-toggle-btn:hover {
    background: var(--accent-saffron);
    color: var(--neutral-white);
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 220px;
    padding: 0.5rem 0;
    display: none;
    flex-direction: column;
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu-list,
.nav-item-dropdown.active .dropdown-menu-list {
    display: flex;
}

.dropdown-item-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 1.25rem;
    transition: all var(--transition-fast);
    display: block;
}

.dropdown-item-link:hover {
    background: var(--accent-saffron);
    color: var(--neutral-white);
    padding-left: 1.5rem;
}

.search-trigger-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--neutral-white);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background var(--transition-fast);
}

.search-trigger-btn:hover {
    background: var(--accent-saffron);
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--neutral-white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 60%, #152B48 100%);
    color: var(--neutral-white);
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero-overlay-graphic {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--accent-saffron);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--neutral-white);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-title span {
    color: var(--accent-saffron);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-graphic-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.live-match-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--status-live);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--status-live);
    animation: pulse-live 1.2s infinite;
}

/* --------------------------------------------------------------------------
   3. NOTICES & MARQUEE WIDGET
   -------------------------------------------------------------------------- */
.notices-ticker-wrapper {
    background-color: var(--accent-saffron);
    color: var(--neutral-white);
    padding: 0.6rem 0;
    font-family: var(--font-heading);
}

.notices-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}

.notice-label {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-scroll-text {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    gap: 3rem;
    animation: marquee-scroll 25s linear infinite;
}

.notice-scroll-text:hover {
    animation-play-state: paused;
}

.notice-scroll-text a {
    color: var(--neutral-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.notice-scroll-text a:hover {
    text-decoration: underline;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   4. STATISTICS CARDS
   -------------------------------------------------------------------------- */
.stats-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

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

.stat-card {
    background: var(--surface-card);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--accent-saffron);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-muted);
}

/* --------------------------------------------------------------------------
   5. OFFICE BEARERS & COMMITTEES
   -------------------------------------------------------------------------- */
.bearers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.bearer-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.bearer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-saffron);
}

.bearer-image-wrapper {
    height: 280px;
    width: 100%;
    background: var(--surface-alt);
    position: relative;
    overflow: hidden;
}

.bearer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-normal);
}

.bearer-card:hover .bearer-img {
    transform: scale(1.05);
}

.bearer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E3E62, #0B192C);
    color: rgba(255, 255, 255, 0.5);
}

.bearer-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bearer-designation {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-saffron);
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.bearer-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.bearer-zone-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-muted);
    background: var(--surface-alt);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.85rem;
    width: fit-content;
}

.bearer-profile {
    font-size: 0.88rem;
    color: var(--neutral-muted);
    line-height: 1.5;
}

/* Committee Tab Component */
.committee-tabs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    scrollbar-width: thin;
}

.committee-tab-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--neutral-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.committee-tab-btn:hover, .committee-tab-btn.active {
    background: var(--primary-navy);
    color: var(--neutral-white);
    border-color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   6. ZONE & DISTRICT DIRECTORY
   -------------------------------------------------------------------------- */
.directory-filters {
    background: var(--surface-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filter-input-group {
    flex: 1;
    min-width: 240px;
}

.filter-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neutral-muted);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.65rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--surface-card);
    color: var(--neutral-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-saffron);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.card-item {
    background: var(--surface-card);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-saffron);
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.card-body-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-key {
    color: var(--neutral-muted);
    font-weight: 500;
}

.detail-val {
    color: var(--primary-navy);
    font-weight: 700;
    text-align: right;
}

/* --------------------------------------------------------------------------
   7. PATHWAY & GRAPHICS
   -------------------------------------------------------------------------- */
.pathway-wrapper {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #152B48 100%);
    color: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
}

.pathway-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
}

.pathway-step {
    flex: 1;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    transition: all var(--transition-normal);
}

.pathway-step:hover {
    background: var(--accent-saffron);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.pathway-step-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pathway-step:hover .pathway-step-num {
    color: var(--neutral-white);
}

.pathway-step-title {
    font-size: 1.05rem;
    font-weight: 800;
}

.pathway-arrow {
    color: var(--accent-saffron);
    font-size: 1.5rem;
    font-weight: 900;
}

/* --------------------------------------------------------------------------
   8. TOURNAMENT SCOREBOARD & LIVE MATCH TICKER
   -------------------------------------------------------------------------- */
.match-card {
    background: var(--surface-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.match-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.teams-vs-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.score-display-pill {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent-saffron);
    background: var(--surface-alt);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-md);
    letter-spacing: 2px;
}

.set-breakdown {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--neutral-muted);
    font-weight: 600;
    background: var(--surface-alt);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   9. TABLES & RANKINGS
   -------------------------------------------------------------------------- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: var(--surface-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.custom-table th {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.25rem;
}

.custom-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--neutral-dark);
}

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

.custom-table tbody tr:hover {
    background-color: rgba(255, 107, 0, 0.04);
}

/* --------------------------------------------------------------------------
   10. MVA PORTAL & DASHBOARDS
   -------------------------------------------------------------------------- */
.portal-container {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.portal-header-banner {
    background: linear-gradient(135deg, var(--primary-navy), #1A365D);
    color: var(--neutral-white);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.role-switcher-grid {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    background: var(--surface-alt);
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.role-btn {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    color: var(--neutral-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.role-btn.active {
    background: var(--accent-saffron);
    color: var(--neutral-white);
    box-shadow: var(--shadow-sm);
}

.dashboard-panel-body {
    padding: 2rem;
}

/* --------------------------------------------------------------------------
   11. MODALS & GLOBAL SEARCH
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 15, 27, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface-alt);
}

.modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-muted);
}

.modal-body {
    padding: 1.5rem;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    display: none;
    color: var(--neutral-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 4.5rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--accent-saffron);
}

.bottom-copyright-bar {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}
