

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Hero Links */
.hero-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 147, 0, 0.4);
}

.hero-link i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Section */
.history-section {
    background: var(--white);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.history-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.history-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.history-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.history-card:hover .history-image img {
    transform: scale(1.1);
}

.history-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.history-content {
    padding: 25px;
}

.history-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.history-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Symbols Section */
.symbols-section {
    background: var(--light-bg);
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.symbol-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
    position: relative;
}

.symbol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.symbol-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.symbol-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.symbol-card:hover .symbol-image img {
    transform: scale(1.1);
}

.symbol-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,77,64,0.8) 0%, rgba(192,147,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.symbol-card:hover .symbol-overlay {
    opacity: 1;
}

.symbol-link {
    color: white;
    background: transparent;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.symbol-card:hover .symbol-link {
    transform: translateY(0);
    opacity: 1;
}

.symbol-content {
    padding: 25px;
}

.symbol-category {
    margin-bottom: 15px;
}

.category-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.literature {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.category-badge.art {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border: 1px solid #9c27b0;
}

.category-badge.music {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid #ff9800;
}

.category-badge.politics {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

.symbol-name {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.symbol-bio {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.symbol-achievements h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.symbol-achievements p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.symbol-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,107,92,0.3);
}

.btn-icon {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(192,147,0,0.3);
}

/* Card Hover Effect */
.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0,77,64,0.05) 0%, rgba(192,147,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.symbol-card:hover .card-hover-effect {
    opacity: 1;
}

/* No Symbols */
.no-symbols {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.no-symbols i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-symbols h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.no-symbols p {
    color: var(--text-color);
    margin: 0;
}

/* Heritage Section */
.heritage-section {
    background: var(--white);
}

.heritage-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.heritage-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.heritage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.heritage-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.heritage-item:hover .heritage-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.heritage-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.heritage-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Arts Section */
.arts-section {
    background: var(--light-bg);
}

.arts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.art-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.art-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.art-image {
    height: 200px;
    overflow: hidden;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.art-card:hover .art-image img {
    transform: scale(1.1);
}

.art-content {
    padding: 25px;
}

.art-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.art-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Cultural Info Section */
.cultural-info-section {
    padding: 60px 0;
    background: var(--white);
}

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

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Share Modal */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.share-modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.share-modal h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.share-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.share-option:hover {
    transform: scale(1.1);
}

.share-option.facebook { background: #3b5998; }
.share-option.twitter { background: #000000ff; }
.share-option.whatsapp { background: #25d366; }
.share-option.linkedin { background: #0077b5; }

.close-modal {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}

/* RTL Support */
[dir="rtl"] .hero-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .history-overlay {
    right: auto;
    left: 20px;
}

[dir="rtl"] .section-header h2 {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .symbols-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
     .cultural-hero {
         background-size: contain !important;
        padding: 80px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .history-grid,
    .symbols-grid,
    .heritage-features,
    .arts-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cultural-hero {
         background-size: contain !important;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .symbol-content {
        padding: 20px;
    }
    
    .symbol-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-outline {
        justify-content: center;
    }
}
/* ===== New Sections Styles ===== */

/* Events Section */
.events-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.events-subsection {
    margin-bottom: 60px;
}

.events-subsection:last-child {
    margin-bottom: 0;
}

.subsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.subsection-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
    display: flex;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.event-card.past {
    opacity: 0.9;
    background: #f8f9fa;
}

.event-card.past:hover {
    opacity: 1;
}

.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    min-width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-family-en);
}

.event-date.past {
    background: #6c757d;
}

.event-day {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.event-time {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-content h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.event-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 77, 64, 0.1);
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-book-btn, .event-gallery-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-book-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 147, 0, 0.3);
    color: var(--white);
}

.event-gallery-btn {
    background: #6c757d;
}

.event-gallery-btn:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
    color: var(--white);
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.no-events i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-events p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

/* Support Section */
.support-section {
    background: var(--white);
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.support-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.support-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.registry-message, .forms-list {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.registry-message h4, .form-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.registry-message p {
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.registry-message ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.registry-message li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.registry-message li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.form-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.form-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-item p {
    color: var(--text-color);
    margin: 10px 0 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.form-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,107,92,0.3);
}

.support-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 147, 0, 0.4);
    color: var(--white);
}

/* Heritage Section */
.heritage-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.heritage-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.4s ease;
}

.heritage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.heritage-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.heritage-card:hover .heritage-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.heritage-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.library-content, .links-list {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.library-content h4, .link-category h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.library-content ul, .links-list ul {
    list-style: none;
    padding-left: 0;
}

.library-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.5;
}

.library-content li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.link-category {
    margin-bottom: 25px;
}

.link-category:last-child {
    margin-bottom: 0;
}

.links-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.links-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.heritage-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Partners Section */
.partners-section {
    background: var(--white);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.partners-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.4s ease;
}

.partners-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.partners-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.partners-card:hover .partners-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.partners-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.partners-list, .invitation-content {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.partner-item {
    margin-bottom: 25px;
}

.partner-item:last-child {
    margin-bottom: 0;
}

.partner-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-item ul {
    list-style: none;
    padding-left: 0;
}

.partner-item li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.5;
}

.partner-item li:before {
    content: "→";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: bold;
}

.invitation-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.invitation-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.5;
}

.invitation-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-programs {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-programs h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-programs p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.partners-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Links Section */
.links-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.link-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.link-card:hover:before {
    transform: translateY(0);
}

.link-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(360deg);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.link-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(192, 147, 0, 0.4);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-grid,
    .heritage-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .subsection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: space-around;
        padding: 15px;
    }
    
    .support-card,
    .heritage-card,
    .partners-card {
        padding: 25px;
    }
    
    .support-actions,
    .heritage-actions,
    .partners-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .support-grid,
    .heritage-grid,
    .partners-grid,
    .links-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        margin-bottom: 20px;
    }
    
    .event-details {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* RTL Adjustments */
[dir="rtl"] .view-all:hover {
    transform: translateX(5px);
}

[dir="rtl"] .links-list a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .registry-message li,
[dir="rtl"] .library-content li,
[dir="rtl"] .partner-item li,
[dir="rtl"] .invitation-content li {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .registry-message li:before,
[dir="rtl"] .library-content li:before,
[dir="rtl"] .partner-item li:before,
[dir="rtl"] .invitation-content li:before {
    left: auto;
    right: 0;
}

[dir="rtl"] .subsection-header h3,
[dir="rtl"] .registry-message h4,
[dir="rtl"] .form-item h4,
[dir="rtl"] .library-content h4,
[dir="rtl"] .link-category h4,
[dir="rtl"] .partner-item h4,
[dir="rtl"] .contact-programs h4 {
    /* flex-direction: row-reverse; */
}



/* ===== Cultural Symbols Page Styles ===== */

/* Hero for Symbols Page */
.symbols-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00695c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.symbols-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

/* Search Container */
.search-container {
    max-width: 600px;
    margin: 30px auto 0;
}

.search-form {
    width: 100%;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(192, 147, 0, 0.3);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-family: var(--font-family-en);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    padding: 0 30px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #e6b400;
    transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: var(--accent-color);
    font-weight: 600;
}

/* Symbol Details Specific */
.symbol-header {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.symbol-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.symbol-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.symbol-avatar:hover img {
    transform: scale(1.1);
}

.symbol-header-content {
    flex: 1;
    min-width: 300px;
}

.symbol-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.symbol-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.meta-item i {
    color: var(--accent-color);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Sections */
.content-section {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 77, 64, 0.1);
}

.content-section h2 i {
    color: var(--accent-color);
}

.content-box {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-box p {
    margin-bottom: 20px;
}

.content-box ul, .content-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-box li {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar-section {
    background: var(--white) !important;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 77, 64, 0.1);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    border-color: var(--accent-color);
}

.sidebar-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-section h3 i {
    color: var(--accent-color);
}

/* Quick Facts */
.quick-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-facts li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts strong {
    color: var(--primary-color);
    font-weight: 600;
}

.category-badge-small {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge-small.literature {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.category-badge-small.art {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border: 1px solid #9c27b0;
}

.category-badge-small.music {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid #ff9800;
}

.category-badge-small.politics {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

.external-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 77, 64, 0.05);
}

.external-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,107,92,0.3);
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-btn {
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #000000 !important; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy-link { 
    grid-column: 1 / -1;
    background: var(--primary-color);
}

.share-btn.copy-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Related Symbols */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    background: white;
}

.related-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 77, 64, 0.1);
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.related-info p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Action Section */
.action-section {
    padding: 50px 0;
    background: var(--light-bg);
    border-top: 1px solid rgba(0, 77, 64, 0.1);
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-accent:hover {
    background: #e6b400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 147, 0, 0.3);
    color: var(--primary-color);
}

/* Notification Alert */
.notification-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10000;
    max-width: 400px;
}

.notification-alert.show {
    transform: translateY(0);
    opacity: 1;
}

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

.notification-content i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

#notification-message {
    font-weight: 500;
}

/* All Symbols Page Specific */
.symbols-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .symbols-layout {
        grid-template-columns: 1fr;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.filter-section, .stats-section, .links-section {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.category-filters {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filters a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.category-filters a:hover, .category-filters a.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.category-filters .count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.stat-item:hover .stat-number {
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Links */
.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: 1px solid transparent;
}

.quick-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary-color);
}

/* Symbols Main Content */
.symbols-main {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 77, 64, 0.1);
}

.results-count {
    font-size: 1.1rem;
    color: var(--text-color);
}

.results-count strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 5px;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid rgba(0, 77, 64, 0.2);
    border-radius: 8px;
    background: var(--light-bg);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-options select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 147, 0, 0.1);
}

/* Enhanced Symbols Grid */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Symbol Card Enhancements */
.symbol-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.symbol-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.symbol-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.symbol-card:hover .symbol-image img {
    transform: scale(1.1);
}

.symbol-name a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.symbol-name a:hover {
    color: var(--accent-color);
}

.symbol-dates {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 77, 64, 0.1);
}

.date-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
}

.date-item i {
    color: var(--accent-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 77, 64, 0.1);
}

.page-link {
    padding: 10px 18px;
    border: 1px solid rgba(0, 77, 64, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,107,92,0.2);
}

.page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-link.prev, .page-link.next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
}

/* RTL Adjustments */
[dir="rtl"] .breadcrumb a,
[dir="rtl"] .quick-links a,
[dir="rtl"] .category-filters a:hover,
[dir="rtl"] .related-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .page-link.prev i,
[dir="rtl"] .page-link.next i {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .symbols-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .symbols-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-section, .stats-section, .links-section {
        margin-bottom: 0;
    }
    
    .symbols-main {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .symbols-hero {
        padding: 80px 0 60px;
    }
    
    .symbol-title {
        font-size: 2rem;
    }
    
    .symbol-avatar {
        width: 150px;
        height: 150px;
    }
    
    .details-grid {
        gap: 20px;
    }
    
    .content-section, .sidebar-section {
        padding: 25px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn, .btn-accent {
        width: 100%;
        justify-content: center;
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .symbol-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .symbol-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .meta-item {
        width: 100%;
        justify-content: center;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .search-box input {
        padding: 12px 20px;
    }
    
    .search-box button {
        padding: 0 20px;
    }
}

/* View More Section */
.view-more-section {
    padding: 20px;
    background: linear-gradient(to right, rgba(0, 77, 64, 0.05), rgba(192, 147, 0, 0.05));
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.view-more-section .btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.view-more-section .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 107, 92, 0.3);
}

.view-more-section .badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.view-more-section .btn-lg:hover .badge {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

[dir="rtl"] .view-more-section .badge {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .view-more-section .btn-lg:hover .badge {
    transform: translateX(-5px);
}

/* Symbol Dates */
.symbol-dates {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 77, 64, 0.1);
}

.date-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
}

.date-item i {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .view-more-section .btn-lg {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .view-more-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}