/* أنماط أساسية */
:root {
    --primary-color: #05EB0C;
    --bg-light: #FFFFFF;
    --bg-dark: #303030;
    --text-light: #000000;
    --text-dark: #FFFFFF;
    --text-secondary-light: #00000080;
    --text-secondary-dark: #FFFFFFB3;
    --modal-bg-light: #FFFFFF;
    --modal-bg-dark: #424242;
}

[data-theme="dark"] {
    --bg-light: #303030;
    --bg-dark: #FFFFFF;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --text-secondary-light: #FFFFFFB3;
    --text-secondary-dark: #00000080;
    --modal-bg-light: #424242;
    --modal-bg-dark: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    direction: rtl;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 2s ease-in;
}

.splash.visible {
    opacity: 1;
}

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--bg-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.menu-icon {
    cursor: pointer;
    font-size: 24px;
}

.app-header img {
    order: 2;
    text-align: center;
}

.header-actions {
    order: 3;
    display: flex;
    gap: 10px;
}

.secondary-logo {
    display: block;
    margin: 80px auto 20px;
    width: 90%;
    max-width: 380px;
    border-radius: 20px;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--bg-light);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 999;
}

.drawer.open {
    right: 0;
}

.drawer a {
    display: block;
    margin: 20px 0;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.drawer a:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.close-drawer {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.theme-toggle {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-icon::before {
    content: '🌙';
    font-size: 20px;
}

[data-theme="dark"] .theme-icon::before {
    content: '☀️';
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon i {
    font-size: 28px;
    color: #FF6200;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

/*************************************** Posters Slider ********************************/
.posters-slider {
    padding: 20px 0;
    text-align: center;
    direction: rtl; /* التأكد من اتجاه النص من اليمين إلى اليسار */
}

.posters-slider .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color, #07ff1c);
}

.slider-container {
    width: 100%; /* التأكد من أن الحاوية تأخذ عرض الصفحة بالكامل */
    max-width: 1200px; /* الحد الأقصى للعرض لمنع التجاوز */
    margin: 0 auto; /* توسيط الحاوية */
    overflow: hidden; /* إخفاء أي محتوى خارج الحاوية */
    position: relative;
}

.poster-slider {
    display: flex;
    gap: 15px;
    padding: 0 10px;
    overflow-x: auto; /* السماح بالتمرير الأفقي داخل الشريط فقط */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap; /* منع التفاف العناصر */
    scrollbar-width: none; /* إخفاء شريط التمرير في Firefox */
}

.poster-slider::-webkit-scrollbar {
    display: none; /* إخفاء شريط التمرير في Chrome/Safari */
}

.poster-slider.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.poster-card {
    flex: 0 0 auto;
    width: 300px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-card:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .poster-card {
        width: 280px; /* زيادة عرض البوستر على الهواتف */
        height: 140px; /* زيادة ارتفاع البوستر على الهواتف */
    }

    .poster-slider {
        gap: 10px; /* تقليل الفجوة بين البوسترات لتناسب الشاشات الصغيرة */
        padding: 0 5px; /* تقليل الحشوة */
    }
}

/* التأكد من أن الصفحة الرئيسية لا تحتوي على تمرير أفقي غير مرغوب */
html, body {
    overflow-x: hidden; /* منع التمرير الأفقي للصفحة بأكملها */
    margin: 0;
    padding: 0;
    width: 100%;
}
/**************************    افضل العروض   *******************************/
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 20px;
    color: var(--text-light);
}

.slider-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.card-slider {
    display: inline-flex;
    gap: 20px;
    flex-wrap: nowrap;
    cursor: grab;
}

.card-slider:active {
    cursor: grabbing;
}

.card {
    flex: 0 0 auto;
    width: 200px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.image-placeholder {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #0BE039;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
}

.card-info {
    padding: 10px;
    text-align: center;
}

.card-info h3 {
    font-size: 16px;
    margin: 5px 0;
    color: var(--text-light);
}

.card-info p {
    font-size: 12px;
    margin: 5px 0;
    color: var(--text-secondary-light);
}

.menu-section {
    padding: 20px;
    margin-top: 60px;
}

.menu-dish {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .menu-dish {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dish-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.dish-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.dish-info {
    padding: 10px;
    text-align: center;
}

.dish-info h3 {
    font-size: 16px;
    margin: 5px 0;
    color: var(--text-light);
}

.dish-info p {
    font-size: 12px;
    margin: 5px 0;
    color: var(--text-secondary-light);
}

.add-to-cart-btn {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background-color: var(--modal-bg-light);
    margin: 10% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #0BE039;
}

.modal-content img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.modal-content h3 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--text-light);
}

.modal-content p {
    font-size: 16px;
    margin: 5px 0;
    color: var(--text-secondary-light);
}

.cart-bar {
    position: fixed;
    bottom: 32px;
    left: 16px;
    right: 16px;
    background-color: var(--bg-dark);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10000 !important; /* ✅ فوق الكل */
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-info i {
    font-size: 28px;
    color: #FF8243;
}

.cart-info span {
    font-size: 16px;
    font-weight: bold;
}

.cart-total {
    font-weight: bold;
    color: var(--text-dark);
}

.cart-items div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.cart-items button {
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
}

#phone-number {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid var(--text-secondary-light);
    border-radius: 10px;
}

#submit-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}

#submit-cart:hover {
    background-color: #04c90b;
}

.cart-modal-content {
    display: flex;
    flex-direction: column;
    height: 60vh;
    max-width: 400px;
    width: 90%;
}

#cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--text-secondary-light);
}

.cart-item-image {
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
    border-radius: 6px;
    margin-left: 6px;
}

.cart-modal-content img {
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
    border-radius: 6px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 12px;
    margin: 0;
}

.cart-item-info p {
    font-size: 10px;
    margin: 3px 0 0;
    color: var(--text-secondary-light);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-quantity button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
}

.cart-item-quantity span {
    font-size: 12px;
}

.cart-item-subtotal {
    font-weight: bold;
    margin: 0 6px;
    font-size: 12px;
}

.cart-item button:last-child {
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 3px 6px;
    cursor: pointer;
    font-size: 10px;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    background-color: var(--modal-bg-light);
    padding-top: 8px;
    border-top: 1px solid var(--text-secondary-light);
}

.cart-footer p {
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 14px;
}

#phone-number {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid var(--text-secondary-light);
    border-radius: 8px;
    font-size: 12px;
}

#submit-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
}

