:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --accent: #d32f2f;
    --accent-hover: #b71c1c;
    --text: #333;
    --light-bg: #f4f8fb;
    --white: #ffffff;
    --border-radius: 6px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-link {
    color: var(--white);
    font-weight: 700;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,86,179,0.9), rgba(0,68,148,0.9)), url('hero-bg.jpg'); /* Fallback color if image missing */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-badges {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: background 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-full:hover {
    background: var(--accent-hover);
}

/* Form */
.form-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--text);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.form-box h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary);
}

.form-box input, .form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Why Us */
.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.benefits-list li {
    font-size: 1.1rem;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Process */
.process {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.process h2 {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    background: var(--accent);
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    background: var(--white);
    color: var(--accent);
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: var(--border-radius);
    display: inline-block;
}

.btn-large:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        justify-content: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
}
