/**
 * ملف الأنماط الرئيسي
 * شيلات الكويت - Main Stylesheet
 * الإصدار: 1.0
 */

/* استيراد الخطوط */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* متغيرات الألوان */
:root {
    --primary: #0f0f1e;
    --secondary: #1a1a2e;
    --accent: #e94560;
    --gold: #ffd700;
    --purple: #764ba2;
    --blue: #667eea;
    --success: #25d366;
    --danger: #ff4444;
    --warning: #ffbb33;
    --info: #33b5e5;
    --dark: #0a0a15;
    --light: #ffffff;
    --gray: rgba(255,255,255,0.5);
    --card-bg: rgba(255,255,255,0.05);
    --border-color: rgba(255,255,255,0.1);
}

/* إعادة تعيين الأنماط */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--primary);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* الحاويات */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 900;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--accent));
    margin: 1rem auto;
    border-radius: 2px;
}

/* الأزرار */
.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    border-color: var(--gold);
}

.cta-btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.cta-btn.outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.cta-btn.outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* أزرار الواتساب */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--success), #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* أزرار الاستماع */
.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 0.5rem;
    cursor: pointer;
}

.listen-btn:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.05);
}

.listen-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.4rem 1rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.listen-youtube-btn:hover {
    background: #cc0000;
    transform: scale(1.05);
}

/* شارات */
.badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

.badge-success {
    background: rgba(37, 211, 102, 0.2);
    color: var(--success);
}

.badge-danger {
    background: rgba(255, 68, 68, 0.2);
    color: var(--danger);
}

.badge-warning {
    background: rgba(255, 187, 51, 0.2);
    color: var(--warning);
}

.badge-accent {
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent);
}

/* بطاقات المنشدين */
.singers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.singer-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.singer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(233, 69, 96, 0.3);
}

.singer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--gold);
    transition: transform 0.5s;
}

.singer-card:hover .singer-image {
    transform: scale(1.05);
}

.singer-content {
    padding: 1.5rem;
}

.singer-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.songs-list {
    list-style: none;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.song-item:last-child {
    border-bottom: none;
}

.song-name {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.song-name i {
    color: var(--accent);
    font-size: 0.8rem;
}

.songs-count {
    display: inline-block;
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.more-songs {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.no-songs {
    text-align: center;
    color: rgba(255,255,255,0.5);
    padding: 1rem;
}

.view-all-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--gold);
    color: #000;
}

/* بطاقات العروض */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(233, 69, 96, 0.3);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, #ff006e, #ff4d00);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4); }
    50% { box-shadow: 0 5px 25px rgba(255, 0, 110, 0.7); }
}

.limited-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    animation: bounce 1s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.offer-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    border: 3px solid var(--border-color);
}

.offer-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-details {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.offer-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    border: 1px dashed rgba(255,215,0,0.3);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
    margin-left: 10px;
}

.new-price {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 900;
}

.book-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--success), #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.book-offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* عناصر HTML */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 3rem;
    transform: rotate(-45deg);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
}

.wedding-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

/* ترقيم الصفحات */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 3rem 0;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.pagination a:hover {
    background: var(--gold);
    color: #000;
}

.pagination a.active {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.pagination a.prev,
.pagination a.next {
    width: auto;
    padding: 0 1rem;
}

/* نماذج الإدخال */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

/* رسائل التنبيه */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-right: 4px solid transparent;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border-right-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(255, 68, 68, 0.1);
    border-right-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 187, 51, 0.1);
    border-right-color: var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(51, 181, 229, 0.1);
    border-right-color: var(--info);
    color: var(--info);
}

/* تحميل (Loading) */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* نوافذ منبثقة */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--danger);
}

/* فلاتر البحث */
.search-box {
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* أدوات مساعدة */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* استجابة للجوال */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .singers-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .singer-image {
        height: 200px;
    }
    
    .offer-card {
        padding: 2rem 1rem;
    }
    
    .offer-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .new-price {
        font-size: 1.5rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .songs-list .song-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .listen-youtube-btn {
        align-self: flex-end;
    }
    
    .pagination a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .pagination a.prev,
    .pagination a.next {
        width: auto;
        padding: 0 0.8rem;
    }
}

/* طباعة */
@media print {
    nav,
    footer,
    .whatsapp-float,
    .mobile-call-btn,
    .cta-btn,
    .listen-btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .singer-card,
    .offer-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }
}
/* ===== القائمة العلوية ===== */
nav {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f0f1e 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to left, var(--gold), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 45px;
    width: auto;
}

.logo i {
    background: linear-gradient(to left, var(--gold), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--accent));
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* استجابة للجوال */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--secondary), #0a0a1a);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        border-left: 2px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.3rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        width: 80%;
        margin: 0 auto;
    }
    
    .nav-links li a::after {
        display: none;
    }
    
    .nav-links li a:hover {
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .nav-links {
        width: 90%;
    }
    
    .nav-links li a {
        font-size: 1.1rem;
    }
}
.hero-slider {
    margin-top: 80px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15,15,30,0.3), rgba(15,15,30,0.9));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
}

.slide-content .slide-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
    border-color: #fff;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
}
/* ===== تحسينات الجوال ===== */
@media (max-width: 768px) {
    /* الهيدر */
    nav {
        padding: 0.5rem 3%;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    /* القائمة المتنقلة */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        background: rgba(255,255,255,0.1);
    }
    
    /* السلايدر */
    .hero-slider {
        height: 70vh;
        margin-top: 70px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .slide-content .slide-desc {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* الشبكات */
    .singers-grid,
    .services-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    /* بطاقات المنشدين */
    .singer-card {
        margin: 0 10px;
    }
    
    .singer-image {
        height: 200px;
    }
    
    .singer-name {
        font-size: 1.3rem;
    }
    
    /* قائمة الأغاني */
    .song-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .listen-youtube-btn {
        align-self: flex-end;
    }
    
    /* العروض */
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-details {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .new-price {
        font-size: 1.4rem;
    }
    
    /* أزرار الواتساب والاتصال */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .mobile-call-btn {
        display: flex;
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* الفوتر */
    footer {
        padding: 2rem 5% 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    /* قسم من نحن */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image {
        height: 250px;
        font-size: 4rem;
    }
}

/* للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .slide-desc {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .singer-card {
        margin: 0 5px;
    }
    
    .singer-name {
        font-size: 1.2rem;
    }
    
    .song-name {
        font-size: 0.9rem;
    }
    
    .offer-card {
        padding: 1.2rem;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination a {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* للشاشات الأفقية على الجوال */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }
    
    .nav-links {
        overflow-y: auto;
    }
    
    .singer-image {
        height: 150px;
    }
}