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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-bottom: 60px; /* Space for mobile sticky bar */
}

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

ul {
    list-style: none;
}

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

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

.py-section {
    padding: 60px 0;
}

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

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

.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }

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

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

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

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

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

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

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-nav a {
    font-size: 0.95rem;
    color: #444;
}

.main-nav a:hover {
    color: #0056b3;
}

.header-cta .btn-phone {
    font-weight: 700;
    color: #0056b3;
    font-size: 1rem;
}

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

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Section Titles */
.section-title {
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111;
}

.section-title p {
    color: #666;
    font-size: 1rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #111;
}

.card p {
    color: #555;
    font-size: 0.95rem;
}

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

.service-item {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-item h3, .service-item p {
    padding: 0 20px;
}

.service-item h3 {
    margin: 15px 0 10px 0;
    font-size: 1.25rem;
}

.service-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Local Section */
.local-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.local-info, .local-map {
    flex: 1;
}

.local-info p {
    margin-bottom: 10px;
    color: #555;
}

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

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #111;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px 0;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p, .footer-col li a {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-col li a:hover {
    color: #fff;
}

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

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0056b3;
    z-index: 1001;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-call-btn {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .local-grid {
        flex-direction: column;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    body {
        padding-bottom: 60px;
    }
}
