/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-darker: #065f46;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --danger: #ef4444;
    --success: #059669;
    --warning: #f97316;
    --info: #3b82f6;
    --light: #f8fafc;
    --dark: #0f172a;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --hero-overlay: rgba(0, 0, 0, 0.6);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.display-4 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
}

.display-5 {
    font-size: 2rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
}

.accent-text {
    color: var(--secondary);
}

/* ===== NAVBAR ===== */
.navbar {
    top: 0;
    transition: all 0.3s ease;
    background-color: var(--white) !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    opacity: 1 !important;
    box-shadow: var(--shadow-sm) !important;
}

.navbar .navbar-toggler {
    border-width: 2px;
    padding: 0.4rem 0.65rem;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.25);
}

.navbar .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='%23059669' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    max-width: 60%;
}

.navbar-brand img {
    height: auto;
    max-height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 36px;
        max-width: 200px;
    }

    .navbar-brand span {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--gray-500) !important;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand {
    color: var(--primary) !important;
    font-weight: bold;
}

.logo-circle {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-weight: bold;
    flex-shrink: 0;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.nav-link:hover .avatar-circle {
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    margin-top: 20px;
    min-height: 100vh;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 95, 70, 0.8), rgba(4, 120, 87, 1));
}

.hero-decorative {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.1;
}

.blob-1 {
    width: 288px;
    height: 288px;
    background: var(--secondary);
    top: 80px;
    right: 40px;
}

.blob-2 {
    width: 384px;
    height: 384px;
    background: var(--secondary);
    bottom: 80px;
    left: 40px;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 9999px;
    color: var(--secondary);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-custom i {
    font-size: 1rem;
}

/* ===== HERO & CAROUSEL ===== */
.main-carousel {
    height: 90vh;
    min-height: 500px;
    width: 100%;
}

.main-carousel .carousel-inner,
.main-carousel .carousel-item {
    height: 100%;
}

.main-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-caption-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--hero-overlay);
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    max-width: 550px;
    width: 80%;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-caption-box h3 {
    color: white;

}

.carousel-caption-box p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.navbar-brand-white {
    color: var(--dark) !important;
}

.nav-link-white {
    color: var(--gray-500) !important;
}

.nav-link-white:hover {
    color: var(--primary) !important;
}

/* ===== GRADIENT BACKGROUNDS ===== */
.page-bg-gradient {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    min-height: 100vh;
}

.section-gradient {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(205, 235, 37, 0.05) 100%);
}

/* ===== BUTTONS ===== */
.btn i {
    margin-right: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--dark);
}

.btn-outline-dark,
.btn-outline-primary {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.btn-outline-dark:hover,
.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

.btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 56px;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.rounded-3 {
    border-radius: 24px !important;
}

/* ===== STATS ===== */
.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin-bottom: 0.25rem;
}

/* CAROUSEL STYLES */
.carousel {
    border-radius: 1.5rem;
    overflow: hidden;
}

.carousel-inner {
    border-radius: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: all 0.2s;
}

.carousel-indicators [data-bs-target].active {
    background-color: white;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: .6s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.floating-card img {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.gradient-bg-hero {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse 800px 600px at center, rgba(251, 191, 36, 0.9), rgba(251, 191, 36, 0.6), rgba(251, 191, 36, 0.2), transparent);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.booking-notification {
    position: absolute;
    top: 30px;
    left: -24px;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.booking-notification i {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
}

.modal-content {
    border-radius: 1rem;
}

/* ===== BADGE ===== */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bg-success-light {
    background-color: #d1fae5 !important;
}

.text-success {
    color: var(--primary) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-muted {
    color: var(--text-muted);
}

/* ===== STEP CARDS ===== */
.step-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: white;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.3);
}

.pricing-card.popular .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-card h5 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.pricing-card p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pricing-card h3 {
    margin: 1rem 0;
    font-size: 2rem;
    color: var(--primary);
}

.pricing-card.popular h3 {
    color: var(--secondary);
}

.pricing-card h3 span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.pricing-card.popular h3 span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card ul {
    flex-grow: 1;
}

.pricing-card li i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.pricing-card:not(.popular) li i {
    color: var(--primary);
}

.pricing-card.popular li i {
    color: var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-card img {
    object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
.contact-info {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid var(--border-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.875rem 1rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* ===== FOOTER ===== */
footer {
    background-color: #111827;
    border-top: 1px solid var(--border-color);
}

footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary) !important;
}

.social-links a i {
    font-size: 1.25rem;
}

/* ===== ACCORDION ===== */
.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    border: none;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button:not(.collapsed) {
    background-color: #f0fdf4;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* ===== MIN HEIGHT UTILITIES ===== */
.min-vh-100 {
    min-height: 100vh;
}

.py-md-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* ===== Z-INDEX ===== */
.z-2 {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .display-4 {
        font-size: 1.875rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .booking-notification {
        bottom: -16px;
        left: -16px;
        padding: 0.75rem;
    }

    .booking-notification i {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .booking-notification p {
        font-size: 0.875rem;
    }

    .badge-custom {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .btn-lg {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .py-md-6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .stat-item {
        text-align: center;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

/* ===== STAT ITEM LARGE ===== */
.stat-item-large {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-item-large h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 2px !important;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== EVENT CARDS ===== */
.event-card {
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.event-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.event-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.badge-category {
    position: absolute;
    top: 16px;
    right: 16px;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-exhibition {
    background: #fbbf24;
    color: #78350f;
}

.badge-conference {
    background: #10b981;
    color: white;
}

.badge-workshop {
    background: #f97316;
    color: white;
}

.event-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.event-meta i {
    color: var(--primary);
    margin-right: 0.75rem;
    min-width: 18px;
    flex-shrink: 0;
}

.event-meta .d-flex {
    margin-bottom: 0.75rem !important;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light) !important;
}

.pagination .page-link:hover:not(.disabled) {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-item.disabled .page-link {
    color: #6b7280;
    cursor: not-allowed;
}

/* ===== DASHBOARD STYLES ===== */
.sidebar-wrapper {
    width: 280px;
    background: white;
    border-right: 1px solid var(--border-color);
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: all 0.3s;
}

.sidebar {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.sidebar-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.sidebar .nav {
    flex: 1;
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow-y: auto;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar .nav .nav-item {
    width: 100%;
}

.sidebar .nav-link {
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: var(--light);
    color: var(--primary);
}

.sidebar .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: calc(100vw - 280px);
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #d1fae5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h6 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.stat-content h3 {
    font-size: 1.75rem;
    margin: 0;
}

.sidebar-footer {
    flex-shrink: 0;
}

.sidebar-toggle {
    display: none;
    color: var(--dark);
    font-size: 1.5rem;
}

/* Status Badges */
.badge-success-soft {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-warning-soft {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-danger-soft {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .sidebar-wrapper {
        width: 250px;
        left: -250px;
    }

    .sidebar-wrapper.show {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        max-width: 100vw;
    }

    .sidebar-toggle {
        display: inline-block;
    }
}