/**
 * Forever Living - Central Information System
 * Consolidated Stylesheet - FIXED & OPTIMIZED
 * 
 * Brand Colors:
 * - Primary Yellow: #FFC600 (255, 198, 0)
 * - Black: #000000
 * - White: #FFFFFF
 * 
 * Typography:
 * - Headers (h1-h6): Salina
 * - Body/Everything Else: Helvetica Neue World, Helvetica Neue, Helvetica, Arial, sans-serif
 */

/* ============================================
   FONTS
   ============================================ */

@font-face {
    font-family: 'Salina';
    src: url('../fonts/Salina-Regular.woff2') format('woff2'),
         url('../fonts/Salina-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Salina';
    src: url('../fonts/Salina-Bold.woff2') format('woff2'),
         url('../fonts/Salina-Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue World';
    src: url('../fonts/HelveticaNeueWorld-55Roman.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue World';
    src: url('../fonts/HelveticaNeueWorld-75Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* ============================================
   CSS RESET & BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
    background-image: url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding-bottom: 90px; /* Space for fixed footer */
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6,
.modal-title,
.card-title {
    font-family: 'Salina', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #000000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p, span, div, a, li, td, th, label, input, textarea, select, button {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFC600;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navigation-clean-button {
    background: #000000;
    padding: 0.625rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    border: none;
}

.navbar-brand {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #FFC600;
}

.navbar-toggler {
    border-color: rgba(255, 198, 0, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFC600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    padding: 0.5rem 1.125rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #FFC600;
    background-color: rgba(255, 198, 0, 0.1);
}

.navbar-nav .nav-link i {
    margin-right: 0.25rem;
}

/* Dropdown Menus */
.navbar-nav .dropdown-menu {
    background-color: #FFFFFF;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    transition: all 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #FFC600;
    color: #000000;
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 1.25rem;
    text-align: center;
}

/* ============================================
   BUTTONS - FLP BRAND COLORS
   ============================================ */

.btn {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: none;
}

.btn:focus,
.btn:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 198, 0, 0.25);
}

/* Primary Button (FLP Yellow) */
.btn-primary,
.login-btn {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-color: #FFC600 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.login-btn:hover,
.login-btn:focus {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:active,
.login-btn:active {
    transform: translateY(1px);
}

/* Secondary Button (Black) */
.btn-secondary {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-color: #FFC600 !important;
}

/* Success Button (Green) */
.btn-success {
    background-color: #198754 !important;
    color: #FFFFFF !important;
    border-color: #198754 !important;
}

.btn-success:hover,
.btn-success:focus {
    background-color: #157347 !important;
    color: #FFFFFF !important;
    border-color: #157347 !important;
}

/* Danger Button (Red) */
.btn-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #bb2d3b !important;
    color: #FFFFFF !important;
    border-color: #bb2d3b !important;
}

/* Warning Button (FLP Yellow) */
.btn-warning {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-color: #FFC600 !important;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

/* Info Button (FLP Yellow) */
.btn-info {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-color: #FFC600 !important;
}

.btn-info:hover,
.btn-info:focus {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

/* Light Button */
.btn-light {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border-color: #dee2e6 !important;
}

.btn-light:hover,
.btn-light:focus {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-color: #FFC600 !important;
}

/* ============================================
   BRAND COLOR UTILITIES
   ============================================ */

/* Background Colors */
.bg-primary {
    background-color: #FFC600 !important;
    color: #000000 !important;
}

.bg-warning {
    background-color: #FFC600 !important;
    color: #000000 !important;
}

.bg-info {
    background-color: #FFC600 !important;
    color: #000000 !important;
}

.bg-success {
    background-color: #198754 !important;
    color: #FFFFFF !important;
}

.bg-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
}

.bg-secondary {
    background-color: #6c757d !important;
    color: #FFFFFF !important;
}

.bg-black {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

.bg-yellow {
    background-color: #FFC600 !important;
    color: #000000 !important;
}

/* Text Colors */
.text-primary {
    color: #FFC600 !important;
}

.text-warning {
    color: #FFC600 !important;
}

.text-info {
    color: #FFC600 !important;
}

.text-yellow {
    color: #FFC600 !important;
}

.text-black {
    color: #000000 !important;
}

/* Border Colors */
.border-primary {
    border-color: #FFC600 !important;
}

.border-warning {
    border-color: #FFC600 !important;
}

.border-info {
    border-color: #FFC600 !important;
}

.border-yellow {
    border-color: #FFC600 !important;
}

/* ============================================
   BADGES - FLP BRAND COLORS
   ============================================ */

.badge {
    font-weight: 600;
    padding: 0.5em 0.75em;
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.badge.bg-primary,
.badge.bg-warning,
.badge.bg-info {
    background-color: #FFC600 !important;
    color: #000000 !important;
}

.badge.bg-success {
    background-color: #198754 !important;
    color: #FFFFFF !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
    color: #FFFFFF !important;
}

/* ============================================
   ALERTS - FLP BRAND COLORS
   ============================================ */

.alert {
    font-family: 'Helvetica Neue World', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: none;
    border-left: 4px solid;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
}

.alert-primary {
    background-color: rgba(255, 198, 0, 0.15) !important;
    border-left-color: #FFC600 !important;
    color: #000000 !important;
}

.alert-warning {
    background-color: rgba(255, 198, 0, 0.15) !important;
    border-left-color: #FFC600 !important;
    color: #000000 !important;
}

.alert-info {
    background-color: rgba(255, 198, 0, 0.1) !important;
    border-left-color: #FFC600 !important;
    color: #000000 !important;
}

.alert-success {
    background-color: rgba(25, 135, 84, 0.1) !important;
    border-left-color: #198754 !important;
    color: #000000 !important;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1) !important;
    border-left-color: #dc3545 !important;
    color: #000000 !important;
}

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-clean {
    background-color: rgba(255, 198, 0, 0.05);
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-clean form {
    max-width: 360px;
    width: 90%;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.login-clean .img-fluid {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.login-clean h4 {
    font-family: 'Salina', Arial, sans-serif !important;
    font-size: 1.75rem;
    color: #000000;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-clean .form-label {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.form-control {
    background-color: #F5F5F5;
    border: none;
    border-bottom: 2px solid #E0E0E0;
    border-radius: 0.375rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #FFFFFF;
    border-bottom-color: #FFC600;
    box-shadow: 0 2px 8px rgba(255, 198, 0, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999999;
}

.login-btn {
    width: 100%;
    padding: 0.875rem;
    margin: 1rem auto 0.5rem auto;
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

/* ============================================
   CONTENT AREA - WHITE BACKGROUND
   ============================================ */

.container-fluid {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem !important;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: calc(100vh - 200px);
}

/* ============================================
   CARDS - FLP BRAND COLORS
   ============================================ */

.card {
    background: #FFFFFF;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background-color: #FFFFFF;
    border-bottom: 2px solid #FFC600;
    padding: 1.25rem 1.5rem;
}

.card-header.bg-primary,
.card-header.bg-warning,
.card-header.bg-info {
    background-color: #FFC600 !important;
    color: #000000 !important;
    border-bottom: 3px solid #000000;
}

.card-header.bg-success {
    background-color: #198754 !important;
    color: #FFFFFF !important;
}

.card-header.bg-danger {
    background-color: #dc3545 !important;
    color: #FFFFFF !important;
}

.card-header.bg-secondary {
    background-color: #6c757d !important;
    color: #FFFFFF !important;
}

.card-body {
    padding: 2rem 1.5rem;
}

/* Card borders */
.card.border-primary {
    border-color: #FFC600 !important;
    border-width: 2px;
}

.card.border-success {
    border-color: #198754 !important;
    border-width: 2px;
}
.card-body iframe[src*="youtube.com"],
.card-body iframe[src*="youtu.be"],
.card-body iframe[src*="vimeo.com"] {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 0.5rem;
}
/* ============================================
   DASHBOARD
   ============================================ */

.dashboard-welcome {
    background: linear-gradient(135deg, #FFC600 0%, #FFD740 100%);
    color: #000000;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 198, 0, 0.3);
}

.dashboard-welcome h2 {
    font-family: 'Salina', 'Helvetica Neue', Arial, sans-serif !important;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
}

.dashboard-welcome p {
    margin: 10px 0 0 0;
    opacity: 0.9;
    color: #000000;
}

/* iOS-style Icon Grid */
.ios-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    padding: 20px;
}
.ios-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    cursor: pointer;
}
.ios-icon-item:hover {
    transform: scale(1.05);
}
.ios-icon-wrapper {
    width: 160px !important;
    height: 90px !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.ios-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ios-icon-wrapper.no-image {
    background: linear-gradient(135deg, #FFC600 0%, #FFD740 100%);
}
.ios-icon-wrapper.no-image::before {
    content: attr(data-initial);
    font-size: 32px;
    font-weight: bold;
    color: #000000;
}
.ios-icon-label {
    text-align: center;
    font-size: 12px;
    color: #333;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

/* ============================================
   QUICK LINKS
   ============================================ */

.quicklinks-container {
    margin: 30px 0;
}

.quicklinks-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFC600;
}

.quicklinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.quicklink-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.quicklink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: #FFC600;
}

.quicklink-icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC600 0%, #FFD740 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

/* ============================================
   TABS
   ============================================ */

.nav-tabs {
    border-bottom: 2px solid #E0E0E0;
}

.nav-tabs .nav-link {
    color: #666666;
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.nav-tabs .nav-link:hover {
    color: #000000;
    border-bottom-color: #FFC600;
    background-color: rgba(255, 198, 0, 0.05);
}

.nav-tabs .nav-link.active {
    color: #000000;
    background-color: #FFC600;
    border-bottom-color: #FFC600;
    font-weight: 600;
}

.tab-content {
    padding: 2rem 0;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

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

/* ============================================
   TABLES
   ============================================ */

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

/* Table Hover Effects */
.table tbody tr:hover {
    background-color: #fff9e6 !important;
    cursor: pointer;
}

.newsletter-table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(255, 198, 0, 0.2);
}

/* ============================================
   NEWSLETTER & UPLOAD CARDS
   ============================================ */

.newsletter-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.upload-card {
    border: 2px dashed #dee2e6;
    transition: all 0.3s;
}

.upload-card:hover {
    border-color: #FFC600;
    background-color: #f8f9fa;
}

.upload-card.active {
    border-color: #FFC600 !important;
    background-color: rgba(255, 198, 0, 0.1) !important;
}

/* ============================================
   PROGRESS BARS
   ============================================ */

.progress-bar {
    background-color: #FFC600 !important;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 75%, transparent 75%, transparent) !important;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-clean {
    background-color: #000000 !important;
    color: #FFFFFF;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
}

.footer-clean .social a {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.footer-clean .social a:hover {
    color: #FFC600;
    transform: scale(1.15);
}

.footer-clean .copyright {
    color: #CCCCCC;
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ============================================
   MODALS
   ============================================ */

.modal-content {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background-color: #000000;
    color: #FFFFFF;
    border-bottom: 3px solid #FFC600;
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 1.25rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
    color: #000000;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.btn-close:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px #FFC600);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .navbar-collapse {
        background-color: #000000;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.5rem;
    }
}

@media (max-width: 768px) {
    .login-clean form {
        padding: 2rem 1.5rem;
    }
    
    .footer-clean {
        position: relative;
    }
    
    .ios-icon-grid,
    .quicklinks-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .container-fluid {
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 575px) {
    .nav-tabs .nav-link {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .ios-icon-grid,
    .quicklinks-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navigation-clean-button,
    .footer-clean,
    .btn {
        display: none;
    }
    
    body {
        background: white !important;
        padding-bottom: 0 !important;
    }
    
    .container-fluid {
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000000;
    }
    
    .bg-primary, .bg-warning, .bg-info {
        background-color: transparent !important;
        color: #000000 !important;
        border: 1px solid #000000 !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid #FFC600;
    outline-offset: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.spinner {
    border: 3px solid rgba(255, 198, 0, 0.2);
    border-top-color: #FFC600;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.shadow-yellow {
    box-shadow: 0 4px 16px rgba(255, 198, 0, 0.3) !important;
}

.result-stats {
    font-size: 2rem;
    font-weight: bold;
}

.year-badge {
    font-size: 1.2rem;
    padding: 8px 15px;
}

/* Icon Hover Effects */
.fa-whatsapp:hover,
.fa-file-pdf:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */