/* SEO Optimization CSS - Performance and User Experience Enhancements */

/* Critical CSS for above-the-fold content */
.hero-section {
    background: linear-gradient(135deg, #0276B1 0%, #013d5b 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Breadcrumb Schema Enhancement */
.breadcrumb-schema {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-link {
    color: #0276B1;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* Enhanced CTA Buttons for Better Conversion */
.cta-primary {
    background: linear-gradient(135deg, #E31C2E 0%, #c41e3a 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 28, 46, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 28, 46, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #0276B1;
    border: 2px solid #0276B1;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #0276B1;
    color: white;
}

/* SEO-Friendly Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    color: #0276B1;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #E31C2E;
}

.content-section h3 {
    color: #013d5b;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

/* Enhanced Info Cards for Better Engagement */
.info-card-enhanced {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #0276B1;
    height: 100%;
}

.info-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0276B1, #013d5b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

/* Trust Signals and Social Proof */
.trust-signals {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.trust-badge {
    display: inline-block;
    margin: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #013d5b;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .info-card-enhanced {
        margin-bottom: 20px;
    }
}

/* Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States for Better Accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.breadcrumb-link:focus {
    outline: 3px solid #0276B1;
    outline-offset: 2px;
}

/* Schema.org Microdata Styling */
.microdata-hidden {
    display: none;
}

/* Print Styles for SEO */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-only {
        display: block !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
