/* Service Areas Page Styles */

/* Hero Section Override for Service Areas */
.service-areas-page .hero {
    padding: 5.5rem 1.5rem 3rem;
    min-height: auto;
    background: linear-gradient(135deg, #e8edf0 0%, #d8dfe3 100%);
    margin: 0;
}

.service-areas-page .hero h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 1rem;
}

.service-areas-page .hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-areas-page .hero .hero-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-grid {
    padding: 3rem 0 4rem;
    background-color: #f9f9f9;
}

/* Map Container */
.map-container {
    margin: 3rem auto 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Area Group */
.area-group {
    margin-bottom: 3rem;
}

/* Area Cards */
.area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.area-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.area-card h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.area-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Footer Styles */
.footer {
    background-color: #2a3f24;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-areas-page .hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .service-areas-page .hero h1 {
        font-size: 2rem;
    }

    .service-areas-page .hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .area-cards {
        grid-template-columns: 1fr;
    }
}
