:root {
    --primary-dark: #0b2c55;
    --primary-light: #1a4a7a;
    --secondary-red: #d11a2a;
    --secondary-red-light: #e8384a;
    --accent-gray: #f4f6f9;
    --text-muted-light: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-colored: rgba(11, 44, 85, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Poppins', sans-serif;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-accent {
    background-color: var(--accent-gray) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-secondary-red {
    color: var(--secondary-red) !important;
}

.text-light-muted {
    color: var(--text-muted-light) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass-card-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.navbar {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.bg-primary-dark {
    background: rgba(11, 44, 85, 0.92) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar .nav-link.active {
    color: #fff !important;
    position: relative;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--secondary-red);
    border-radius: 2px;
}

@media (max-width: 767.98px) {
    body {
        padding-top: 64px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
    }
    
    .navbar .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem;
    }
    
    .navbar .nav-link.active::after {
        display: none;
    }
    
    .navbar .nav-link.active {
        background-color: rgba(209, 26, 42, 0.2);
        border-radius: 4px;
    }
    
    .dropdown-menu {
        background-color: rgba(11, 44, 85, 0.98) !important;
        border-color: rgba(209, 26, 42, 0.3) !important;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 0.6rem 1.5rem !important;
    }
    
    .dropdown-item:hover {
        background-color: rgba(209, 26, 42, 0.3) !important;
        color: #fff !important;
    }
    
    .dropdown-divider {
        border-color: rgba(209, 26, 42, 0.3) !important;
    }
    
    .btn-accent.btn-sm {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem;
    }
}

.btn-primary-dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-dark:hover {
    background: linear-gradient(135deg, #0a2448, var(--primary-dark));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.btn-primary-dark:hover::after {
    left: 100%;
}

.btn-secondary-red {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-red-light));
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary-red::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary-red:hover {
    background: linear-gradient(135deg, #b51524, var(--secondary-red));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(209, 26, 42, 0.35);
}

.btn-secondary-red:hover::after {
    left: 100%;
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-red-light));
    border: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #b51524, var(--secondary-red));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(209, 26, 42, 0.35);
}

.btn-accent:hover::after {
    left: 100%;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(209, 26, 42, 0.3); }
    50% { box-shadow: 0 0 35px rgba(209, 26, 42, 0.5); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #143d6b 25%, #1a4a7a 50%, #143d6b 75%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: heroGradientShift 12s ease infinite;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(209, 26, 42, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
    background-size: 100% 100%, 100% 100%, 20px 20px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p.lead {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-glass-overlay {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration .hero-icon-main {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-illustration .orbit {
    position: absolute;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-illustration .orbit-1 {
    width: 220px;
    height: 220px;
}

.hero-illustration .orbit-2 {
    width: 300px;
    height: 300px;
    animation-delay: -2s;
}

.hero-illustration .orbit-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.hero-illustration .orbit-dot-1 { top: -18px; left: 50%; transform: translateX(-50%); }
.hero-illustration .orbit-dot-2 { bottom: -18px; right: -18px; }
.hero-illustration .orbit-dot-3 { top: 50%; left: -18px; transform: translateY(-50%); }
.hero-illustration .orbit-dot-4 { top: 10%; right: -18px; }
.hero-illustration .orbit-dot-5 { bottom: 10%; left: 10%; }

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 3rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a7a 50%, #143d6b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.stat-card {
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
}

.service-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(11, 44, 85, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.08);
}

.package-card {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.package-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 12px 35px rgba(11, 44, 85, 0.18);
    transform: translateY(-5px);
}

.package-card:hover::after {
    transform: scaleX(1);
}

.package-card.featured {
    border-color: var(--secondary-red);
    position: relative;
    box-shadow: 0 8px 30px rgba(209, 26, 42, 0.12);
}

.package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-red-light));
    color: white;
    padding: 3px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-card.featured::after {
    background: linear-gradient(90deg, var(--secondary-red), var(--secondary-red-light));
}

.featured-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

.coverage-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-gray);
    border-radius: 25px;
    margin: 5px;
    font-weight: 500;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.coverage-badge:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-colored);
}

