/* Modern Clean Stylesheet for Local Service Website */
:root {
    --primary-color: #0b4f6c;
    --secondary-color: #01baef;
    --accent-color: #d90429;
    --text-color: #2b2d42;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 60px; /* Space for mobile bar */
}

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

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

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

/* Header & Nav */
.top-bar {
    background: var(--text-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-phone { color: #80ed99; text-decoration: none; font-weight: bold; }

.main-nav {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}
.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-secondary { background: var(--secondary-color); color: var(--white); }
.btn-call { background: var(--accent-color); color: var(--white); }
.btn-large { font-size: 1.2rem; padding: 15px 30px; }

/* Hero */
.hero {
    background: linear-gradient(rgba(11,79,108,0.85), rgba(11,79,108,0.85)), url('https://images.pexels.com/photos/8486972/pexels-photo-8486972.jpeg') center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 25px auto; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Content & Cards */
.page-content { padding: 40px 0; }
.card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}
.card h3 { margin-bottom: 10px; color: var(--primary-color); }
.card a { color: var(--primary-color); font-weight: bold; text-decoration: none; display: inline-block; margin-top: 10px; }

.cta-banner {
    background: var(--light-bg);
    padding: 50px 0;
    margin: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail { margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.service-detail h2 { color: var(--primary-color); margin-bottom: 10px; }

/* Contact Form */
.contact-form label { display: block; margin-top: 15px; font-weight: bold; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background: #1d2d44;
    color: var(--white);
    padding: 40px 0 20px 0;
    margin-top: 40px;
}
.site-footer h4 { margin-bottom: 15px; color: var(--secondary-color); }
.site-footer ul { list-style: none; }
.site-footer a { color: #ccc; text-decoration: none; }

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color);
    padding: 10px;
    display: none;
    z-index: 1000;
}
.btn-full { display: block; text-align: center; font-size: 1.1rem; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .mobile-sticky-bar { display: block; }
}