:root {
    /* Core Brand Palette */
    --ag-primary: #0095d7; /* Exact brand cyan */
    --ag-primary-dark: #007bb5;
    --ag-secondary: #a2c53e; /* Exact brand green */
    --ag-accent: #f59e0b;
    --ag-success: #22c55e;
    --ag-danger: #ef4444;
    --ag-warning: #f59e0b;
    --ag-info: #0ea5e9;
    
    /* Neutral Palette */
    --ag-ink: #0f172a;
    --ag-muted: #64748b;
    --ag-bg: #f8fafc;
    --ag-border: #e2e8f0;
    
    /* Layout Tokens */
    --ag-sidebar-width: 280px;
    --ag-header-height: 80px;
    --ag-border-radius: 1.25rem;
    --ag-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --ag-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.bg-brand {
    background: #ffffff !important;
    backdrop-filter: none !important;
}

.bg-brand-gradient {
    background: linear-gradient(135deg, var(--ag-primary), #0f172a) !important;
}

main {
    position: relative;
}

.footer-premium {
    background-color: var(--ag-ink, #0f172a);
    position: relative;
    z-index: 1030; /* Ensure it stacks above sticky elements like cards */
}

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

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

.btn-brand {
    background: var(--ag-primary);
    border-color: var(--ag-primary);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--ag-primary-dark);
    border-color: var(--ag-primary-dark);
    color: #fff;
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid var(--ag-primary);
    color: var(--ag-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus,
.btn-outline-brand:active {
    background: var(--ag-primary);
    border-color: var(--ag-primary);
    color: #fff !important;
}

.btn-accent {
    background: var(--ag-secondary);
    border-color: var(--ag-secondary);
    color: #1e293b;
    font-weight: 700;
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--ag-primary);
    border-color: var(--ag-primary);
    color: #fff;
}

.navbar .nav-link {
    color: #212529;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--ag-secondary);
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: var(--ag-secondary);
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-size: 0.9rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
    }
}

.footer-link {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
}

.footer-social-icon:hover {
    background-color: var(--ag-primary) !important;
    color: white !important;
    transform: translateY(-3px);
}

/* Base Reset & Typography */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ag-bg);
    color: var(--ag-ink);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

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

/* Shared Utility Components */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--ag-border-radius);
    box-shadow: var(--ag-shadow);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: translateY(-5px);
}

.btn-premium {
    border-radius: 0.85rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--ag-shadow);
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--ag-muted); }

/* Button Loading & Spinner States */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: ag-spin 0.8s linear infinite;
}

.btn-outline-brand.btn-loading::after {
    border-color: rgba(0, 149, 215, 0.2);
    border-top-color: var(--ag-primary);
}

@keyframes ag-spin {
    to { transform: rotate(360deg); }
}

.is-loading {
    pointer-events: none !important;
    opacity: 0.7;
    cursor: wait !important;
}

