/* أنماط عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* أنماط شريط التنقل */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a11cb;
}

.logo i {
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #6a11cb;
}

.nav-links a.active {
    background: #6a11cb;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
}

.whatsapp-btn i {
    margin-left: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* أنماط القسم الرئيسي */
#home-page {
    margin-top: 80px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #6a11cb;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* أنماط النموذج */
.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border-radius: 2px;
}

.song-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

.form-group label i {
    margin-left: 8px;
    color: #6a11cb;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #6a11cb;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.buy-btn {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.buy-btn i {
    margin-left: 8px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

/* أنماط قسم الباقات المختصر في الصفحة الرئيسية */
.pricing-preview {
    text-align: center;
    padding: 40px 20px;
}

.pricing-preview .section-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-preview-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #eee;
}

.pricing-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-preview-card.popular {
    border: 2px solid #6a11cb;
}

.pricing-preview-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pricing-preview-card .price {
    color: #6a11cb;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-preview-card p {
    color: #666;
    line-height: 1.5;
}

.pricing-preview-card .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #6a11cb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.view-all-packages {
    margin-top: 40px;
}

/* أنماط الباقات الكاملة */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.popular {
    border-color: #6a11cb;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #6a11cb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #6a11cb;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-right: 25px;
}

.features li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #6a11cb;
    font-weight: bold;
}

/* أنماط طرق الدفع */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.payment-method {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-method i {
    font-size: 2rem;
    margin-left: 15px;
    color: #6a11cb;
}

.payment-method div {
    flex: 1;
}

.payment-method div div {
    font-weight: 600;
    color: #333;
}

.payment-method small {
    color: #777;
    font-size: 0.9rem;
}

/* أنماط خطوات العملية */
.steps-container {
    margin-top: 60px;
}

.steps-container h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 1.8rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.step {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-desc {
    color: #666;
    font-size: 0.95rem;
}

/* أنماط الأسئلة الشائعة في صفحة الباقات */
.faq-section {
    margin-top: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #eef2ff;
}

.faq-question i:first-child {
    color: #6a11cb;
    margin-left: 10px;
}

.faq-question span {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* أنماط صفحة الباقات الكاملة */
.pricing-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 70px;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.back-to-home:hover {
    background: white;
    color: #6a11cb;
}

/* أنماط التذييل */
.footer {
    background: #2c3e50;
    color: #bbb;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: #6a11cb;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-link:hover {
    background: #6a11cb;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* أنماط الإشعارات */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.notification i {
    font-size: 1.8rem;
    color: #4CAF50;
    margin-left: 15px;
}

#notification-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

#notification-message {
    color: #666;
    font-size: 0.9rem;
}

/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #6a11cb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2575fc;
}

/* أنماط للهواتف */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards, .pricing-preview-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .song-form-container {
        padding: 25px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
    }
}

/* أنماط صفحة الأغاني المجانية */
.free-songs-header {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 70px;
}

.free-songs-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.free-songs-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.songs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.song-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.song-header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.song-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.song-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.song-info {
    padding: 25px;
}

.song-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.song-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.meta-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-left: 5px;
    color: #6a11cb;
}

.song-player {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.player-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.play-btn, .pause-btn, .download-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.play-btn {
    background: #6a11cb;
    color: white;
}

.play-btn:hover {
    background: #5a0db5;
}

.pause-btn {
    background: #ff6b6b;
    color: white;
}

.pause-btn:hover {
    background: #ff5252;
}

.download-btn {
    background: #4CAF50;
    color: white;
}

.download-btn:hover {
    background: #45a049;
}

.player-controls i {
    margin-left: 8px;
}

.player-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.stat {
    display: flex;
    align-items: center;
}

.stat i {
    margin-left: 5px;
    color: #6a11cb;
}

/* أنماط فلترة الأغاني */
.song-filters {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #6a11cb;
    color: #6a11cb;
}

.filter-btn.active {
    background: #6a11cb;
    border-color: #6a11cb;
    color: white;
}

/* أنماط للشريط المتحرك للتشغيل */
.audio-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress {
    height: 100%;
    background: #6a11cb;
    width: 0%;
    transition: width 0.1s;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
}

/* أنماط الاستجابة */
@media (max-width: 768px) {
    .free-songs-header h1 {
        font-size: 2rem;
    }
    
    .free-songs-header p {
        font-size: 1rem;
    }
    
    .songs-container {
        grid-template-columns: 1fr;
    }
    
    .song-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .song-duration {
        align-self: flex-end;
    }
    
    .player-controls {
        flex-direction: column;
    }
    
    .play-btn, .pause-btn, .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .song-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .player-stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* أنماط الأغاني المميزة */
.featured-songs {
    background: linear-gradient(to right, #f8f9fa, #eef2ff);
    padding: 60px 0;
}

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

.featured-song {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    transition: transform 0.3s;
}

.featured-song:hover {
    transform: translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.featured-song h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.featured-song p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.featured-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #555;
}

.featured-stats span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.featured-stats i {
    margin-left: 5px;
    color: #6a11cb;
}

/* أنماط عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* أنماط شريط التنقل */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #6a11cb;
    text-decoration: none;
}

.logo i {
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #6a11cb;
}

.nav-links a.active {
    background: #6a11cb;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.whatsapp-btn i {
    margin-left: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* أنماط التذييل */
.footer {
    background: #2c3e50;
    color: #bbb;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: #6a11cb;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #bbb;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #6a11cb;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #6a11cb;
    transform: translateY(-3px);
}

.footer-section p i {
    margin-left: 10px;
    color: #6a11cb;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* إشعارات */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.notification i {
    font-size: 1.8rem;
    color: #4CAF50;
    margin-left: 15px;
}

#notification-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

#notification-message {
    color: #666;
    font-size: 0.9rem;
}

/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #6a11cb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    border: none;
    outline: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2575fc;
    transform: translateY(-3px);
}

/* أنماط للهواتف */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    .notification {
        right: 20px;
        left: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* إشعارات */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
}

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

.notification i {
    font-size: 1.8rem;
    margin-left: 15px;
    flex-shrink: 0;
}

#notification-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

#notification-message {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* أنماط القائمة المتنقلة */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #6a11cb;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
}

