/* Reset & 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: #333333;
    background-color: #f9fafb;
    padding-bottom: 60px; /* Space for mobile sticky footer */
}

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

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

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    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: #1e3a8a;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #1e3a8a;
}

.header-cta .btn-phone {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.header-cta .btn-phone:hover {
    background-color: #1d4ed8;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.pexels.com/photos/8482894/pexels-photo-8482894.jpeg') no-repeat center center/cover;
    color: #ffffff;
    padding: 80px 0;
    text-align: left;
}

.hero-content {
    max-width: 800px;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #1e3a8a;
    border: 1px solid #cbd5e1;
}

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

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

/* Problem Section */
.problem-section {
    padding: 60px 0;
}

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

.text-block h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 16px;
}

.text-block p {
    margin-bottom: 16px;
    color: #475569;
}

.contextual-cta {
    background-color: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 16px;
    margin-top: 20px;
    border-radius: 0 6px 6px 0;
}

.contextual-cta p {
    margin-bottom: 10px;
    color: #1e3a8a;
}

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

/* Services Overview */
.services-overview-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.services-overview-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 12px;
}

.section-intro {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

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

.service-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover {
    text-decoration: underline;
}

/* Local Trust Section */
.local-trust-section {
    padding: 60px 0;
}

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

.trust-info h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 16px;
}

.trust-info p {
    color: #475569;
    margin-bottom: 16px;
}

.business-details-list {
    list-style: none;
    margin-bottom: 20px;
}

.business-details-list li {
    margin-bottom: 8px;
    color: #334155;
}

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

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 24px auto;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
}

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

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

/* Final CTA Section */
.final-cta-section {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 60px 0;
}

.final-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.final-cta-section p {
    color: #cbd5e1;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.final-cta-section .btn-primary {
    background-color: #2563eb;
    border: 1px solid #60a5fa;
}

.final-cta-section .btn-primary:hover {
    background-color: #1d4ed8;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 50px 0 20px 0;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e3a8a;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    padding: 10px 20px;
    text-align: center;
}

.mobile-call-btn {
    display: block;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 700;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .content-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
}
