/* ===== RESETING STYLES ===== */
:root {
            --primary: #1A3A5C;
            --primary-dark: #0F2440;
            --accent: #D4AF37;
            --accent-light: #E8C84A;
            --bg-light: #F8F9FA;
            --text-dark: #2C3E50;
            --text-muted: #6C757D;
            --success-color: #28A745;
            --warning-color: #FFC107;
            --danger-color: #DC3545;
            --sidebar-width: 280px;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    z-index: 1050;
}

.navbar-custom .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .navbar-brand i {
    color: var(--accent);
    font-size: 1.5rem;
}

.navbar-custom .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.5rem 0.8rem !important;
    border-radius: 6px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #fff !important;
    background: rgba(212,175,55,0.2);
}

.navbar-custom .nav-link .phase-num {
    background: var(--accent);
    color: var(--primary-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 5px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - 60px);
    background: #fff;
    border-right: 1px solid #e9ecef;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    z-index: 1040;
    transition: transform 0.3s ease;
}

.sidebar .sidebar-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.sidebar .nav-sidebar {
    list-style: none;
    padding: 0;
}

.sidebar .nav-sidebar li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    margin-bottom: 3px;
}

.sidebar .nav-sidebar li a:hover {
    background: rgba(26,58,92,0.07);
    color: var(--primary);
}

.sidebar .nav-sidebar li a.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(26,58,92,0.3);
}

.sidebar .nav-sidebar li a .nav-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(26,58,92,0.08);
    flex-shrink: 0;
}

.sidebar .nav-sidebar li a.active .nav-icon {
    background: rgba(255,255,255,0.2);
    color: var(--accent);
}

.sidebar .nav-sidebar li a .phase-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--accent);
    color: var(--primary-dark);
    margin-left: auto;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: var(--sidebar-width);
    padding-top: 60px;
    min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2A5A8C 100%);
    background: url('/assets/img/hero1.png') no-repeat center / cover;
    color: #fff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.hero-section h1 .highlight {
    color: var(--accent);
}

.hero-section p.lead {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 4px;
}

/* ===== SECTION STYLES ===== */
.section-block {
    padding: 3.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.section-block:nth-child(even) {
    background: #fff;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header .phase-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header .phase-label .phase-icon {
    font-size: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ===== INFOGRAPHIC CONTAINER ===== */
.infographic-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.infographic-container img {
    width: 100%;
    height: auto;
    display: block;
}

.infographic-container .infographic-caption {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

/* ===== STEP CARDS ===== */
.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.step-card .step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-card .step-icon {
    width: 48px;
    height: 48px;
    background: rgba(26,58,92,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== TIMELINE ===== */
.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--primary);
    z-index: 1;
}

.timeline-dot.dot-primary {
    background: var(--primary);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.timeline-card .month-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.timeline-card ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.timeline-card ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 3px 0;
}

.timeline-card ul li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    margin-right: 6px;
}

/* ===== SLA CARDS ===== */
.sla-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sla-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
}

.sla-card .sla-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.sla-card .sla-label {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 500;
}

.sla-card .sla-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

/* ===== KPI CARDS ===== */
.kpi-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s;
    /*height: 100%;*/
    min-height: 414px;
}

.kpi-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.kpi-card .kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.kpi-card .kpi-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.kpi-card .kpi-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 500;
}

.kpi-card .kpi-target {
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.kpi-card .kpi-label .bulletList li{
    color: var(--primary);
    text-align: left;
}

.kpi-card .kpi-label .bulletList li::marker{
    content: "» ";
    color: #d4af37;
}

.kpi-card-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.kpi-card-container .kpi-wrap{
    width: 247px;
}

/* ===== RACI TABLE ===== */
.raci-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.raci-table thead th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 1rem;
    border: none;
    text-align: center;
}

.raci-table thead th:first-child {
    text-align: left;
}

.raci-table tbody td {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    text-align: center;
}

.raci-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.raci-table tbody tr:hover {
    background: rgba(26,58,92,0.03);
}

.raci-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.raci-badge.r {
    background: rgba(26,58,92,0.12);
    color: var(--primary);
}

.raci-badge.a {
    background: rgba(212,175,55,0.2);
    color: #8B6914;
}

.raci-badge.c {
    background: rgba(40,167,69,0.12);
    color: var(--success-color);
}

.raci-badge.i {
    background: rgba(108,117,125,0.1);
    color: var(--text-muted);
}

/* ===== CHANNEL TAGS ===== */
.channel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 3px;
}

