/* Modern Local Service Website Stylesheet */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --accent: #f59e0b;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Header & Top Bar */
.top-bar {
    background-color: #0f172a;
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.875rem;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: var(--accent);
    font-weight: 600;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: capitalize;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://images.pexels.com/photos/221540/pexels-photo-221540.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    color: var(--white);
    padding: 80px 16px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent);
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.1s, background-color 0.2s;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
}

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

.section-title h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Cards */
.card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
}

.card h3 {
    margin-bottom: 16px;
    color: #0f172a;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    border-radius: 6px;
    padding: 20px;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 16px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 0.875rem;
}

/* Sticky Mobile CTA Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f172a;
    border-top: 1px solid #334155;
    padding: 12px 16px;
    z-index: 999;
    text-align: center;
}

.mobile-sticky-bar a {
    display: block;
    background-color: var(--accent);
    color: #0f172a;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