#submit-cart:hover {
    background-color: #04c90b;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: white;
    color: black;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 45px;
}

.back-button:hover {
    background: linear-gradient(135deg, #444444, #111111);
    transform: scale(1.05);
}

.back-button i {
    font-size: 16px;
}

.a1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 500px;
    margin: auto;
    margin-top: 90px;
}

.a2 {
    height: 150px;
    border-radius: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.a4 {
    z-index: 2;
}

.a4 h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-light);
}

.a5 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
}

.a3 {
    background-image: url('assets/0.jpg');
    background-color: #c0392b;
}

.a6 {
    background-image: url('assets/1.jpg');
    background-color: #e67e22;
}

.a7 {
    background-image: url('assets/2.jpg');
    background-color: #14532d;
}

.a8 {
    background-image: url('assets/3.jpg');
    background-color: #f39c12;
}

@media (max-width: 600px) {
    .a1 {
        padding: 10px;
    }

    .a2 {
        height: 130px;
        padding: 15px;
    }

    .a4 h2 {
        font-size: 18px;
    }

    .a5 {
        font-size: 20px;
    }
}

@media (min-width: 601px) {
    .a1 {
        max-width: 700px;
    }

    .a2 {
        height: 180px;
        padding: 30px;
    }

    .a4 h2 {
        font-size: 24px;
    }

    .a5 {
        font-size: 28px;
    }
}

/* ========================================== */
/*         NEWSLETTER SUBSCRIPTION - FIXED    */
/* ========================================== */

.newsletter-sec {
    position: relative;
    padding: 0 !important; /* ✅ إزالة padding */
    overflow: hidden;
    z-index: 10 !important; /* ✅ أقل من السلة */
    margin-bottom: 0 !important; /* ✅ إزالة المسافة مع الفوتر */
}

/* Newsletter Box - التصميم الفاخر ✨ */
.newsletter-box {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.15) 0%, 
        rgba(78, 205, 196, 0.15) 50%, 
        rgba(255, 107, 107, 0.15) 100%);
    border-radius: 25px;
    padding: 60px 40px;
    margin: 20px 0;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3 !important; /* ✅ فوق الخلفية */
}

/* نقاط لامعة متحركة */
.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,107,107,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78,205,196,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    background-size: 200px 200px, 150px 150px, 100px 100px;
    animation: sparkle 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

/* الخلفية المظلمة */
.bg-overlay.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(26, 26, 46, 0.7) 50%, 
        rgba(0, 0, 0, 0.5) 100%);
    border-radius: 25px;
    z-index: 1;
}

/* المحتوى */
.newsletter-box .sec-wp {
    position: relative;
    z-index: 4 !important; /* ✅ الأعلى */
    width: 100%;
}

/* النصوص - جميلة جداً */
.newsletter-box-text {
    margin-bottom: 40px;
}

.h2-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(255, 107, 107, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.h2-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.newsletter-box-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* الفورم - تصميم فاخر */
.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 5 !important; /* ✅ الأعلى */
}

.form-input {
    flex: 1;
    padding: 20px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    color: #333;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder {
    color: #999;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-input:focus {
    transform: translateY(-2px);
    border-color: #4ecdc4;
    box-shadow: 
        0 15px 40px rgba(78, 205, 196, 0.3),
        inset 0 2px 5px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

/* الزر - الأروع في الموقع! 🔥 */
.newsletter-submit {
    padding: 20px 35px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 130px;
    position: relative;
    overflow: hidden;
    z-index: 5 !important; /* ✅ الأعلى */
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent);
    transition: left 0.6s;
}

.newsletter-submit:hover::before {
    left: 100%;
}

.newsletter-submit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 107, 107, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.newsletter-submit:active {
    transform: translateY(-2px) scale(1.02);
}

