/* Location & Service Page Styles for Agile Counseling */

/* Hero Section */
.location-hero {
    background: linear-gradient(135deg, #2c5282 0%, #4a7c9b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.location-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* Content Sections */
.section {
    padding: 60px 0;
}

.section-alt {
    background: #f8fafc;
}

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

.section-title {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: #64748b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Why Choose Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5282, #4a7c9b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-item h4 {
    color: #1a365d;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Local Info */
.local-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.local-text h3 {
    color: #1a365d;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.local-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.local-highlights {
    list-style: none;
    padding: 0;
}

.local-highlights li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.local-highlights li::before {
    content: "✓";
    color: #2c5282;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: #4a9b8c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: #3d8577;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
}

/* Insurance Grid */
.insurance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.insurance-badge {
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 500;
    color: #1a365d;
}

/* Breadcrumb */
.breadcrumb {
    background: #f1f5f9;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2c5282;
    text-decoration: none;
}

.breadcrumb span {
    color: #64748b;
}

/* Schema/FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #475569;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .location-hero h1 {
        font-size: 2rem;
    }
    
    .local-info {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}
