/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Typography & Grid Helpers */
h1, h2, h3 {
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

.section-lead {
    font-size: 1.15rem;
    color: #555555;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    h1 { font-size: 3rem; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004085;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    text-decoration: none;
}

.btn-phone {
    background-color: #28a745;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.btn-phone:hover {
    background-color: #218838;
    text-decoration: none;
}

.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
}

.text-link {
    font-weight: 600;
    color: #0056b3;
    display: inline-block;
    margin-top: 10px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.main-nav ul {
    display: none;
}

@media (min-width: 992px) {
    .main-nav ul {
        display: flex;
        gap: 25px;
    }
    .main-nav a {
        color: #444444;
        font-weight: 500;
    }
    .main-nav a:hover {
        color: #0056b3;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.hero-content p {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
    .hero-buttons {
        flex-direction: row;
    }
}

/* Cards & Content Blocks */
.card, .service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.service-card img {
    border-radius: 4px;
    margin-bottom: 15px;
}

.check-list {
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444444;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.address-box, .contact-box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.map-placeholder {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 6px;
    padding: 60px 20px;
    text-align: center;
}

/* Cost & CTA Banners */
.text-container {
    max-width: 800px;
}

.cta-banner {
    background-color: #e8f4fd;
    border-left: 4px solid #0056b3;
    padding: 25px;
    margin-top: 30px;
    border-radius: 0 6px 6px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .cta-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.site-footer a {
    color: #cccccc;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

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

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    z-index: 99;
    text-align: center;
}

.mobile-call-btn {
    display: block;
    background-color: #28a745;
    color: #ffffff;
    font-weight: bold;
    padding: 12px;
    border-radius: 4px;
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-call-btn:hover {
    background-color: #218838;
    text-decoration: none;
    color: #ffffff;
}

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