@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #eef1ff;
    --secondary: #3f37c9;
    --accent: #2ec4b6;
    --accent-light: #e8faf8;
    --success: #2ec4b6;
    --warning: #ff9f1c;
    --danger: #e63946;
    --info: #457b9d;
    --dark: #1a1a2e;
    --body-bg: #f0f4f8;
    --card-bg: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #8896ab;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--body-bg); }
::-webkit-scrollbar-thumb { background: #c1c9d4; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a0aab5; }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}

.navbar-brand-text span {
    color: var(--accent);
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.navbar-custom .btn-primary {
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ===== PREMIUM HERO SECTION ===== */
.hero-bg-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #4338ca 100%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 2;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    top: 50%;
    left: 40%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-mini-stats small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Hero Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    color: #1e1b4b;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #1e1b4b;
    background: #ffffff;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Glassmorphism Floating Card */
.hero-floating-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}



/* Floating Animation */
@keyframes floatCard {
    0% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    100% { transform: translateY(0px) rotate(2deg); }
}

/* Hero Text Entry Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
    opacity: 0;
}

.carousel-item.active .hero-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel-item.active .hero-animate-d1 { animation-delay: 0.1s; }
.carousel-item.active .hero-animate-d2 { animation-delay: 0.25s; }
.carousel-item.active .hero-animate-d3 { animation-delay: 0.4s; }
.carousel-item.active .hero-animate-d4 { animation-delay: 0.55s; }
.carousel-item.active .hero-animate-d5 { animation-delay: 0.7s; }

/* Premium Carousel Indicators */
.hero-carousel .carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.hero-carousel .carousel-indicators button.active {
    width: 50px;
    background: #ffffff;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 1rem; }
    .hero-floating-card { display: none !important; }
}


/* ===== PREMIUM CUSTOM CAROUSEL ARROWS ===== */
.custom-carousel-control {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    opacity: 1 !important;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.custom-carousel-control:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

/* Hide default Bootstrap SVG arrows */
.custom-carousel-control .carousel-control-prev-icon,
.custom-carousel-control .carousel-control-next-icon {
    display: none !important;
}

/* Show Bootstrap Icon Arrows */
.custom-arrow-icon {
    color: #ffffff;
    font-size: 1.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Arrow Positions */
.carousel-control-prev.custom-carousel-control {
    left: 30px;
}

.carousel-control-next.custom-carousel-control {
    right: 30px;
}

@media (max-width: 768px) {
    .custom-carousel-control {
        width: 44px;
        height: 44px;
    }
    .custom-arrow-icon {
        font-size: 1.2rem;
    }
    .carousel-control-prev.custom-carousel-control {
        left: 15px;
    }
    .carousel-control-next.custom-carousel-control {
        right: 15px;
    }
}
/* ===== SECTION STYLING ===== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CARDS ===== */
.card-custom {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-custom .card-body {
    padding: 28px;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    text-align: center;
    padding: 32px 20px;
    cursor: pointer;
}

.category-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h6 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== PLAN CARDS ===== */
.plan-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(67,97,238,0.15);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-color: var(--primary);
    position: relative;
}

.plan-card .featured-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.plan-card .plan-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.plan-card .plan-body {
    padding: 20px 28px;
    flex: 1;
}

.plan-card .plan-footer {
    padding: 20px 28px 28px;
    flex-shrink: 0;
}

.plan-card .plan-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-card .plan-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.plan-card .plan-price small {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-card .plan-coverage {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.plan-feature-item i {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #fff;
    padding: 18px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 24px 20px;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card-img i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.4;
}

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== FORMS ===== */
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67,97,238,0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 10px 28px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(67,97,238,0.3);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 10px 28px;
}

.btn-accent:hover {
    background: #26b0a3;
    border-color: #26b0a3;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 10px 28px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ===== AUTH PAGES ===== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef1ff 0%, #f0f4f8 50%, #e8faf8 100%);
    padding: 40px 20px;
}

.auth-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
}

.auth-card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 36px 40px;
    text-align: center;
}

.auth-card-header h3 {
    font-weight: 800;
    margin-bottom: 4px;
}

.auth-card-header p {
    opacity: 0.85;
    font-size: 0.9rem;
    margin: 0;
}

.auth-card-body {
    padding: 36px 40px;
}

/* ===== CUSTOMER DASHBOARD ===== */
.dashboard-sidebar {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 24px 0;
    position: sticky;
    top: 90px;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-menu-item.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.sidebar-menu-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.dashboard-content {
    min-height: 400px;
}

.dash-stat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.dash-stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.dash-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.dash-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.dash-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== DATA TABLE ===== */
.data-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.data-table table {
    margin: 0;
}

.data-table thead th {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border: none;
    white-space: nowrap;
}

.data-table tbody td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

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

.data-table tbody tr:hover {
    background: #f8fafc;
}

/* ===== STATUS BADGES ===== */
.badge-status {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-active, .badge-paid, .badge-success {
    background: #e8faf8;
    color: #0d9488;
}

.badge-pending {
    background: #fff7ed;
    color: #c2410c;
}

.badge-expired, .badge-closed {
    background: #f1f5f9;
    color: #64748b;
}

.badge-cancelled, .badge-rejected, .badge-failed {
    background: #fef2f2;
    color: #dc2626;
}

.badge-new {
    background: #eef1ff;
    color: #4361ee;
}

.badge-read {
    background: #f1f5f9;
    color: #64748b;
}

.badge-open {
    background: #e8faf8;
    color: #0d9488;
}

.badge-approved {
    background: #e8faf8;
    color: #0d9488;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--dark);
    color: #cbd5e1;
    padding: 60px 0 0;
}

.footer-section h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.82rem;
    color: #64748b;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.page-header p {
    opacity: 0.85;
    font-size: 1rem;
}

.breadcrumb-custom {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.85rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===== MISC ===== */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.link-primary-custom {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.link-primary-custom:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h5 {
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-section, .hero-carousel .carousel-item { min-height: 480px; }
    .section-padding { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .stat-number { font-size: 2rem; }
    .auth-card-header, .auth-card-body { padding: 28px 24px; }
    .dashboard-sidebar { position: static; margin-bottom: 20px; }
}