.area-of-service-hero{
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.service-area-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

/* Update the section styling */
.area-of-service-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

/* Use the same grid structure as contact page */
.service-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Match the location card styling from contact page */
.service-locations-grid .location-card {
    background-color: var(--light-surface);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--light-surface-3);
}

.service-locations-grid .location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.service-locations-grid .location-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-locations-grid .location-details {
    flex: 1;
}

.service-locations-grid .location-details h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-locations-grid .location-details address {
    color: var(--text-muted);
    font-style: normal;
    margin-bottom: 0.75rem;
}

.service-locations-grid .location-info {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-locations-grid .location-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.service-locations-grid .location-info li:last-child {
    margin-bottom: 0;
}

.service-locations-grid .location-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.service-locations-grid .location-actions {
    margin-top: 1rem;
}

.view-terminal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-terminal-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.company-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    padding: 2rem;
    color: white;
    margin-top: 3rem;
}

.company-info-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--white);
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-detail-item strong {
    font-size: 0.9rem;
    opacity: 0.9;
}

.company-detail-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Dispatch CTA and sticky call button */
.dispatch-cta {
    margin: 3rem auto 2rem;
    max-width: 1100px;
    text-align: center;
}

.dispatch-cta h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.dispatch-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
}

.dispatch-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dispatch-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.dispatch-call-btn i {
    font-size: 1.1rem;
}

.dispatch-footnote {
    margin: 1.5rem 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
}

.dispatch-footnote a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.dispatch-footnote a:hover {
    text-decoration: underline;
}

.sticky-call-button {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-call-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.sticky-call-button i {
    font-size: 1.2rem;
    line-height: 1;
}

.sticky-call-number {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .dispatch-cta h2 {
        font-size: 1.6rem;
    }
    .dispatch-cta p {
        font-size: 1rem;
    }
    .dispatch-call-btn {
        width: 100%;
    }
}

/* Responsive adjustments */

/* Tablet-specific styles (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .area-of-service-section {
        padding: 4rem 1.5rem;
    }
    
    .service-area-map {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .service-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-locations-grid .location-card {
        padding: 1.25rem;
    }
    
    .company-info-card {
        padding: 1.75rem;
    }
    
    .company-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .service-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
}