/* Areas We Serve Section Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

.areas-we-serve {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

.feature-dot--accent {
    background: #f59e0b;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Area Card */
.area-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.4s ease-out;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.1);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px -4px rgba(15, 23, 42, 0.2);
}

/* Card Image */
.card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover .card-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-stats {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating i {
    color: #f59e0b;
}

.moves-count {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
}

.area-card:hover .card-title {
    color: #3b82f6;
}

.location-icon {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.card-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Features */
.features {
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.quote-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: transparent;
    color: #3b82f6;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #3b82f6;
    color: white;
}

/* CTA Section */
.cta-section {
    background: #153592 !important;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: fadeInUp 0.6s ease-out;
}

.cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn--primary {
    background: white;
    color: #3b82f6;
    box-shadow: 0 4px 20px -2px rgba(255, 255, 255, 0.1);
}

.cta-btn--primary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.cta-btn--secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .areas-we-serve {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-list {
        gap: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .quote-btn {
        width: 100%;
        padding: 0.75rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .features-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
}

/* Animation delays for staggered entry */
.area-card:nth-child(1) { animation-delay: 0s; }
.area-card:nth-child(2) { animation-delay: 0.1s; }
.area-card:nth-child(3) { animation-delay: 0.2s; }
.area-card:nth-child(4) { animation-delay: 0.3s; }
.area-card:nth-child(5) { animation-delay: 0.4s; }
.area-card:nth-child(6) { animation-delay: 0.5s; }

/* Focus states for accessibility */
.quote-btn:focus,
.cta-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .areas-we-serve {
        background: white;
    }
    
    .area-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .cta-section {
        background: white;
        color: black;
        border: 1px solid #ccc;
    }
}