/* طبقة التعتيم */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* استجابة للشاشات الصغيرة */
@media only screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: block !important; /* إجبار الظهور */
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important; /* خارج الشاشة */
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 80px 20px 30px !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 999 !important;
        margin: 0 !important;
        display: flex !important;
    }
    
    .nav-links.active {
        right: 0 !important; /* داخل الشاشة */
    }
    
    .nav-links li {
        margin: 0 0 15px 0 !important;
        width: 100% !important;
    }
    
    .nav-links a {
        display: block !important;
        padding: 15px 20px !important;
        width: 100% !important;
        font-size: 1.1rem !important;
        border-radius: 8px !important;
        transition: all 0.3s !important;
        border: none !important;
        text-align: right !important;
    }
    
    .nav-links a:hover {
        background: #f8f9fa !important;
        transform: translateX(-5px) !important;
    }
    
    .nav-links a.active {
        background: #6a11cb !important;
        color: white !important;
    }
    
    /* إخفاء زر واتساب في الموبايل إذا كان يأخذ مساحة */
    .whatsapp-btn {
        margin-left: auto !important;
    }
}

@media only screen and (max-width: 480px) {
    .nav-links {
        width: 85% !important;
    }
}
/* تأكيد استجابة القائمة */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    .navbar {
        position: relative;
        z-index: 1000;
    }
    
    /* منع التمرير عند فتح القائمة */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* أنماط الأغاني */
.songs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.song-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.song-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.song-duration {
    background: #f0f5ff;
    color: #2575fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.song-info {
    margin-bottom: 20px;
}

.song-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.song-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    background: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #2575fc;
}

.song-player {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.player-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.play-btn, .pause-btn, .like-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.play-btn {
    background: #2575fc;
    color: white;
}

.pause-btn {
    background: #e74c3c;
    color: white;
}

.like-btn {
    background: #f8f9fa;
    color: #555;
    border: 1px solid #ddd;
}

.like-btn:hover {
    background: #ffeff0;
    color: #e74c3c;
}

.player-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat i {
    color: #2575fc;
}

/* أنماط الفلاتر */
.song-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.filter-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #2575fc;
    color: white;
    border-color: #2575fc;
}

/* أنماط الاستجابة */
@media (max-width: 768px) {
    .songs-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .song-card {
        padding: 20px;
    }
    
    .player-controls {
        flex-direction: column;
    }
    
    .filter-options {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .song-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .song-duration {
        align-self: flex-start;
    }
}
/* أنماط الأغاني */
.songs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.song-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.song-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.song-duration {
    background: #f0f5ff;
    color: #2575fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.song-info {
    margin-bottom: 20px;
}

.song-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.song-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    background: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #2575fc;
}

.song-player {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.player-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.play-btn, .pause-btn, .like-btn, .order-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.play-btn {
    background: #2575fc;
    color: white;
    flex: 1;
}

.pause-btn {
    background: #e74c3c;
    color: white;
    flex: 1;
}

.like-btn {
    background: #f8f9fa;
    color: #555;
    border: 1px solid #ddd;
    flex: 1;
}

.order-btn {
    background: #25D366;
    color: white;
    flex: 2;
}

.order-btn:hover {
    background: #128C7E;
}

.like-btn:hover {
    background: #ffeff0;
    color: #e74c3c;
}

.player-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat i {
    color: #2575fc;
}

/* أنماط الفلاتر */
.song-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.filter-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1rem;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #2575fc;
    color: white;
    border-color: #2575fc;
}

/* أنماط الاستجابة */
@media (max-width: 768px) {
    .songs-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .song-card {
        padding: 20px;
    }
    
    .player-controls {
        flex-direction: column;
    }
    
    .play-btn, .pause-btn, .like-btn, .order-btn {
        width: 100%;
    }
    
    .filter-options {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .song-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .song-duration {
        align-self: flex-start;
    }
}

/* زر واتساب للجوال */
@media only screen and (max-width: 992px) {
    .whatsapp-btn {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 1000 !important;
        padding: 12px 20px !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
        display: flex !important;
    }
    
    .whatsapp-btn i {
        margin-left: 8px !important;
    }
}
/* إصلاح زر القائمة المتنقلة */
@media (max-width: 992px) {
    #mobileMenuBtn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: #f8f9fa !important;
        border: 2px solid #e0e0e0 !important;
        position: relative;
        z-index: 1002;
    }
    
    #mobileMenuBtn i {
        font-size: 1.5rem;
        color: #6a11cb;
    }
    
    .navbar {
        padding: 10px 15px !important;
        position: relative;
    }
    
    /* تأكد من أن الزر يظهر فوق كل شيء */
    .mobile-menu-btn {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* إخفاء القائمة الأصلية */
    .nav-links:not(.active) {
        display: none !important;
    }
}

/* إصلاحات نهائية لزر القائمة */
#mobileMenuBtn {
    transition: all 0.3s ease;
}

#mobileMenuBtn:hover {
    background: #eef2ff !important;
    border-color: #6a11cb !important;
}

#mobileMenuBtn:active {
    transform: scale(0.95);
}

/* تأكد من أن الزر مرئي دائماً في الموبايل */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    #mobileMenuBtn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* طبقة التعتيم */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
}