@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
    --nx-primary: #0ea5e9;
    --nx-primary-dark: #0284c7;
    --nx-secondary: #6366f1;
    --nx-accent: #14b8a6;
    --nx-dark: #0f172a;
    --nx-dark-soft: #1e293b;
    --nx-surface: #f8fafc;
    --nx-card: #ffffff;
    --nx-border: #e2e8f0;
    --nx-text: #0f172a;
    --nx-muted: #64748b;
    --nx-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 55%, #8b5cf6 100%);
    --nx-gradient-dark: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --nx-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --nx-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --nx-radius: 14px;
    --nx-radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--nx-text);
    -webkit-font-smoothing: antialiased;
}

/* ─── Login (modern) ─── */
html.login-html,
html.login-html body.login-page {
    height: 100%;
    overflow: hidden;
}

.login-page {
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    align-items: stretch;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.login-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: login-float 12s ease-in-out infinite;
}

.login-orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(14, 165, 233, 0.35);
    top: -10%;
    left: -5%;
}

.login-orb-2 {
    width: 360px;
    height: 360px;
    background: rgba(99, 102, 241, 0.3);
    bottom: 10%;
    left: 25%;
    animation-delay: -4s;
}

.login-orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(139, 92, 246, 0.25);
    top: 40%;
    right: 35%;
    animation-delay: -8s;
}

@keyframes login-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.login-wrap {
    display: flex;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.login-brand-panel {
    flex: 1;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    color: #fff;
    height: 100%;
    min-height: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.75) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-brand-panel { display: flex; }
}

.login-brand-inner { max-width: 440px; }

.login-brand-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.login-brand-text { min-width: 0; }

.login-brand-panel .brand-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: var(--nx-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 0;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
    transform: rotate(-3deg);
}

.login-brand-panel h1 {
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.15rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.35;
}

.login-powered-badge {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.login-powered-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
}

.login-powered-badge strong {
    color: #fff;
    font-weight: 600;
}

.login-powered-name {
    display: block;
    margin-top: 0.4rem;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
}

.login-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.login-feature-list li:last-child { margin-bottom: 0; }

.login-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 0.85rem;
}

.login-side-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    flex-shrink: 0;
}

.login-side-contact .contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.contact-phone-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0;
    transition: transform 0.2s, color 0.2s;
}

.contact-phone-link:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.contact-phone-link i { color: #38bdf8; width: 1rem; }

.login-form-panel {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 0;
    padding: 1rem 1.25rem;
    background: rgba(248, 250, 252, 0.97);
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-form-panel {
        flex: 0 0 440px;
        background: #f1f5f9;
        box-shadow: -32px 0 80px rgba(0, 0, 0, 0.25);
    }
}

.login-animate-in {
    animation: login-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes login-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-card-box {
    width: 100%;
    max-width: 380px;
    max-height: calc(100dvh - 1.5rem);
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem 1.35rem 1.15rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nx-gradient);
}

.login-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-primary);
    margin-bottom: 0.35rem !important;
}

.login-card-header {
    margin-bottom: 1rem;
}

.login-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem !important;
}

.login-field {
    margin-bottom: 0.65rem;
}

.login-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nx-text);
    margin-bottom: 0.35rem;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--nx-muted);
    font-size: 0.9rem;
    z-index: 2;
    pointer-events: none;
    transition: color 0.2s;
}

.login-input {
    border: 1.5px solid var(--nx-border);
    border-radius: 12px !important;
    padding: 0.65rem 1rem 0.65rem 2.5rem !important;
    font-size: 0.9rem;
    background: var(--nx-surface) !important;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login-input:focus {
    border-color: var(--nx-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12) !important;
}

.login-input-wrap:focus-within .login-input-icon {
    color: var(--nx-primary);
}

.login-recover-row {
    margin-bottom: 0.75rem;
}

.login-recover-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nx-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.login-recover-link:hover { color: var(--nx-primary-dark); }

.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 12px !important;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
}

.login-footer-actions {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--nx-border);
    text-align: center;
}

.login-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--nx-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
}

