/* ============================================
   LIGHT THEME - Full Styles
   Same class names, completely converted to light theme
   ============================================ */

:root {
    --light-bg: #f5f5f0;
    --card-bg: #ffffff;
    --gold: #b8962e;
    --gold-light: #d4af37;
    --text-primary: #1a1a1a;
    --text-muted: #666666;
    --border-color: #e0ddd5;
    --bs-secondary-color: #666666;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --hover-bg: #f0eee8;
    --input-bg: #fafaf7;
    --body-bg: #f5f5f0;
}

body {
    background-color: var(--light-bg);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    filter: drop-shadow(0 0 5px rgba(184, 150, 46, 0.3));
}

.navbar .nav-link {
    color: var(--text-primary) !important;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    color: #fff;
}

.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #fff;
}

/* ============================================
   CARDS - Light Theme
   ============================================ */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(184, 150, 46, 0.3);
}

/* Card Gold Border */
.card-gold-border {
    border: 1px solid rgba(184, 150, 46, 0.3);
}

.card-gold-border:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(184, 150, 46, 0.15);
}

/* Card Featured */
.card-featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    border: 1px solid rgba(184, 150, 46, 0.5);
    box-shadow: 0 4px 15px rgba(184, 150, 46, 0.1);
}

/* Card Sponsored */
.card-sponsored {
    border: 1px solid rgba(220, 53, 69, 0.4);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.08);
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0eee8 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    border-radius: 12px 12px 0 0 !important;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

