:root {
    --royal-blue: #0056b3;
    --royal-blue-hover: #004494;
    --charcoal: #333333;
    --charcoal-dark: #222222;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light-gray); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-blue { background-color: var(--royal-blue); }
.white { color: var(--white) !important; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.opacity-80 { opacity: 0.8; }

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-blue { color: var(--royal-blue); }
.brand-charcoal { color: var(--charcoal); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--royal-blue);
}

.nav-cta-phone {
    background: var(--royal-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero */
.hero {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--royal-blue-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--royal-blue);
}

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

.btn-lg {
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
}

.full-width {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Flex Grid Layouts */
.flex-row {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.flex-row.reverse {
    flex-direction: row-reverse;
}

.align-center {
    align-items: center;
}

.half-content, .half-img, .half-form {
    flex: 1;
    min-width: 300px;
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

/* Images */
.rounded-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.shadow {
    box-shadow: var(--shadow);
}

.trust-badge-img {
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.comparison-img {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Trust List */
.trust-list {
    list-style: none;
    margin-top: 1.5rem;
}

.trust-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Reviews */
.reviews-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-card {
    background: var(--light-gray);
    padding: 2rem;
    border-left: 4px solid var(--royal-blue);
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.author {
    font-weight: 700;
    color: var(--royal-blue);
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--royal-blue);
}

/* Service Areas Grid */
.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.area-grid span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-info-block {
    margin-top: 2rem;
}

.contact-info-block a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--charcoal-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.white-text { color: white; }

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--royal-blue);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for small screens since no JS for burger */
    }
    
    .nav-cta-phone {
        display: flex;
    }

    .flex-row {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        padding: 80px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
