/* Service Area Page Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Libre Franklin', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/CSS/img/cb_locations.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4em;
    opacity: 0.95;
    font-weight: 300;
}

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

/* Introduction Section */
.intro-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 2.8em;
    color: #0b477c;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.8em;
    color: #0b477c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Area Cards */
.area-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-card.reverse {
    background: white;
    border: 1px solid #e9ecef;
}

.area-card.reverse .area-content {
    order: 1;
}

.area-card.reverse .area-image {
    order: 2;
}

.area-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.area-content h3 {
    font-size: 2.2em;
    color: #0b477c;
    margin-bottom: 20px;
    font-weight: 700;
}

.area-content > p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.cities-served {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #0b477c;
}

.area-card.reverse .cities-served {
    background: #f8f9fa;
}

.cities-served h4 {
    font-size: 1.3em;
    color: #0b477c;
    margin-bottom: 15px;
    font-weight: 600;
}

.cities-served ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cities-served li {
    font-size: 1em;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.cities-served li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0b477c;
    font-weight: bold;
    font-size: 1.2em;
}

.area-btn {
    display: inline-block;
    background: #0b477c;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(11, 71, 124, 0.2);
}

.area-btn:hover {
    background: #003d66;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 71, 124, 0.3);
}

/* Industries Section */
.industries-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
    color: white;
}

.industries-section h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.industry-card p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-choose-content h2 {
    font-size: 2.8em;
    color: #0b477c;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    position: relative;
    padding-left: 80px;
}

.benefit-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 10px;
}

.benefit-item h3 {
    font-size: 1.4em;
    color: #0b477c;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

/* Locations Section */
.locations-section {
    padding: 80px 20px;
    background: white;
}

.locations-section h2 {
    font-size: 2.8em;
    color: #0b477c;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    margin-bottom: 50px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0b477c;
    transition: all 0.3s ease;
}

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

.location-card h3 {
    font-size: 1.5em;
    color: #0b477c;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-card .address {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-card .serving {
    font-size: 0.95em;
    color: #777;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b477c 0%, #003d66 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.primary-btn {
    background: white;
    color: #0b477c;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #0b477c;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8em;
    }
    
    .area-card {
        grid-template-columns: 1fr;
    }
    
    .area-card.reverse .area-content,
    .area-card.reverse .area-image {
        order: initial;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    .intro-section, .service-areas, .industries-section,
    .why-choose-section, .locations-section, .cta-section {
        padding: 60px 20px;
    }
    
    .section-title, .intro-section h2, .why-choose-content h2,
    .locations-section h2, .cta-section h2 {
        font-size: 2em;
    }
    
    .area-card {
        padding: 25px;
        margin-bottom: 50px;
    }
    
    .area-image {
        height: 250px;
    }
    
    .cities-served ul {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .area-content h3 {
        font-size: 1.6em;
    }
    
    .benefit-item {
        padding-left: 0;
        padding-top: 70px;
    }
    
    .benefit-number {
        position: relative;
        margin-bottom: 15px;
    }
}
