/**
 * SEO Enhancement Styles
 * Optimized for Washington George Volandes PLLC
 * Supports improved user experience and search visibility
 */

/* Keyword Highlighting and Tags */
.keyword-tag, .practice-keywords .keyword {
    display: inline-block;
    background: linear-gradient(135deg, #1B365D 0%, #4A90E2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.keyword-tag:hover, .practice-keywords .keyword:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 144, 226, 0.3);
}

/* Hero Section Enhancements */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B365D;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6B7280;
    margin-top: 0.5rem;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Contact Badge Styles */
.contact-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-badge {
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: #F3F4F6;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.quick-contact-item i {
    font-size: 1.5rem;
    color: #1B365D;
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-contact-item div strong {
    display: block;
    color: #1B365D;
    font-weight: 600;
}

.quick-contact-item div a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
}

/* Practice Area Enhancement */
.practice-keywords {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.attorney-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.specialty-tag {
    background: #EBF8FF;
    color: #1B365D;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid #4A90E2;
}

/* Breadcrumb Enhancement */
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #4A90E2;
    text-decoration: none;
}

.breadcrumb span {
    color: #6B7280;
    margin: 0 0.5rem;
}

/* Page Header Improvements */
.page-header {
    background: linear-gradient(135deg, #1B365D 0%, #4A90E2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* SEO Content Section */
.practice-overview-content {
    padding: 4rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: #1B365D;
    margin-bottom: 1.5rem;
}

.overview-text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
}

.overview-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
    }
    
    .hero-keywords {
        justify-content: center;
    }
    
    .contact-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
    }
    
    .attorney-specialties {
        justify-content: center;
    }
    
    .practice-keywords {
        text-align: center;
    }
}

/* Focus and Accessibility */
.keyword-tag:focus,
.contact-badge:focus,
.specialty-tag:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-keywords,
    .contact-badges,
    .quick-contact-bar {
        display: none;
    }
}
