﻿:root {
    /* NEW CSS VARIABLES FOR ACCOUNTING SERVICES */
    --accounting-primary: #059669;
    --accounting-secondary: #047857;
    --accounting-accent: #34d399;
    --accounting-light: #f0fdf4;
    --money-green: #10b981;
    --audit-blue: #3b82f6;
    --expense-red: #ef4444;
    --income-green: #059669;
    --reconciliation-purple: #8b5cf6;
    --reports-orange: #f59e0b;
    --financial-bg: #f0fdf4;
    --ledger-bg: #f0f9ff;
    --balance-sheet-gradient-start: #059669;
    --balance-sheet-gradient-end: #3b82f6;
    --chart-income: #10b981;
    --chart-expense: #ef4444;
    --chart-balance: #3b82f6;
    --chart-outstanding: #f59e0b;
    --chart-reconciled: #8b5cf6;
    --professional-gradient-start: #059669;
    --professional-gradient-end: #047857;
}
/* NEW CLASSES SPECIFIC TO ACCOUNTING SERVICES */
.accounting-badge {
    background: linear-gradient(45deg, var(--accounting-primary), var(--accounting-secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.financial-dashboard {
    background: linear-gradient(135deg, var(--financial-bg), #ffffff);
    border: 3px solid #bbf7d0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.1);
    position: relative;
    min-height: 450px;
}

.financial-dashboard-header {
    background: linear-gradient(135deg, var(--accounting-primary), var(--accounting-secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
    margin: -2rem -2rem 2rem -2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accounting-service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .accounting-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--accounting-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .accounting-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(5, 150, 105, 0.15);
        border-color: var(--accounting-primary);
    }

        .accounting-service-card:hover::before {
            transform: scaleY(1);
        }

.service-status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-status-automated {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accounting-primary);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.service-status-manual {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-status-premium {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* NEW ICON CLASSES FOR ACCOUNTING TYPES */
.accounting-icon-billing {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accounting-primary), var(--accounting-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.accounting-icon-reports {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--audit-blue), #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.accounting-icon-reconciliation {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--reconciliation-purple), #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.accounting-icon-audit {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--reports-orange), #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.financial-metric-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

    .financial-metric-card:hover {
        border-color: var(--accounting-primary);
        background: rgba(5, 150, 105, 0.02);
    }

.financial-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.amount-positive {
    color: var(--income-green);
}

.amount-negative {
    color: var(--expense-red);
}

.amount-neutral {
    color: var(--audit-blue);
}

.accounting-process-flow {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .accounting-process-flow::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accounting-primary), var(--accounting-accent));
    }

    .accounting-process-flow:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
        border-color: var(--accounting-primary);
    }

.accounting-step-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accounting-primary), var(--accounting-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.ownership-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(5, 150, 105, 0.1);
    color: var(--accounting-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

    .ownership-indicator::before {
        content: '🔒';
        margin-right: 6px;
    }

.accounting-analytics-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .accounting-analytics-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--accounting-primary), var(--accounting-accent));
    }

    .accounting-analytics-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(5, 150, 105, 0.15);
        border-color: var(--accounting-primary);
    }

.accounting-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accounting-primary), var(--accounting-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.excel-integration-demo {
    background: #1f2937;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.excel-screen {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    min-height: 400px;
    position: relative;
}

.excel-header {
    background: #217346;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.data-ownership-gauge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--accounting-primary) 0% 100%, var(--border-color) 0% 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

    .data-ownership-gauge::before {
        content: '';
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        position: absolute;
    }

.data-ownership-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 700;
    color: var(--accounting-primary);
}
/* NEW ICON CLASSES FOR ACCOUNTING FEATURES */
.icon-data-ownership {
    background: linear-gradient(135deg, var(--accounting-primary) 0%, var(--accounting-secondary) 100%);
}

.icon-transparent-pricing {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.icon-mobile-app {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-data-migration {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.icon-maintenance-bills {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.icon-reconciliation {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