.testimonial-card {
    border: none;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-dark);
    opacity: 0.08;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #143d6b 40%, #1a4a7a 70%, #143d6b 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(209, 26, 42, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a7a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 26, 42, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #091f3d 100%) !important;
}

footer a.text-light-muted:hover {
    color: #fff !important;
}

.visual-placeholder,
.about-visual,
.cctv-visual,
.webdev-visual {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a7a 40%, var(--secondary-red) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder i,
.about-visual i,
.cctv-visual i,
.webdev-visual i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    z-index: 1;
}

.visual-placeholder::before,
.about-visual::before,
.cctv-visual::before,
.webdev-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

.visual-placeholder::after,
.about-visual::after,
.cctv-visual::after,
.webdev-visual::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 26, 42, 0.2) 0%, transparent 70%);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.dashboard-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #091f3d 100%);
    min-height: calc(100vh - 70px);
    padding: 2rem 0;
}

.dashboard-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-sidebar .nav-link i {
    width: 25px;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: var(--primary-dark);
}

.badge-status-active {
    background-color: #28a745;
}

.badge-status-suspended {
    background-color: #dc3545;
}

.badge-status-pending {
    background-color: #ffc107;
    color: #333;
}

.badge-status-paid {
    background-color: #28a745;
}

.badge-status-overdue {
    background-color: #dc3545;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.05);
}

.login-card {
    max-width: 450px;
    margin: 100px auto;
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.stars {
    color: #ffc107;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }
.fade-in-up-delay-4 { animation-delay: 0.4s; }

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card .step-icon {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: rgba(11, 44, 85, 0.05);
    color: var(--primary-dark);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(11, 44, 85, 0.1);
}

.faq-section .accordion-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.pricing-card:hover {
    border-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(11, 44, 85, 0.15);
}

.pricing-card.featured-pricing {
    border-color: var(--secondary-red);
    box-shadow: 0 8px 30px rgba(209, 26, 42, 0.12);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section {
        padding: 80px 0 60px;
    }
    .package-price {
        font-size: 2rem;
    }
    .hero-section::after {
        width: 250px;
        height: 250px;
    }
    .glass-card-dark h3 {
        font-size: 1.6rem;
    }
    .glass-card-dark p {
        font-size: 0.85rem;
    }
    .step-card {
        padding: 1.5rem 1rem;
    }
    .page-header {
        padding: 40px 0 30px;
        margin-bottom: 2rem;
    }
    .page-header h1 {
        font-size: 1.75rem;
    }
    footer .d-flex.justify-content-between {
        text-align: center;
    }
}

.stat-widget-minimal {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-widget-minimal:hover {
    border-color: rgba(11, 44, 85, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-widget-minimal .stat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-widget-minimal .stat-info {
    flex: 1;
    min-width: 0;
}

.stat-widget-minimal .stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 600;
}

.stat-widget-minimal h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0.25rem 0 0;
}

.admin-card-minimal {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.card-header-minimal {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.card-header-minimal h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.card-body-minimal {
    padding: 1.25rem;
}

.payment-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-client {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.payment-client a {
    color: var(--primary-dark);
    text-decoration: none;
}

.payment-client a:hover {
    text-decoration: underline;
}

.payment-method {
    margin: 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.payment-amount {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #22c55e;
}

.payment-date {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: #adb5bd;
}

.stat-widget-link {
    text-decoration: none;
    display: block;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.page-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 768px) {
    .stat-widget-minimal {
        padding: 1rem;
    }

    .stat-widget-minimal .stat-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-widget-minimal h4 {
        font-size: 1.25rem;
    }

    .card-header-minimal {
        padding: 0.75rem 1rem;
    }

    .card-body-minimal {
        padding: 1rem;
    }

    .dash-header {
        flex-direction: column;
        gap: 1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }
}
