
:root {
    --primary: #0f172a;
    --secondary: #0284c7;
    --accent: #0ea5e9;
    --text: #334155;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* space for sticky mobile cta */
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    padding: 8px 0;
}
.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-phone {
    font-weight: bold;
    color: var(--accent);
}

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: capitalize;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.main-nav a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--secondary);
}
.header-cta .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
}
.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #0369a1;
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    color: var(--white);
    text-align: left;
}
.hero-content {
    max-width: 700px;
}
.hero-section h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #e2e8f0;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.trust-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.trust-item p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Sections & Grids */
.section-padding {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--bg-light);
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}
.section-header p {
    color: #64748b;
    font-size: 1.05rem;
}
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Lists & Cards */
.check-list {
    list-style: none;
    margin-top: 20px;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
}
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}
.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.cta-box-inline {
    margin-top: 40px;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.text-link {
    color: var(--secondary);
    font-weight: 600;
}

/* Address Box */
.address-box {
    margin-top: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border);
}
.address-box p {
    margin-bottom: 8px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.faq-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.cta-section p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Footer */
.site-footer {
    background-color: #090d16;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.site-footer h3, .site-footer h4 {
    color: var(--white);
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    z-index: 1000;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.mobile-sticky-cta a {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .trust-grid, .grid-3col, .faq-grid, .footer-grid, .grid-2col {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .mobile-sticky-cta {
        display: block;
    }
    .cta-box-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}
