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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Local Movers Hero Section */
.local-movers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/local-movers-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.local-movers-hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.local-movers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.local-movers-hero .highlight {
    color: #60a5fa;
}

.local-movers-hero p {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Local Services Section */
.local-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 768px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    transition: transform 0.3s ease;
    background: #e3f2fd;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: #1976d2;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.service-features li i {
    color: #28a745;
    margin-right: 8px;
    font-size: 12px;
}

/* Local Process Section */
.local-process {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

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

.process-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 2rem;
    color: white;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e40af;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

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

.section-cta .btn-primary {
    padding: 16px 40px;
    font-size: 1rem;
}

/* Local Companies Section */
.local-companies {
    padding: 80px 0;
    background: white;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.company-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.company-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.company-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.company-info {
    text-align: right;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 0.875rem;
    color: #fbbf24;
}

.rating-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.coverage {
    font-size: 0.875rem;
    color: #6b7280;
}

.company-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.company-card > p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.company-services {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-bottom: 16px;
}

.company-services h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.pricing {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.get-quote-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.get-quote-btn:hover {
    background: #2563eb;
}

.coverage-info {
    margin-top: 48px;
}

.coverage-box {
    background: #dbeafe;
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.coverage-icon {
    width: 64px;
    height: 64px;
    background: #bfdbfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.coverage-icon i {
    font-size: 2rem;
    color: #3b82f6;
}

.coverage-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.coverage-box p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Benefits Section */
.local-benefits {
    padding: 80px 0;
    background: #eff6ff;
}

.benefits-box {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.benefits-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.benefits-box p {
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Form-related styles are now in common/form.css */

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .local-movers-hero h1 {
        font-size: 2.5rem;
    }

    .local-movers-hero p {
        font-size: 1.125rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

}

@media (max-width: 480px) {
    .local-movers-hero h1 {
        font-size: 2rem;
    }

    .local-movers-hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