/* Header with gold accent */
.card-header-accent {
    border-bottom: 2px solid var(--gold);
    background: linear-gradient(135deg, #f8f6f0 0%, #f5f2ea 100%);
}

/* Header with icon */
.card-header-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-header-icon i {
    color: var(--gold);
    font-size: 1.25rem;
}

/* Header with actions */
.card-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card-header-actions .btn {
    white-space: nowrap;
}

/* Transparent header */
.card-header-transparent {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

/* Colored header variants */
.card-header-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #a07d2a 100%);
    color: #fff;
    border-bottom: none;
}

.card-header-gold h1,
.card-header-gold h2,
.card-header-gold h3,
.card-header-gold h4,
.card-header-gold h5,
.card-header-gold h6 {
    color: #fff;
}

/* Card Body */
.card-body {
    background-color: var(--card-bg);
    padding: 1.25rem;
    color: var(--text-primary);
}

/* Card body with subtle pattern */
.card-body-pattern {
    background-image: 
        linear-gradient(45deg, rgba(184, 150, 46, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(184, 150, 46, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(184, 150, 46, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(184, 150, 46, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Card body padding variations */
.card-body-sm {
    padding: 0.75rem;
}

.card-body-lg {
    padding: 1.5rem;
}

.card-body-xl {
    padding: 2rem;
}

/* Card body flex */
.card-body-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body-flex .card-text {
    flex-grow: 1;
}

/* Card body scroll */
.card-body-scroll {
    max-height: 400px;
    overflow-y: auto;
}

/* Custom scrollbar */
.card-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.card-body-scroll::-webkit-scrollbar-track {
    background: var(--input-bg);
    border-radius: 3px;
}

.card-body-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.card-body-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Card body divider */
.card-body-divider > * + * {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Card body centered */
.card-body-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Card body hover */
.card-body-hover {
    transition: background-color 0.3s ease;
}

.card:hover .card-body-hover {
    background-color: #faf9f6;
}

/* Card Footer */
.card-footer {
    background-color: #f8f6f0;
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    color: var(--text-muted);
}

/* Card Title - Light */
.card-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title:hover {
    color: var(--gold);
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Title with accent line */
.card-title-accent {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.card-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* RTL support for accent line */
[dir="rtl"] .card-title-accent::after {
    left: auto;
    right: 0;
    background: linear-gradient(-90deg, var(--gold), var(--gold-light));
}

/* Card title variations */
.card-title-sm {
    font-size: 1rem;
    font-weight: 500;
}

.card-title-lg {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Title with icon */
.card-title-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title-icon i {
    color: var(--gold);
    font-size: 1.1em;
}

/* Title with badge */
.card-title-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Card Text - Light */
.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.card-text:hover {
    color: #4a4a4a;
}

/* Review card text variations */
.review-card .card-text {
    -webkit-line-clamp: 4;
    line-height: 1.7;
    color: #555;
}

/* Broker card text specific */
.broker-card .card-text {
    -webkit-line-clamp: 2;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
}

/* Text with fade effect */
.card-text.fade-bottom {
    position: relative;
}

.card-text.fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--card-bg));
    pointer-events: none;
}

/* Expanded card text */
.card-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
}

/* Card description */
.card-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-text-highlight {
    color: var(--gold);
    font-weight: 500;
}

.card-text-muted {
    color: #999;
    font-size: 0.85rem;
}

/* Text truncation fallback */
@supports not (-webkit-line-clamp: 1) {
    .card-text {
        max-height: 4.5em;
        position: relative;
        overflow: hidden;
    }
    
    .card-text::after {
        content: '...';
        position: absolute;
        bottom: 0;
        right: 0;
        padding-left: 20px;
        background: linear-gradient(to right, transparent, var(--card-bg) 50%);
    }
    
    .review-card .card-text {
        max-height: 6em;
    }
    
    .broker-card .card-text {
        max-height: 3em;
    }
}

/* Card text with links */
.card-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.card-text a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Card text with icons */
.card-text-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.card-text-with-icon i {
    color: var(--gold);
    margin-top: 0.2rem;
}

/* Card Image */
.card-img-top {
    border-bottom: 1px solid var(--border-color);
    max-height: 200px;
    object-fit: cover;
    background: #f0eee8;
}

/* Compact variant */
.card-compact .card-header {
    padding: 0.75rem 1rem;
}

.card-compact .card-body {
    padding: 1rem;
}

.card-compact .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   BROKER CARDS
   ============================================ */
.broker-card .broker-logo {
    margin-left: 10px;
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    border: 1px solid var(--border-color);
}

.broker-logo-lg {
    margin-left: 15px;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
    border: 1px solid var(--border-color);
}

.fs-3 {
    color: var(--gold) !important;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--text-primary);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--gold);
}

/* ============================================
   RATING INPUT
   ============================================ */
.rating-input {
    direction: rtl;
    display: inline-block;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #ffffff !important;
    border-top: 1px solid var(--border-color);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

/* ============================================
   HERO SECTION - Light Theme
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede6 50%, #e8e4dc 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 150, 46, 0.08) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes heroGlow {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    50% { 
        transform: translate(10%, 10%) scale(1.1); 
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    position: relative;
    z-index: 2;
}

.hero-badge .badge {
    background: rgba(184, 150, 46, 0.12);
    color: var(--gold);
    border: 1px solid rgba(184, 150, 46, 0.25);
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge .badge:hover {
    background: rgba(184, 150, 46, 0.2);
    border-color: rgba(184, 150, 46, 0.4);
}

/* Hero Title */
.hero-title {
    position: relative;
    z-index: 2;
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Hero Subtitle */
.hero-subtitle {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Actions */
.hero-actions {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-actions .btn {
    position: relative;
    z-index: 11;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-actions .btn:active {
    transform: scale(0.98);
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    pointer-events: auto;
}

/* ============================================
   STATISTICS CARDS - Light
   ============================================ */
.stat-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(184, 150, 46, 0.15);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   RISK BANNER - Light
   ============================================ */
.risk-banner {
    background: #f8f6f0;
    border-bottom: 1px solid var(--border-color);
}

.risk-banner .alert {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: #856404;
    border-radius: 12px;
    font-size: 0.95rem;
}

/* ============================================
   SECTION HEADERS - Light
   ============================================ */
.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============================================
   CATEGORY CARDS - Light
   ============================================ */
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(184, 150, 46, 0.12);
    background: #faf9f6;
}

.category-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    background: rgba(184, 150, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: rgba(184, 150, 46, 0.18);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.category-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ============================================
   REVIEW CARDS - Light
   ============================================ */
.review-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(184, 150, 46, 0.3);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.reviewer-avatar {
    margin-left: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.review-rating .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
}

.review-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

/* ============================================
   FEATURE CARDS - Light
   ============================================ */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-color);
    background: #faf9f6;
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(184, 150, 46, 0.12), rgba(184, 150, 46, 0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(184, 150, 46, 0.2), rgba(184, 150, 46, 0.1));
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.feature-card h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION - Light
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(184, 150, 46, 0.06) 0%, rgba(184, 150, 46, 0.02) 100%);
    border-top: 1px solid rgba(184, 150, 46, 0.2);
    border-bottom: 1px solid rgba(184, 150, 46, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(184, 150, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ============================================
   PAGINATION - Light
   ============================================ */
.pagination .page-link {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.pagination .page-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.pagination .active .page-link {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ============================================
   BADGES - Light
   ============================================ */
.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
}

/* ============================================
   MISC - Light
   ============================================ */
.bg-dark-light {
    background-color: #f0ede6;
}

.text-warning {
    color: var(--gold) !important;
}

/* RTL specific adjustments */
[dir="rtl"] .navbar-nav {
    margin-left: auto;
    margin-right: 0;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS - Light
   ============================================ */
@media (max-width: 768px) {
    .card-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .review-card .card-text {
        -webkit-line-clamp: 3;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-header {
        padding: 0.75rem 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-header-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .hero-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .card {
        border: 1px solid #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .card-header,
    .card-body {
        background: #fff;
        color: #000;
    }
}