.login-back-link:hover {
    color: var(--nx-primary-dark);
    background: rgba(14, 165, 233, 0.08);
}

.login-alert {
    border-radius: 10px;
    font-size: 0.82rem;
    padding: 0.55rem 0.85rem;
    border: none;
    margin-bottom: 0.75rem;
}

.login-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: var(--nx-shadow-lg);
}

.login-modal-header {
    background: var(--nx-gradient);
    color: #fff;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.login-modal-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem;
}

.login-mobile-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    margin-bottom: 1rem;
}

.login-mobile-head .login-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    background: var(--nx-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.login-mobile-head h3 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.login-mobile-tagline {
    font-size: 0.72rem;
    color: var(--nx-muted);
    line-height: 1.3;
    margin-top: 0.1rem;
}

.login-mobile-contact {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 14px;
    text-align: center;
}

.login-mobile-contact .contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-muted);
    margin-bottom: 0.5rem;
}

.login-mobile-contact .contact-phone-link {
    color: var(--nx-text) !important;
    justify-content: center;
    font-size: 0.85rem;
}

.login-mobile-contact .contact-phone-link i { color: var(--nx-primary); }

.login-input-toggle {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    color: var(--nx-muted);
    padding: 0.35rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.login-input-toggle:hover {
    color: var(--nx-primary);
    background: rgba(14, 165, 233, 0.08);
}

.login-input.has-toggle {
    padding-right: 2.75rem !important;
}

@media (max-width: 991px) {
    .login-form-panel {
        background: transparent;
        padding: 0.75rem 1rem;
    }

    .login-card-box {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@media (max-height: 700px) {
    .login-brand-panel { padding: 1.25rem 2rem; gap: 0.85rem; }
    .login-brand-head { margin-bottom: 0.85rem; }
    .login-powered-badge { margin-bottom: 0.65rem; padding: 0.65rem 0.85rem; }
    .login-feature-list li { margin-bottom: 0.35rem; font-size: 0.8rem; }
    .login-card-box { padding: 1rem 1.15rem 0.85rem; }
    .login-card-header { margin-bottom: 0.65rem; }
    .login-field { margin-bottom: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .login-orb,
    .login-animate-in { animation: none; }
}

.btn-nx-primary {
    background: var(--nx-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: var(--nx-radius-sm);
    padding: 0.75rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nx-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* ─── Landing ─── */
.landing-page { background: var(--nx-surface); }

.landing-nav {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section {
    background: var(--nx-gradient-dark);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.25) 0%, transparent 45%);
}

.hero-section .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.feature-card {
    background: var(--nx-card);
    border-radius: var(--nx-radius);
    border: 1px solid var(--nx-border);
    box-shadow: var(--nx-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nx-shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    background: var(--nx-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
}

.landing-footer {
    background: var(--nx-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2.5rem 0;
}

.landing-footer strong { color: #fff; }

/* ─── Agent opportunity ─── */
.agent-section {
    background: var(--nx-gradient-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.agent-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.agent-banner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--nx-radius);
    padding: 2rem 2.5rem;
    backdrop-filter: blur(8px);
}

.agent-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: #7dd3fc;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.agent-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ─── Admin shell ─── */
.wrapper { background: var(--nx-surface); }

.main-sidebar {
    background: var(--nx-gradient-dark) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
    background: var(--nx-gradient) !important;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
    border-radius: var(--nx-radius-sm);
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link {
    border-radius: var(--nx-radius-sm);
    margin: 2px 0.5rem;
    width: calc(100% - 1rem);
    transition: background 0.2s;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.brand-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.25rem 1rem !important;
    text-decoration: none !important;
}

.brand-link .brand-product {
    display: block;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.brand-link .brand-company {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.25rem;
}

.sidebar-company-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.4;
}

.main-sidebar .sidebar { padding-bottom: 4rem; position: relative; min-height: calc(100vh - 5rem); }

.main-header.navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--nx-border) !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04) !important;
}

.main-header .nav-link { color: var(--nx-muted) !important; font-weight: 500; }

.content-wrapper {
    background: var(--nx-surface) !important;
}

.content-header {
    background: transparent;
    padding: 1.25rem 0 0.5rem;
}

.content-header h1 {
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    color: var(--nx-text);
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--nx-muted);
    margin-top: 0.15rem;
}

.main-footer {
    background: #fff;
    border-top: 1px solid var(--nx-border);
    color: var(--nx-muted);
    font-size: 0.85rem;
    padding: 1rem;
}

.main-footer .footer-company {
    font-weight: 700;
    color: var(--nx-text);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── Cards & components ─── */
.card {
    border-radius: var(--nx-radius);
    border: 1px solid var(--nx-border);
    box-shadow: var(--nx-shadow);
    overflow: hidden;
}

.card-header {
    background: #fff;
    border-bottom: 1px solid var(--nx-border);
    font-weight: 700;
}

.card-outline.card-primary { border-top: 3px solid var(--nx-primary) !important; }
.card-outline.card-info { border-top: 3px solid var(--nx-secondary) !important; }
.card-outline.card-success { border-top: 3px solid var(--nx-accent) !important; }
.card-outline.card-warning { border-top: 3px solid #f59e0b !important; }

.small-box {
    border-radius: var(--nx-radius);
    overflow: hidden;
    border: none;
    box-shadow: var(--nx-shadow);
    transition: transform 0.2s;
}

.small-box:hover { transform: translateY(-2px); }

.small-box .inner h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.info-box {
    border-radius: var(--nx-radius);
    box-shadow: var(--nx-shadow);
    border: 1px solid var(--nx-border);
    background: #fff;
}

.btn-primary {
    background: var(--nx-gradient);
    border: none;
    font-weight: 600;
    border-radius: var(--nx-radius-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
    border: none;
}

.btn-outline-primary {
    border-color: var(--nx-primary);
    color: var(--nx-primary-dark);
    border-radius: var(--nx-radius-sm);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--nx-primary);
    border-color: var(--nx-primary);
}

.alert {
    border-radius: var(--nx-radius-sm);
    border: none;
    font-weight: 500;
}

.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fffbeb; color: #92400e; }
.alert-info { background: #eff6ff; color: #1e40af; }

.badge { font-weight: 600; border-radius: 6px; padding: 0.35em 0.65em; }

.table { --bs-table-bg: transparent; }
.table thead th {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nx-muted);
    border-bottom-width: 1px;
}

.datatable { width: 100% !important; }

.modal-content {
    border-radius: var(--nx-radius);
    border: none;
    box-shadow: var(--nx-shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--nx-border);
    background: var(--nx-surface);
}

.form-control, .form-select {
    border-radius: var(--nx-radius-sm);
    border-color: var(--nx-border);
}

.form-control:focus, .form-select:focus {
    border-color: var(--nx-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.bg-purple { background: linear-gradient(135deg, #6366f1, #8b5cf6) !important; color: #fff; }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0ea5e9) !important; color: #fff; }

/* Sample gallery (keep) */
.sample-card .sample-preview,
.sample-pick-card .sample-preview {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-card .sample-preview img,
.sample-pick-card .sample-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-pick-card {
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sample-pick-card:hover {
    border-color: var(--nx-primary);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.event-sample-option {
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius-sm);
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.event-sample-option:hover,
.event-sample-option.selected {
    border-color: var(--nx-primary);
    background: rgba(14, 165, 233, 0.06);
}

.sample-preview-sm {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nx-surface);
    border-radius: 6px;
    overflow: hidden;
}

.sample-preview-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-gallery-min { min-height: 100px; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-pill.active { background: #dcfce7; color: #166534; }
.status-pill.inactive { background: #f1f5f9; color: #64748b; }

@media (max-width: 768px) {
    .small-box .inner h3 { font-size: 1.5rem; }
    .content-header h1 { font-size: 1.35rem; }
}

/* ─── WhatsApp floating chat ─── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.85rem;
    line-height: 1;
}

.whatsapp-float:hover {
    color: #fff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float i { font-size: 1.75rem; }
}
