/* CSS Stylesheet for Local Service Website */
:root {
    --primary-color: #0d5c91;
    --primary-dark: #083e63;
    --accent-color: #d9534f;
    --text-color: #2b2b2b;
    --bg-light: #f4f7f9;
    --bg-dark: #1a252f;
    --border-color: #e2e8f0;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-stack);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    padding-bottom: 60px; /* Offset for sticky mobile bar */
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

/* Header & Nav */
.top-bar {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-size: 0.875rem;
    padding: 8px 0;
}

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

.top-bar-phone {
    color: #ffffff;
    font-weight: bold;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--primary-dark);
    font-size: 1.25rem;
    text-decoration: none !important;
}

.sub-logo {
    font-size: 0.85rem;
    color: #666;
}

.nav-menu a {
    margin: 0 12px;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-header {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.btn-primary:hover {
    background-color: #c9302c;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    border-radius: 0;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #eef5fc 0%, #ffffff 100%);
}

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
}

.hero-text h1 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: #4a5568;
    flex-wrap: wrap;
}

/* Grid & Layouts */
.section {
    padding: 60px 0;
}

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

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

.text-white {
    color: #ffffff;
}

.text-white a {
    color: #ffffff;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.85rem;
    color: var(--primary-dark);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

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

.card-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
}

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

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

/* Contact Box */
.contact-box {
    margin-top: 25px;
}

.phone-display {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}
