/* Breadcrumbs Section */
.breadcrumbs-section {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs {
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

.breadcrumbs a:hover {
    background: rgba(0, 93, 239, 0.1);
    text-decoration: none;
}

.breadcrumbs span {
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

.breadcrumbs .separator {
    margin: 0 0.25rem;
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* Icon breadcrumbs */
.breadcrumbs.with-icons .separator {
    display: none;
}

.breadcrumbs.with-icons li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--gray-400);
    font-weight: 600;
}
.mfo-directory-page {
    padding: 2rem 0;
    background: #f8f9fa;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.directory-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #005def, #007bff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.alphabet-quick-nav {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alphabet-quick-nav h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #333;
}

.alphabet-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.alphabet-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    color: #005def;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.alphabet-letter:hover {
    background: #005def;
    color: white;
    transform: translateY(-2px);
}

.directory-section-title {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #005def;
    color: #333;
}

.alphabet-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alphabet-group {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.alphabet-letter-title {
    font-size: 2rem;
    color: #005def;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.mfo-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mfo-list-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.mfo-list-item:hover {
    background: #f8f9fa;
    border-color: #005def;
    transform: translateX(5px);
}

.mfo-item-logo {
    flex-shrink: 0;
    margin-right: 1rem;
}

.mfo-item-logo img {
    border-radius: 8px;
    border: 1px solid #eee;
}

.mfo-item-info {
    flex: 1;
}

.mfo-item-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.mfo-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.mfo-item-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars-small {
    display: flex;
    gap: 0.125rem;
}

.rating-stars-small i {
    color: #ffc107;
    font-size: 0.875rem;
}

.mfo-item-rating .rating-value {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: #28a745;
    color: white;
}

.mfo-item-conditions {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.mfo-item-conditions .condition {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.seo-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.no-mfo-message {
    text-align: center;
    padding: 3rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-mfo-message h2 {
    color: #666;
    margin-bottom: 1rem;
}

.no-mfo-message p {
    color: #888;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .directory-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alphabet-letter {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .mfo-item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .directory-stats {
        grid-template-columns: 1fr;
    }
    
    .alphabet-letter {
        width: 32px;
        height: 32px;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px 20px;
    max-width: 400px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2em;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 15px;
    padding: 0;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}