/* ============================================
   ROOT VARIABLES - ORANGE THEME
   ============================================ */
:root {
    /* Primary Orange Colors */
    --primary-orange: #e67e22;
    --primary-orange-dark: #d35400;
    --primary-orange-light: #f39c12;
    --primary-orange-bg: #fdf2e9;
    --primary-orange-hover: #cf6d17;
    
    /* Secondary Colors */
    --dark: #2c3e50;
    --dark-blue: #1a2634;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    
    /* Status Colors */
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
    --gradient-light: linear-gradient(135deg, #fdf2e9, #fef9f4);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(211, 84, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(211, 84, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(211, 84, 0, 0.2);
    --shadow-hover: 0 10px 30px rgba(211, 84, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-dark);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-orange-dark);
    text-decoration: none;
}

.text-primary-orange {
    color: var(--primary-orange) !important;
}

.text-primary-orange-dark {
    color: var(--primary-orange-dark) !important;
}

.bg-primary-orange {
    background: var(--gradient-primary) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: none;
}

.btn-warning-custom {
    background: #ffd700;
    color: var(--primary-orange-dark);
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-warning-custom:hover {
    background: #f1c40f;
    color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-warning-custom:active {
    transform: translateY(0);
}

.btn-outline-warning-custom {
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    background: transparent;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-outline-warning-custom:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-orange {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-orange:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-orange {
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   NAVBAR - ORANGE THEME
   ============================================ */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: 0 2px 15px rgba(211, 84, 0, 0.3);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.5rem;
    transition: var(--transition);
}

.navbar-brand i {
    color: #ffd700;
    margin-right: 8px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-link .badge {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.6rem;
    padding: 3px 6px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
}

.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='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-orange-bg);
    color: var(--primary-orange-dark);
}

.dropdown-item i {
    width: 20px;
    margin-right: 8px;
}

.dropdown-divider {
    margin: 8px 0;
    border-color: #e9ecef;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-section h1 .highlight {
    color: #ffd700;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-section .btn-warning-custom {
    padding: 12px 35px;
    font-size: 1.1rem;
}

.hero-section .btn-outline-light {
    padding: 12px 35px;
    font-size: 1.1rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 25px 20px;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.service-card .card-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.service-card .card-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   FREELANCER CARDS
   ============================================ */
.freelancer-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 25px 20px;
    transition: var(--transition);
    height: 100%;
}

.freelancer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.freelancer-card .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange-bg);
    transition: var(--transition);
}

.freelancer-card:hover .profile-img {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.freelancer-card .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid var(--white);
}

/* ============================================
   SKILL TAGS
   ============================================ */
.skill-tag {
    display: inline-block;
    background: var(--primary-orange-bg);
    color: var(--primary-orange-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 3px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.skill-tag:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.skill-tag .remove-skill {
    cursor: pointer;
    margin-left: 5px;
    color: var(--danger);
    font-weight: 700;
}

.skill-tag .remove-skill:hover {
    color: #c0392b;
}

/* ============================================
   VERIFIED BADGE
   ============================================ */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--success);
    color: var(--white);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 0.8rem;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.badge {
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-danger {
    background: var(--danger);
    color: var(--white);
}

.badge-info {
    background: var(--info);
    color: var(--white);
}

.badge-secondary {
    background: var(--gray);
    color: var(--white);
}

/* ============================================
   FORM CONTROLS
   ============================================ */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.15);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--danger);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: var(--success);
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-text {
    color: var(--gray);
    font-size: 0.8rem;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--white);
    border-bottom: 2px solid #f1f3f5;
    padding: 15px 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
}

.card-body {
    padding: 20px;
}

.card-footer {
    background: var(--white);
    border-top: 1px solid #f1f3f5;
    padding: 15px 20px;
}

/* ============================================
   DASHBOARD STATS
   ============================================ */
.stat-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange-dark);
    line-height: 1.2;
}

.stat-card .stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.2;
}

/* ============================================
   CHAT
   ============================================ */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.chat-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.chat-header .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 70%;
    animation: fadeInUp 0.3s ease;
}

.chat-message.sent {
    margin-left: auto;
}

.chat-message .message-content {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: var(--primary-orange-bg);
    word-wrap: break-word;
    box-shadow: var(--shadow-sm);
}

.chat-message.sent .message-content {
    background: var(--gradient-primary);
    color: var(--white);
}

.chat-message .message-time {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 4px;
    text-align: right;
}

.chat-message.sent .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chat-input {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    background: var(--white);
}

.chat-input input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    transition: var(--transition);
}

.chat-input input:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.15);
}

.chat-input .btn {
    padding: 10px 20px;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.5s ease;
    background: var(--white);
    border-left: 4px solid var(--primary-orange);
}

.toast-success {
    border-left-color: var(--success);
}

.toast-error {
    border-left-color: var(--danger);
}

.toast-warning {
    border-left-color: var(--warning);
}

.toast-info {
    border-left-color: var(--info);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-orange-bg);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination .page-link {
    color: var(--primary-orange);
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    color: var(--gray);
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 2px solid #f1f3f5;
    padding: 20px 25px;
}

.modal-header .modal-title {
    font-weight: 600;
    color: var(--dark);
}

.modal-footer {
    border-top: 1px solid #f1f3f5;
    padding: 15px 25px;
}

.modal-backdrop {
    backdrop-filter: blur(4px);
}

/* ============================================
   TABLE
   ============================================ */
.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--primary-orange-bg);
    color: var(--dark);
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding: 12px 15px;
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f5;
}

.table tbody tr:hover {
    background: var(--primary-orange-bg);
}

/* ============================================
   STEP ICONS (How It Works)
   ============================================ */
.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-orange-bg);
    transition: var(--transition);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.step-icon:hover {
    transform: scale(1.1);
    background: var(--primary-orange);
}

.step-icon:hover i {
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer .social-links a {
    display: inline-block;
    transition: var(--transition);
}

.footer .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .chat-container {
        height: 400px;
    }
    
    .chat-message {
        max-width: 85%;
    }
    
    .dropdown-menu {
        border: none;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .freelancer-card {
        padding: 20px 15px;
    }
    
    .toast {
        min-width: auto;
        max-width: 90%;
        margin: 0 auto 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .stat-card .stat-number {
        font-size: 1.6rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .table {
        font-size: 0.85rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 8px 10px;
    }
    
    .chat-message {
        max-width: 90%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-down {
    animation: fadeInDown 0.4s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.5s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.5s ease forwards;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Flex Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Text Utilities */
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-muted-light {
    color: rgba(255, 255, 255, 0.7);
}

/* Shadow Utilities */
.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-hover);
}

/* Border Utilities */
.border-primary-orange {
    border: 2px solid var(--primary-orange);
}

/* Background Utilities */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-light {
    background: var(--gradient-light);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .footer,
    .btn,
    .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    body {
        background: white !important;
    }
}