/* ============================================
   BHOWCO - 365-Day Visibility KPIs
   Version: 1.0
   Path: woodmart-child/css/365-visibility-kpis.css
   ============================================ */

/* ----- SECTION CONTAINERS ----- */
.b2c-visibility-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.b2b-section-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.05);
}

.b2b-section-box-gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #f59e0b;
}

.b2b-section-box-blue {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.b2b-section-box-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 35px;
    margin: 40px 0;
    border: 2px solid #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

.b2b-section-box-footer {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    border-radius: 12px;
    padding: 35px;
    margin-top: 40px;
    border: 1px solid #475569;
    position: relative;
    overflow: hidden;
    color: white;
}

.b2b-section-box-light {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid #cbd5e1;
}

/* ----- HEADINGS ----- */
.b2b-section-title {
    color: #1e3a8a;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
}

.b2b-section-subtitle {
    color: #4b5563;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
}

.b2b-section-heading {
    color: #1e3a8a;
    margin-top: 0;
    text-align: center;
    border-bottom: 2px solid #c7d2fe;
    padding-bottom: 15px;
    font-size: 1.4em;
}

.b2b-section-heading-white {
    color: white;
    margin-top: 0;
    font-size: 1.6em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.b2b-section-heading-gold {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3em;
}

.b2b-section-heading-blue {
    color: #0369a1;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.b2b-section-heading-dark {
    color: white;
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* ----- KPI CARDS ----- */
.kpi-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #3b82f6;
}

.kpi-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.kpi-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.kpi-number {
    background-color: #3b82f6;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1em;
    margin-right: 15px;
    flex-shrink: 0;
}

.kpi-title {
    margin: 0;
    font-size: 1.2em;
}

.kpi-title-blue {
    color: #1e40af;
}

.kpi-title-green {
    color: #065f46;
}

.kpi-title-purple {
    color: #5b21b6;
}

.kpi-title-orange {
    color: #b45309;
}

.kpi-title-pink {
    color: #be185d;
}

.kpi-title-cyan {
    color: #0e7490;
}

.kpi-description {
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.6;
}

.kpi-box {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid;
}

.kpi-box-blue {
    background-color: #eff6ff;
    border-color: #dbeafe;
}

.kpi-box-green {
    background-color: #f0fdf4;
    border-color: #d1fae5;
}

.kpi-box-purple {
    background-color: #f5f3ff;
    border-color: #ede9fe;
}

.kpi-box-orange {
    background-color: #fffbeb;
    border-color: #fef3c7;
}

.kpi-box-pink {
    background-color: #fdf2f8;
    border-color: #fce7f3;
}

.kpi-box-cyan {
    background-color: #ecfeff;
    border-color: #a5f3fc;
}

.kpi-box-text {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.kpi-box-text-blue {
    color: #1e40af;
}

.kpi-box-text-green {
    color: #065f46;
}

.kpi-box-text-purple {
    color: #5b21b6;
}

.kpi-box-text-orange {
    color: #b45309;
}

.kpi-box-text-pink {
    color: #be185d;
}

.kpi-box-text-cyan {
    color: #0e7490;
}

/* ----- VANITY METRICS GRID ----- */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.metric-vanity {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid #fca5a5;
}

.metric-vanity-title {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-vanity-label {
    color: #dc2626;
    font-size: 1.1rem;
}

.metric-vanity-desc {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 5px;
}

.metric-signal {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid #6ee7b7;
}

.metric-signal-title {
    font-size: 1.5rem;
    color: #065f46;
    font-weight: 700;
    margin-bottom: 8px;
}

.metric-signal-label {
    color: #065f46;
    font-size: 1.1rem;
}

.metric-signal-desc {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ----- JOURNEY FRAMEWORK GRID ----- */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.journey-step {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border-top: 5px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.journey-step-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.journey-step-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.journey-step-title-blue {
    color: #1e40af;
}

.journey-step-title-orange {
    color: #b45309;
}

.journey-step-title-green {
    color: #065f46;
}

.journey-step-title-purple {
    color: #5b21b6;
}

.journey-step-title-pink {
    color: #be185d;
}

.journey-step-desc {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ----- PROGRESS INDICATORS LIST ----- */
.progress-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.progress-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: white;
    padding: 18px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.08);
    border-left: 4px solid #3b82f6;
}

.progress-item-icon {
    font-size: 1.2em;
    flex-shrink: 0;
}

.progress-item-text strong {
    color: #1e3a8a;
}

/* ----- TRUST MODEL GRID ----- */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.trust-badge {
    display: inline-block;
    background: #0ea5e9;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.trust-tag {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-tag-blue {
    background: rgba(96, 165, 250, 0.15);
    color: #93c5fd;
    border-color: rgba(96, 165, 250, 0.2);
}

.trust-tag-green {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.2);
}

.trust-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-box-title {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.trust-box-list {
    color: #e2e8f0;
    margin: 0;
    padding-left: 20px;
    line-height: 2.2;
}

.trust-box-list strong {
    color: #60a5fa;
}

/* ----- BOTTOM LINE ----- */
.bottom-line-orb-top {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 50%;
}

.bottom-line-orb-bottom {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 50%;
}

.bottom-line-content {
    position: relative;
    z-index: 2;
}

.bottom-line-highlight {
    background-color: rgba(96, 165, 250, 0.15);
    border-radius: 10px;
    padding: 22px;
    display: inline-block;
    border: 1px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(5px);
}

.bottom-line-highlight-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.6;
}

.bottom-line-highlight-text span {
    color: #60a5fa;
}

.bottom-line-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.bottom-line-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.bottom-line-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bottom-line-dot-blue {
    background: #3b82f6;
}

.bottom-line-dot-orange {
    background: #f59e0b;
}

.bottom-line-dot-green {
    background: #10b981;
}

.bottom-line-dot-purple {
    background: #8b5cf6;
}

.bottom-line-dot-pink {
    background: #ec4899;
}

/* ----- GENERAL HELPERS ----- */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-muted {
    color: #475569;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gap-12 {
    gap: 12px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .b2b-section-box,
    .b2b-section-box-gold,
    .b2b-section-box-blue,
    .b2b-section-box-dark,
    .b2b-section-box-footer,
    .b2b-section-box-light {
        padding: 20px;
    }

    .kpi-card {
        padding: 18px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }

    .b2b-section-title {
        font-size: 1.5em;
    }

    .bottom-line-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .kpi-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kpi-number {
        margin-right: 0;
    }
}