/* Legal.ag - Custom Styles */

:root {
    --primary-dark: #023047;
    --primary: #0d6efd;
    --accent: #e76f51;
    --text-dark: #0e0c19;
    --text-body: #3c3a47;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-body);
}

h1, h2, h3, h4, h5, h6, .fw-bold {
    font-family: 'Syne', sans-serif;
    color: var(--text-dark);
}

/* Navbar */
.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
}

/* Buttons */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    font-weight: 600;
}
.btn-accent:hover {
    background-color: #c45a3f;
    border-color: #c45a3f;
    color: white;
}

.btn-primary {
    font-weight: 500;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #064f77 60%, #0a7cb5 100%);
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.min-vh-50 {
    min-height: 40vh;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

a.text-light-muted:hover {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Step circle for "How It Works" */
.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Service cards */
.service-card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Footer */
.footer {
    background-color: var(--primary-dark) !important;
}

.footer a {
    text-decoration: none;
}

/* Form inputs */
.form-control-lg, .form-select-lg {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Cards */
.card {
    border-radius: 12px;
}

/* Progress bar */
.progress {
    border-radius: 10px;
    background: #e9ecef;
}

/* Tables */
.table th {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Badge */
.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Navbar brand always white */
.navbar-brand.text-white,
.navbar-brand.text-white:hover,
.navbar-brand.text-white:focus {
    color: #ffffff !important;
}
