/* Modern Clean Stylesheet for Local Service Website */
:root {
    --primary-color: #0b4f6c;
    --primary-dark: #012a36;
    --accent-color: #00a896;
    --emergency-red: #d90429;
    --emergency-hover: #ef233c;
    --text-color: #2b2d42;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gray-border: #e9ecef;
    --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: var(--white);
    padding-bottom: 60px; /* Space for mobile sticky button */
}

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

a:hover {
    text-decoration: underline;
}

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

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-bar a {
    color: var(--white);
    font-weight: bold;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

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

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-color);
}

.main-nav a.active {
    color: var(--primary-color);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-emergency {
    background-color: var(--emergency-red);
    color: var(--white);
}

.btn-emergency:hover {
    background-color: var(--emergency-hover);
}

.btn-emergency-large {
    background-color: var(--emergency-red);
    color: var(--white);
    font-size: 1.2rem;
    padding: 14px 28px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

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

.badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.3rem;
    margin: 15px 0;
    color: var(--primary-dark);
}

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

.hero-trust-list {
    list-style: none;
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Emergency Banner */
.emergency-banner {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 30px 0;
}

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

/* Layout Grids */
.section {
    padding: 60px 0;
}

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

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

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

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

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

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

/* Cards & Components */
.card {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--gray-border);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-box {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.service-box img, .service-detail-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-box-content {
    padding: 20px;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 20px;
}

.service-detail-card h3 {
    margin: 15px 0 10px 0;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.check-list {
    list-style: none;
    margin-top: 15px;
}

.check-list li {
    margin-bottom: 8px;
    font-weight: 600;
}

.check-list li::before {
    content: "✓ ";
    color: var(--accent-color);
}

.rounded-img {
    width: 100%;
    border-radius: 8px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.faq-item summary {
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    margin-top: 10px;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.emergency-box {
    background-color: #fff0f3;
    border: 1px solid #ffccd5;
    padding: 20px;
    border-radius: 6px;
}

/* Utilities */
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;

}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #adb5bd;
}

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

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #adb5bd;
}

/* Fixed Mobile Sticky Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--emergency-red);
    z-index: 2000;
    text-align: center;
}

.mobile-call-btn {
    display: block;
    color: var(--white);
    font-weight: 800;
    padding: 15px 0;
    font-size: 1.1rem;
    text-decoration: none !important;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .grid-2, .grid-3, .hero-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar-inner, .emergency-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .header-cta {
        display: none;
    }
    .mobile-call-bar {
        display: block;
    }
    .hero-actions {
        flex-direction: column;
    }
}