/* الرسالة */
#newsletterMessage {
    color: white !important;
    margin-top: 15px !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 5 !important; /* ✅ الأعلى */
}

/* Responsive Design */
@media (max-width: 991px) {
    .newsletter-sec { padding: 0 !important; margin-bottom: 0 !important; }
    .newsletter-box { padding: 50px 30px; }
    .h2-title { font-size: 32px; }
}

@media (max-width: 768px) {
    .newsletter-sec { padding: 0 !important; margin-bottom: 0 !important; }
    .newsletter-box { padding: 40px 25px; border-radius: 20px; }
    .h2-title { font-size: 28px; }
    .newsletter-box-text p { font-size: 18px; }
    .newsletter-form { 
        flex-direction: column; 
        gap: 15px; 
    }
    .newsletter-submit { 
        width: 100%; 
        padding: 18px 30px; 
    }
}

@media (max-width: 480px) {
    .newsletter-sec { padding: 0 !important; margin-bottom: 0 !important; }
    .newsletter-box { padding: 35px 20px; }
    .h2-title { font-size: 24px; }
    .form-input, .newsletter-submit { 
        padding: 16px 25px; 
        font-size: 15px; 
    }
}

/* الرسوم المتحركة عند التحميل */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.newsletter-box { animation: slideInUp 1.2s ease forwards; }
.newsletter-box-text { animation-delay: 0.3s; }
.newsletter-form { animation-delay: 0.6s; }





/* ========================================== */
/*             STYLES FOR FOOTER - NEW DESIGN  */
/* ========================================== */

.site-footer {
    background: #3e3f3f; /* ✅ رمادي داكن في الوضع الداكن */
    color: #ffffff;
    position: relative;
    padding: 40px 0 120px !important; /* ✅ تقليل padding العلوي */
    margin-top: 0 !important; /* ✅ ملتصق بالاشتراك */
    min-height: 400px;
    z-index: 5 !important; /* ✅ أقل من السلة */
    text-align: center;
}

[data-theme="light"] .site-footer {
    background: #FFFFFF; /* ✅ أبيض في الوضع المضيء */
    color: #1F2937;
}

/* Container Styles */
.top-footer.section .sec-wp {
    padding: 0 15px;
}

.top-footer .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer Info - Logo Section */
.footer-info {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
}

[data-theme="light"] .footer-info {
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.footer-logo img {
    max-width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

[data-theme="light"] .footer-logo img {
    filter: none; /* ✅ إزالة الفلتر في الوضع المضيء */
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Social Icons - تصميم أنيق وبسيط */
.social-icon {
    margin: 20px 0;
}

.social-icon ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.social-icon li a {
    width: 36px;
    height: 36px;
    background: #6B7280; /* ✅ رمادي أنيق */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

[data-theme="light"] .social-icon li a {
    background: #D1D5DB; /* ✅ رمادي فاتح في الوضع المضيء */
    color: #1F2937;
}

.social-icon li a:hover {
    background: #4ECDC4; /* ✅ لون مميز عند التمرير */
    transform: scale(1.1);
}

/* Footer Content - عمودي جديد */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Open Hours Section */
.footer-table-info {
    padding: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

[data-theme="light"] .footer-table-info {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
}

.footer-table-info:hover {
    transform: translateY(-3px);
}

.h3-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4ECDC4;
}

.footer-table-info ul {
    list-style: none;
    padding: 0;
}

.footer-table-info ul li {
    padding: 4px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s ease;
}

[data-theme="light"] .footer-table-info ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.footer-table-info ul li:last-child {
    border-bottom: none;
}

.footer-table-info ul li:hover {
    color: #4ECDC4;
}

.footer-table-info ul li i {
    color: #FF6B6B;
    font-size: 13px;
    margin-right: 8px;
}

/* Footer Menu */
.footer-menu {
    padding: 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-menu ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 4px 8px;
    font-size: 13px;
    transition: color 0.3s ease;
}

[data-theme="light"] .footer-menu ul li a {
    color: #1F2937;
}

.footer-menu ul li a:hover {
    color: #4ECDC4;
}

.footer-active-menu {
    color: #4ECDC4 !important;
}

/* Scroll to top button */
.site-footer::after {
    content: '↑';
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: #4ECDC4; /* ✅ لون أنيق */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-theme="light"] .site-footer::after {
    background: #1F2937;
    color: #FFFFFF;
}

.site-footer.scrolled::after {
    opacity: 1;
    visibility: visible;
}

.site-footer::after:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
    .site-footer {
        padding: 30px 0 120px !important;
    }
    
    .footer-content {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0 140px !important;
    }
    
    .social-icon ul {
        gap: 8px;
    }
    
    .social-icon li a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer-logo img {
        max-width: 110px;
    }
    
    .h3-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 15px 0 160px !important;
    }
    
    .footer-info {
        padding: 0 0 15px;
        margin-bottom: 15px;
    }
    
    .footer-table-info {
        padding: 10px;
    }
    
    .footer-menu ul {
        gap: 10px;
    }
}

/* Animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer * {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-info {
    animation-delay: 0.1s;
}

.footer-table-info,
.footer-menu {
    animation-delay: 0.2s;
}