/* ===== LOCATION PAGES STYLES ===== */
.state-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.state-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.state-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.state-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.state-header h3 {
    margin: 0;
    color: #1e40af;
    font-size: 1.25rem;
}

.state-population {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.state-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #64748b;
}

.state-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.all-states-section {
    margin-top: 3rem;
}

.all-states-section h3 {
    color: #1e40af;
    margin-bottom: 2rem;
    text-align: center;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.state-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.state-item a:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    color: #1e40af;
    transform: translateY(-2px);
}

.state-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.state-item span {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.state-item small {
    color: #64748b;
    font-size: 0.8rem;
}

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

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
}

.city-card:hover {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: #3b82f6;
    color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.city-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.city-card span {
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== FAQ STYLES ===== */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin: 0;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question:hover {
    background: #f0f9ff;
    color: #1e40af;
}

.faq-question i {
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.faq-answer ul {
    margin: 1rem 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGN FOR NEW ELEMENTS ===== */
@media (max-width: 768px) {
    .state-grid {
        grid-template-columns: 1fr;
    }
    
    .state-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .state-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .city-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}
