:root {
    --primary-color: #0F172A; /* Deep Navy Blue */
    --accent-color: #F59E0B; /* Vibrant Orange */
    --accent-hover: #D97706;
    --text-dark: #334155;
    --text-light: #F8FAFC;
    --bg-light: #F1F5F9;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
    padding-top: 76px; /* Offset for sticky header */
}

/* Typography Options */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

/* Header & Navbar */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-outline-custom {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 100px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section .lead {
    color: #CBD5E1;
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Badges / Tags */
.badge-soft {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-item {
    text-align: center;
}

.trust-item h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* How It Works Steps */
.step-item {
    position: relative;
    padding-bottom: 30px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--bg-light);
}

/* Contact Form */
.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #94A3B8;
    padding: 60px 0 20px;
}

.site-footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: rgba(245, 158, 11, 0.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

/* Responsive Edits */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .trust-item {
        margin-bottom: 20px;
    }
}
