/* Light Mode Variables (Default) */
[data-bs-theme="light"] {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #16a34a;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    /* Brand Gradient - SINGLE SOURCE OF TRUTH for blue gradient */
    --brand-gradient: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    --hero-gradient: var(--brand-gradient);
    --hero-text: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.85);
    --footer-bg: #1f2937;
    --footer-text: #e5e7eb;
}

/* Dark Mode Variables */
[data-bs-theme="dark"] {
    --primary-color: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --accent-color: #dc2626;
    --success-color: #10b981;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --border-color: #4b5563;
    --card-bg: #1f2937;
    /* Brand Gradient - Dark Mode version */
    --brand-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --hero-gradient: var(--brand-gradient);
    --hero-text: #f9fafb;
    --nav-bg: rgba(17, 24, 39, 0.85);
    --footer-bg: #111827;
    --footer-text: #e5e7eb;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background: var(--nav-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-cta {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Language Switcher */
.language-switcher {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.language-switcher:hover {
    background: var(--bg-secondary);
}

.language-switcher::after {
    margin-left: 0;
}

.language-switcher .lang-text {
    font-size: 0.875rem;
}

/* Language Dropdown Menu */
.dropdown-menu {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

[data-bs-theme="dark"] .dropdown-menu {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.dropdown-item.active {
    background: transparent;
    color: var(--primary-color);
    font-weight: 500;
}

.dropdown-item i.bi-check-circle-fill {
    color: var(--primary-color);
}

/* Theme Switcher */
.theme-switcher {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-switcher:hover {
    background: var(--bg-secondary);
}

/* Hero Section - Index Page Marketing Stage */
.hero-section {
    background: var(--brand-gradient);
    color: var(--hero-text);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: white;
    color: #0d6efd;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
}

[data-bs-theme="dark"] .btn-hero-primary {
    background: white;
    color: #1e293b;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

[data-bs-theme="dark"] .btn-hero-secondary {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
}

[data-bs-theme="dark"] .btn-hero-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Trust Badge */
.trust-badge {
    color: rgba(255,255,255,0.9);
    margin-top: 2rem;
}

[data-bs-theme="dark"] .trust-badge {
    color: var(--text-muted);
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

[data-bs-theme="dark"] .feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

[data-bs-theme="dark"] .feature-card:hover::before {
    transform: scaleX(1);
}

/* Global Feature Icon Style - Used across all pages */
.feature-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    flex-shrink: 0;
    flex-grow: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Feature icon margin for standalone/centered use (like on feature-cards) */
.feature-card .feature-icon {
    margin: 0 auto 1.5rem;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    position: relative;
    z-index: 1;
}

[data-bs-theme="dark"] .feature-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: var(--primary-color);
}

[data-bs-theme="dark"] .feature-icon::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
}

[data-bs-theme="dark"] .feature-card:hover .feature-icon {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

/* Section Backgrounds */
.bg-section-primary {
    background: var(--bg-primary);
}

.bg-section-secondary {
    background: var(--bg-secondary);
}

/* CTA Card with gradient background */
.cta-card {
    background: var(--brand-gradient) !important;
}

.cta-card:hover {
    transform: none;
}

/* Steps */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

[data-bs-theme="dark"] .step-number {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border-color: #3b82f6;
}

/* Pricing Cards */
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    height: 100%;
    transition: all 0.3s;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

[data-bs-theme="dark"] .pricing-card.featured {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.3);
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

[data-bs-theme="dark"] .price-amount {
    color: #0d6efd;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
}

.pricing-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    height: 100%;
    transition: all 0.3s;
}

[data-bs-theme="dark"] .testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.2);
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

[data-bs-theme="dark"] .testimonial-card::before {
    color: #0d6efd;
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    background: var(--hero-gradient);
    color: white;
    padding: 4rem 0;
}

[data-bs-theme="dark"] .cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
}

[data-bs-theme="dark"] .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%);
}

/* Footer */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--border-color);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

/* ===========================================
   GLOBAL CARD STYLES
   Unified card styling for all pages
   =========================================== */

/* Standard Card */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

/* Success Icon Circle - for contact-success page */
.success-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    animation: scaleIn 0.5s ease-out;
}

[data-bs-theme="dark"] .success-icon-circle {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form Controls */
.form-control {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-bs-theme="dark"] .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.15);
}

/* Buttons */
.btn {
    border-radius: 12px;
}

/* Alert Border Radius */
.alert {
    border-radius: 12px;
}

/* Utility Classes */
.text-muted-custom {
    color: var(--text-muted) !important;
}

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

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .hero-section {
        padding: 3rem 0 4rem;
    }
}

/* Hero Header - Reusable for subpages (Contact, Impress, About, etc.) */
.hero-header {
    background: var(--brand-gradient);
    color: var(--hero-text);
    padding: 4rem 0 3rem;
    margin-bottom: 0;
}

.hero-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-header .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .hero-header .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-header {
        padding: 3rem 0 2rem;
    }

    .hero-header h1 {
        font-size: 1.75rem;
    }

    .hero-header .hero-subtitle {
        font-size: 1rem;
    }
}

/* Onboarding Page Styles */
.hero-section-small {
    background: var(--brand-gradient);
    color: var(--hero-text);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-section-small h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.hero-section-small .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    position: relative;
}





.social-btn {
    position: relative;
    transition: all 0.3s ease;
}

.social-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.social-btn .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
}



/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

/* ===========================================
   STATUS PAGES (Success, Error, Password)
   Shared styles for full-page status screens
   =========================================== */

/* Container - Full viewport centered layout */
.status-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 2rem 1rem;
}

/* Card - Main content box */
.status-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    animation: statusSlideUp 0.5s ease-out;
}

[data-bs-theme="dark"] .status-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.status-card.status-card-wide {
    max-width: 700px;
}

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

/* Status Icon - Unified icon box style */
.status-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: statusScaleIn 0.5s ease-out 0.2s both;
}

.status-card:hover .status-icon {
    transform: translateY(-5px) scale(1.05);
}

@keyframes statusScaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Status Icon Variants */
.status-icon-success {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

[data-bs-theme="dark"] .status-icon-success {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.status-card:hover .status-icon-success {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

[data-bs-theme="dark"] .status-card:hover .status-icon-success {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.status-icon-error {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(185, 28, 28, 0.1) 100%);
    color: #dc2626;
}

[data-bs-theme="dark"] .status-icon-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
}

.status-card:hover .status-icon-error {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

[data-bs-theme="dark"] .status-card:hover .status-icon-error {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Status Typography */
.status-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.status-subheading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.status-message {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Status Buttons */
.btn-status-primary {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[data-bs-theme="dark"] .btn-status-primary {
    color: #1e293b;
}

.btn-status-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

[data-bs-theme="dark"] .btn-status-primary:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    color: #1e293b;
}

.btn-status-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-status-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Solution Box - For action sections */
.solution-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.solution-box-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.solution-box-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Divider */
.status-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.status-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.status-divider-text {
    padding: 0 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Alert variants for dark mode */
[data-bs-theme="dark"] .alert-danger {
    background-color: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

[data-bs-theme="dark"] .alert-success {
    background-color: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #d1fae5;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section-small h1 {
        font-size: 2rem;
    }

    .hero-section-small .hero-subtitle {
        font-size: 1.1rem;
    }

    .status-heading {
        font-size: 1.75rem;
    }

    .status-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .status-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .status-heading {
        font-size: 1.5rem;
    }
}