.channel-tag.google { background: #EA4335; color: #fff; }
.channel-tag.facebook { background: #1877F2; color: #fff; }
.channel-tag.instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); color: #fff; }
.channel-tag.tiktok { background: #000; color: #fff; }
.channel-tag.whatsapp { background: #25D366; color: #fff; }
.channel-tag.phone { background: var(--primary); color: #fff; }
.channel-tag.video { background: #4285F4; color: #fff; }
.channel-tag.referral { background: var(--accent); color: var(--primary-dark); }

/* ===== HANDOFF FLOW ===== */
.handoff-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.handoff-node {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s;
}

.handoff-node:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.handoff-node .node-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.handoff-node .node-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
}

.handoff-node .node-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.handoff-arrow {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.handoff-node.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}

/* ===== CHECKLIST ===== */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.checklist-item:hover {
    border-color: var(--accent);
    background: rgba(212,175,55,0.03);
}

.checklist-item .check-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(40,167,69,0.1);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checklist-item .check-text {
    font-size: 0.88rem;
    font-weight: 500;
}

/* ===== TEMPLATE CARD ===== */
.template-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    height: 100%;
}

.template-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.template-card .template-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.template-card h6 {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.template-card .template-code {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.template-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== FEEDBACK LOOP ===== */
.feedback-loop {
    text-align: center;
    padding: 2rem;
}

.loop-center {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 1.5rem auto;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,58,92,0.3); }
    50% { box-shadow: 0 0 0 15px rgba(26,58,92,0); }
}

.loop-arrows {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 3px dashed var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== PROGRESS BAR ===== */
.phase-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-step .step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
}

.progress-step .step-dot.active {
    background: var(--primary);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 3px 10px rgba(26,58,92,0.3);
}

.progress-step .step-dot.completed {
    background: var(--success-color);
    border-color: var(--success-color);
    color: #fff;
}

.progress-step .step-line {
    width: 40px;
    height: 3px;
    background: #dee2e6;
    border-radius: 3px;
}

.progress-step .step-line.active {
    background: var(--accent);
}

/* ===== ALERT BOXES ===== */
.alert-custom {
    border-radius: 12px;
    border: none;
    padding: 1.2rem 1.5rem;
}

.alert-custom.alert-info {
    background: rgba(26,58,92,0.06);
    border-left: 4px solid var(--primary);
    color: var(--primary);
}

.alert-custom.alert-warning {
    background: rgba(212,175,55,0.1);
    border-left: 4px solid var(--accent);
    color: #8B6914;
}

.alert-custom.alert-success {
    background: rgba(40,167,69,0.06);
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

/* ===== OBJECTION CARDS ===== */
.objection-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.objection-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.objection-card .objection-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.objection-card h6 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.objection-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26,58,92,0.3);
    z-index: 1060;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar-custom, .sidebar, .scroll-top, .no-print {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
        padding-top: 0 !important;
    }
    .section-block {
        page-break-inside: avoid;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
        box-shadow: 5px 0 20px rgba(0,0,0,0.15);
    }
    .main-content {
        margin-left: 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .handoff-flow {
        flex-direction: column;
    }
    .handoff-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 2.5rem 1rem;
    }
    .hero-section h1 {
        font-size: 1.6rem;
    }
    .section-block {
        padding: 2rem 1rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ===== TABS CUSTOM ===== */
.nav-tabs-custom {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.nav-tabs-custom .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--primary);
    background: rgba(26,58,92,0.04);
}

.nav-tabs-custom .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-bottom: 3px solid var(--accent);
}

/* ===== METRIC BAR ===== */
.metric-bar {
    margin-bottom: 1rem;
}

.metric-bar .metric-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.metric-bar .bar-bg {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.metric-bar .bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease;
}

.bar-fill.gold { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.bar-fill.blue { background: linear-gradient(90deg, var(--primary), #2A5A8C); }
.bar-fill.green { background: linear-gradient(90deg, var(--success-color), #34CE57); }

/* ===== NPS GAUGE ===== */
.nps-gauge {
    width: 200px;
    height: 100px;
    position: relative;
    margin: 0 auto;
}

.nps-gauge svg {
    width: 100%;
    height: 100%;
}

.nps-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.nps-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== TOGGLE SIDEBAR BUTTON ===== */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1060;
    box-shadow: 0 4px 15px rgba(26,58,92,0.3);
}

@media (max-width: 991.98px) {
    .sidebar-toggle {
        display: flex;
    }
}

/* ===== OVERLAY ===== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1035;
}

.sidebar-overlay.show {
    display: block;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}