/* Custom SEO Optimized Styles */

/* Social Media Icons */
.as_social_list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.as_social_list a {
    display: flex !important;
    width: 40px;
    height: 40px;
    background: #f1d302;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.as_social_list a:hover {
    background: #0a2342;
    transform: translateY(-3px);
}

.as_social_list a:hover svg {
    fill: #f1d302;
}

/* 404 Page Styles */
.as_error_wrapper {
    padding: 40px 0;
}

.as_error_code {
    font-size: 120px;
    color: #f1d302;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.as_error_icon {
    margin: 30px 0;
}

.as_error_actions {
    margin: 30px 0;
}

.as_error_actions .as_btn {
    margin: 0 10px;
}

/* Service Highlight Box */
.as_service_highlight {
    background-color: #0a2342;
    padding: 40px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.as_service_highlight h3 {
    color: #ff9d00;
    margin-bottom: 20px;
}

.as_service_highlight p {
    margin-bottom: 25px;
}

/* Newsletter Section */
.as_social_media {
    margin-top: 30px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    background: #f5f5f5;
}

/* Performance Optimizations */
.as_service_box img {
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .as_error_code {
        font-size: 80px;
    }
    
    .as_social_list {
        justify-content: center;
    }
    
    .as_service_highlight {
        padding: 25px;
    }
}

/* Print Styles */
@media print {
    .as_social_media,
    .as_newsletter_form,
    .as_navigation,
    .as_footer {
        display: none;
    }
}

/* Accessibility */
.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;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}