/* Premium styling for Select2 to match the theme */
.select2-container--default .select2-selection--single {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    height: auto;
    padding: 0.95rem 0.75rem;
    transition: all 0.2s ease;
}
.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    background: #fff;
    border-color: var(--ag-primary);
    box-shadow: 0 0 0 4px rgba(0, 149, 215, 0.1);
    outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #475569;
    line-height: 1.5;
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 15px;
}
.select2-dropdown {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- Extracted Global Styles --- */

/* Extracted from lesson.blade.php */
/* Styling for the content injected from rich text editor */
        .article-content h1,
        .article-content h2,
        .article-content h3 {
            font-weight: bold;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            color: #212529;
        }

        .article-content p {
            margin-bottom: 1.25rem;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 1.25rem;
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

/* Extracted from navigation_sidebar.blade.php */
.nav-link-sidebar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 1.25rem;
        color: #64748b;
        text-decoration: none;
        font-weight: 500;
        border-radius: 1rem;
        transition: all 0.2s ease;
    }

    .sidebar-item-left {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
    }

    .nav-link-sidebar i { font-size: 1.25rem; opacity: 0.8; }

    .nav-link-sidebar:hover {
        background: #f1f5f9;
        color: var(--ag-primary);
    }

    .nav-link-sidebar.active {
        background: var(--ag-primary-subtle, #eff6ff);
        color: var(--ag-primary);
        font-weight: 600;
    }

    .nav-link-sidebar.active i { color: var(--ag-primary); opacity: 1; }

    .nav-link-sidebar.is-locked {
        background: #fcfaf5;
        border: 1px solid #efe7d9;
        border-radius: 1rem;
        padding: 0.78rem 0.9rem;
        color: #4b5563;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }

    .nav-link-sidebar.is-locked i {
        color: #6b7280;
        opacity: 0.88;
    }

    .nav-link-sidebar.is-locked:hover {
        background: #f8f3e9;
        border-color: #e9dcc3;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
        transform: translateY(-1px);
    }

    .locked-card-left {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        min-width: 0;
    }

    .locked-card-left i {
        font-size: 0.88rem;
    }

    .locked-copy {
        display: inline-flex;
        flex-direction: column;
        line-height: 1.15;
        gap: 0.12rem;
    }

    .locked-title {
        font-size: 0.86rem;
        font-weight: 700;
        color: #374151;
        text-transform: lowercase;
    }

    .locked-subtitle {
        font-size: 0.72rem;
        font-weight: 500;
        color: #8b95a7;
    }

    .upgrade-pill-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.34rem;
        padding: 0.3rem 0.68rem;
        border-radius: 999px;
        background: linear-gradient(180deg, #f5a524 0%, #ea8f0f 100%);
        color: #fff;
        border: 1px solid #d98510;
        font-size: 0.68rem;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 2px 5px rgba(217, 133, 16, 0.28);
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .upgrade-pill-btn i {
        color: #fff;
        font-size: 0.68rem;
        opacity: 1;
    }

    .nav-link-sidebar.is-locked:hover .upgrade-pill-btn {
        background: linear-gradient(180deg, #ec9a15 0%, #dd7f05 100%);
        box-shadow: 0 3px 8px rgba(193, 112, 9, 0.34);
    }

    .sidebar-divider { height: 1px; background: rgba(0,0,0,0.05); }

/* Extracted from edit-profile.blade.php */
.form-control-premium, .form-select-premium {
        background: #fcfdfe;
        border: 1px solid #e2e8f0;
        border-radius: 0.85rem;
        padding: 0.85rem 1.25rem;
        transition: all 0.2s ease;
        width: 100%;
    }
    .form-control-premium:focus, .form-select-premium:focus {
        background: #fff;
        border-color: var(--ag-primary);
        box-shadow: 0 0 0 5px rgba(0, 149, 215, 0.1);
        outline: none;
    }
    .form-label-premium {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #64748b;
        letter-spacing: 0.05em;
        margin-bottom: 0.6rem;
        display: block;
    }

/* Extracted from manage-business.blade.php */
.banner-upload-container:hover {
            border-color: var(--ag-primary) !important;
            background: rgba(0, 149, 215, 0.05) !important;
        }

        .logo-upload-container:hover {
            border-color: var(--ag-primary) !important;
            transform: scale(1.02);
        }

        .business-hero {
            height: 200px;
            background: #1e293b;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(#ffffff1a 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.1;
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
        }

        .business-logo-container {
            width: 120px;
            height: 120px;
            margin-bottom: -60px;
        }

        .form-control-premium,
        .form-select-premium {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 1rem;
            padding: 1rem 1.25rem;
            transition: all 0.2s ease;
            width: 100%;
        }

        .form-control-premium:focus,
        .form-select-premium:focus {
            background: #fff;
            border-color: var(--ag-primary);
            box-shadow: 0 0 0 4px rgba(0, 149, 215, 0.1);
            outline: none;
        }

        .form-label-premium {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #475569;
            letter-spacing: 0.05em;
            margin-bottom: 0.6rem;
            display: block;
        }

        .hvr-grow {
            transition: transform 0.2s ease;
        }

        .hvr-grow:hover {
            transform: scale(1.02);
        }

        .opacity-05 { opacity: 0.05; }
        .ls-wide { letter-spacing: 0.1em; }

/* Extracted from business-directory.blade.php */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Extracted from business-profile.blade.php */
.business-hero {
            height: 240px;
            background: #1e293b;
            overflow: visible;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(#ffffff1a 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.2;
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
        }

        .business-logo-container {
            width: 140px;
            height: 140px;
            border: 4px solid #fff;
            margin-bottom: -70px;
        }

        .profile-header-content {
            z-index: 10;
        }

        .contact-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .verification-bg-icon {
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 6rem;
            opacity: 0.1;
            transform: rotate(15deg);
        }

        .hvr-grow {
            transition: transform 0.2s ease;
        }

        .hvr-grow:hover {
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .business-hero {
                height: 180px;
            }
            .business-logo-container {
                width: 100px;
                height: 100px;
                margin-bottom: -50px;
            }
        }

/* Extracted from course-list.blade.php */
.bg-gradient-dark { background: linear-gradient(transparent, rgba(0,0,0,0.8)); }
    .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Extracted from course-player.blade.php */
.scroll-y {
        overflow-y: auto;
    }

    .active-lesson-indicator {
        border-left: 4px solid var(--ag-primary) !important;
        background: rgba(0, 149, 215, 0.05) !important;
    }

    .prose img {
        max-width: 100%;
        border-radius: 1.5rem;
        margin: 3rem 0;
        box-shadow: var(--ag-shadow);
    }

    .hvr-grow {
        transition: transform 0.2s ease;
    }

    .hvr-grow:hover {
        transform: scale(1.05);
    }

    .gold-text {
        background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    .restricted-content-wrapper {
        position: relative;
        overflow: hidden;
    }

    .restricted-content-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
        pointer-events: none;
    }

/* Extracted from event-detail.blade.php */
.bg-gradient-dark { background: linear-gradient(transparent, rgba(0,0,0,0.8)); }

/* Extracted from event-list.blade.php */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .text-truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Extracted from quiz-engine.blade.php */
.quiz-option-card {
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        color: #1e293b;
    }
    .quiz-option-card .option-index {
        background: #fff;
        border: 2px solid #e2e8f0;
        color: #64748b;
        transition: all 0.2s ease;
    }
    .quiz-option-card:hover {
        background: #fff;
        border-color: var(--ag-primary);
        box-shadow: 0 10px 15px -3px rgba(0, 149, 215, 0.1);
        transform: translateX(10px);
    }
    .quiz-option-card:hover .option-index {
        background: var(--ag-primary);
        border-color: var(--ag-primary);
        color: #fff;
    }
    .max-w-600 { max-width: 600px; }

/* Extracted from index.blade.php */
.certificate-preview {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }
        .cert-border-inner {
            border: 1px solid rgba(255,255,255,0.1) !important;
            transform: rotate(-2deg);
        }

/* Extracted from show.blade.php */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@700;900&family=Pinyon+Script&family=Dancing+Script&display=swap');

        :root {
            --cert-gold: #AF9500;
            --cert-gold-light: #D4AF37;
            --cert-navy: #0f172a;
            --cert-bg: #fdfdfd;
        }

        .certificate-canvas {
            width: 1000px;
            height: 700px;
            background: var(--cert-bg);
            color: var(--cert-navy);
            font-family: 'Libre Baskerville', serif;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        /* Watermark Background */
        .cert-watermark {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 30-15 30-15-30z' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
            background-size: 80px 80px;
            pointer-events: none;
        }

        .cert-outer-border {
            padding: 30px;
            height: 100%;
        }

        .cert-middle-border {
            border: 8px double var(--cert-gold);
            height: 100%;
            padding: 10px;
        }

        .cert-inner-border {
            border: 1px solid var(--cert-gold-light);
            height: 100%;
            padding: 40px;
            position: relative;
            background: rgba(255, 255, 255, 0.5);
        }

        /* Ornate Corners */
        .corner-ornament {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 4px solid var(--cert-gold);
            z-index: 10;
        }
        .top-left { top: -5px; left: -5px; border-right: 0; border-bottom: 0; }
        .top-right { top: -5px; right: -5px; border-left: 0; border-bottom: 0; }
        .bottom-left { bottom: -5px; left: -5px; border-right: 0; border-top: 0; }
        .bottom-right { bottom: -5px; right: -5px; border-left: 0; border-top: 0; }

        .cert-platform-name { font-size: 0.8rem; letter-spacing: 5px; color: #64748b; font-weight: 700; }
        .cert-divider { width: 60px; height: 3px; background: var(--cert-gold); border-radius: 2px; }
        
        .cert-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--cert-navy);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .cert-declaration { font-style: italic; color: #475569; font-size: 1.1rem; }
        
        .cert-user-name {
            font-family: 'Libre Baskerville';
            font-size: 5rem;
            color: var(--cert-gold);
            line-height: 1;
            margin: 20px 0;
            text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
        }

        .cert-course-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--cert-navy);
            font-weight: 700;
        }

        /* Wax Seal */
        .cert-wax-seal {
            width: 90px;
            height: 90px;
            background: #cd1818; /* Wax red */
            background: radial-gradient(#ef4444, #cd1818);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            position: relative;
            border: 2px solid #991b1b;
        }

        .wax-seal-inner {
            width: 70px;
            height: 70px;
            border: 2px dashed rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2.5rem;
        }

        .cert-seal-ribbons .ribbon-red {
            position: absolute;
            top: 20px;
            width: 30px;
            height: 80px;
            background: #991b1b;
            z-index: 15;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
        }
        .ribbon-red.left { left: 40%; transform: rotate(15deg); }
        .ribbon-red.right { right: 40%; transform: rotate(-15deg); }

        .cert-signature-font { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: #334155; }
        .cert-signature-line { height: 2px; background: #cbd5e1; width: 100%; }
        .cert-signature-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; color: #64748b; letter-spacing: 2px; }

        .ls-extra-wide { letter-spacing: 3px; }
        .cert-seal-text { font-size: 0.65rem; color: #64748b; font-weight: 800; }
        .cert-meta-item { font-family: 'Monaco', 'Consolas', monospace; font-size: 0.7rem; color: #94a3b8; }

        @media print {
            .btn, nav, header { display: none !important; }
            .certificate-canvas { border: none !important; shadow: none !important; margin: 0 !important; }
        }

/* WASH Gold Card Styles */
.gold-card-container {
    background: linear-gradient(135deg, #090c15 0%, #05070d 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 
                0 0 40px rgba(212, 175, 55, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-card-container:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 
                0 0 60px rgba(212, 175, 55, 0.08),
                inset 0 1px 1px rgba(255, 255, 255, 0.06);
}
.gold-card-bg-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, rgba(212, 175, 55, 0.01) 50%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
}
.gold-card-wrapper {
    position: relative;
    z-index: 2;
}
.gold-card-mockup {
    background: linear-gradient(135deg, #12151e 0%, #06080c 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 
                inset 0 1px 2px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-card-mockup:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(212, 175, 55, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.12);
}
.gold-card-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 35%,
        rgba(212, 175, 55, 0.12) 45%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(212, 175, 55, 0.12) 55%,
        rgba(255, 255, 255, 0) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: goldPassShimmer 6s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
}
@keyframes goldPassShimmer {
    0% { left: -150%; }
    40% { left: 150%; }
    100% { left: 150%; }
}
.gold-card-mockup-watermark {
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 7.5rem;
    color: rgba(212, 175, 55, 0.025);
    pointer-events: none;
    transform: rotate(-10deg);
    transition: all 0.5s ease;
}
.gold-card-mockup:hover .gold-card-mockup-watermark {
    color: rgba(212, 175, 55, 0.045);
    transform: rotate(-5deg) scale(1.05);
}
.gold-card-chip {
    width: 46px;
    height: 35px;
    background: linear-gradient(135deg, #fff2cc 0%, #d4af37 40%, #aa7c11 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.25);
}
.gold-card-chip::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
}
.text-gold-gradient {
    background: linear-gradient(90deg, #ffe596 0%, #d4af37 40%, #fff2cc 70%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 2px;
}
.gold-card-logo-text {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffe596 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}
.gold-card-number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 1.75rem 0 1.25rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.gold-card-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 3px;
    font-weight: 700;
}
.gold-card-holder-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.gold-card-balance-val {
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff 0%, #fce0ad 60%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.badge-gold-royal {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: #e5c158 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 0.72rem !important;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}
.badge-gold-royal:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}
.gold-benefits-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 576px) {
    .gold-benefits-compact {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}
.gold-benefit-item-compact {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02),
                0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-benefit-item-compact:hover {
    background: rgba(212, 175, 55, 0.035);
    border-color: rgba(212, 175, 55, 0.22);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25),
                0 0 15px rgba(212, 175, 55, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-2px) translateX(2px);
}
.gold-benefit-checkmark-wrapper {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}
.gold-benefit-item-compact:hover .gold-benefit-checkmark-wrapper {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}
.gold-benefit-checkmark {
    color: #e5c158;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.gold-benefit-text-compact {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
}

/* Business Profile Status Modal Styles */
.status-icon-wrapper {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: statusIconPulse 2.5s infinite ease-in-out;
    opacity: 0;
}

.modal.show .status-icon-wrapper {
    animation: statusIconBounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, statusIconPulse 2.5s infinite ease-in-out 0.8s;
}

@keyframes statusIconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); filter: brightness(1.1); }
    100% { transform: scale(1); }
}

@keyframes statusIconBounce {
    0% { transform: scale(0.3) rotate(-30deg); opacity: 0; }
    70% { transform: scale(1.12) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

#profileStatusModal, #cropperModal {
    background-color: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(5px);
}


