/* public_html/assets/css/style.css */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --bg-light: #f8fafc;
    --text-muted: #64748b;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--secondary-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.nav-link {
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 0.5rem;
    transition: color 0.2s;
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    position: relative;
}
.hero-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Cards & Tools */
.tool-card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    text-decoration: none;
    display: block;
    overflow: hidden;
}
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}
.tool-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}
.bg-icon-invoice { background: #dbeafe; color: #2563eb; }
.bg-icon-receipt { background: #dcfce7; color: #16a34a; }
.bg-icon-estimate { background: #fae8ff; color: #c026d3; }
.bg-icon-quote { background: #ffedd5; color: #ea580c; }

/* Features Section */
.feature-box {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg-light);
    height: 100%;
}
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
}
.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}
.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Footer */
.site-footer {
    background: var(--secondary-color);
    color: #94a3b8;
    padding: 4rem 0 2rem;
}
.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: block;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
}