:root {
    --primary-color: #383848;
    --secondary-color: #2d2d3a;
    --accent-color: #e4b95b;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --background-dark: #2a2a36;
    --arabic-font: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--arabic-font);
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    text-align: right;
    background-color: var(--background-dark);
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(56, 56, 72, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
}

.logo h1 {
    color: var(--accent-color);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    padding-right: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/صحن فلافل عربي مشكل-كبير.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    line-height: 1.4;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    font-family: var(--arabic-font);
    font-weight: 500;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Sections Common Styles */
section {
    padding: 5rem 10%;
}

section h2 {
    color: var(--accent-color);
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-family: var(--arabic-font);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--accent-color), transparent);
}

/* Services Section Styles */
.services-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: rgba(228, 185, 91, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(228, 185, 91, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: floatIn 0.8s ease-out backwards;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 45%, 
        rgba(212, 175, 55, 0.2) 50%, 
        rgba(212, 175, 55, 0.1) 55%, 
        transparent 100%
    );
    transition: transform 0.6s;
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 15px;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-description {
    color: var(--accent-color);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(
        145deg,
        rgba(228, 185, 91, 0.1) 0%,
        rgba(228, 185, 91, 0.05) 100%
    );
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2);
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    min-height: 100px;
}

.service-features span {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(56, 56, 72, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-features span:hover {
    background: rgba(228, 185, 91, 0.1);
    transform: translateX(5px);
}

.service-features span i {
    font-size: 1rem;
    margin: 0;
    transition: transform 0.3s ease;
    margin-left: 8px;
    margin-right: 0;
}

.service-features span:hover i {
    transform: scale(1.2) rotate(10deg);
}

.service-features span::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.service-features span:hover::after {
    animation: shine 1s;
}

/* Delivery Info Styles */
.services-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.delivery-info {
    background: linear-gradient(
        135deg, 
        rgba(56, 56, 72, 0.9) 0%,
        rgba(56, 56, 72, 0.8) 100%
    );
    box-shadow: 0 4px 15px rgba(228, 185, 91, 0.1);
    border: 1px solid rgba(228, 185, 91, 0.2);
    position: relative;
    overflow: hidden;
}

.delivery-info h3 {
    color: #e4b95b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.delivery-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.delivery-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    padding: 1rem;
    background-color: rgba(56, 56, 72, 0.8);
    border: 1px solid rgba(228, 185, 91, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.delivery-features li:hover {
    transform: translateX(-5px);
    background-color: rgba(228, 185, 91, 0.1);
    border-color: #e4b95b;
}

.delivery-features i {
    color: #e4b95b;
    font-size: 1.2rem;
    margin-left: 8px;
    margin-right: 0;
}

.delivery-features li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.6s ease;
    transform-origin: right;
}

.delivery-features li:hover::before {
    transform: translateX(100%);
}

/* تحسينات إضافية لقسم معلومات التوصيل */
.delivery-features li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(228, 185, 91, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delivery-features li:hover::after {
    opacity: 1;
}

/* تحسين حركة الأيقونات */
.delivery-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    transition: transform 0.3s ease;
}

/* إضافة تأثير نبض للمعلومات المهمة */
@keyframes highlightPulse {
    0% {
        text-shadow: 0 0 5px rgba(228, 185, 91, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(228, 185, 91, 0.5);
    }
    100% {
        text-shadow: 0 0 5px rgba(228, 185, 91, 0);
    }
}

.delivery-features li span {
    animation: highlightPulse 2s infinite;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-features {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .service-features span {
        font-size: 0.9rem;
    }
    
    .delivery-features li {
        margin: 0 1rem;
    }
    
    .services-info {
        margin: 3rem 1rem;
    }
}

/* Hours Section */
.hours-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hours-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
    background: radial-gradient(circle, rgba(228, 185, 91, 0.1) 0%, transparent 60%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hours-content {
    position: relative;
    z-index: 1;
}

.hours-content p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Hours Section Styles */
.schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    backdrop-filter: blur(5px);
    background-color: rgba(56, 56, 72, 0.8);
    border: 1px solid rgba(228, 185, 91, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

.schedule-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.schedule-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.schedule-item p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Contact Section Styles */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(45, 45, 58, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-family: var(--arabic-font);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, var(--accent-color), transparent);
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 0.5rem;
}

.contact-info a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-color) 0%, #d4af37 100%);
    color: var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 185, 91, 0.3);
}

.contact-info [dir="ltr"] {
    direction: ltr;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-tooltip.show {
    opacity: 1;
}

/* Social Media Styles */
.social-media {
    text-align: center;
    margin-top: 2rem;
}

.social-media h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    direction: rtl;
}

.social-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 0.8rem;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: rgba(228, 185, 91, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease-out;
}

.social-icon:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-icon:active::before {
    background-color: rgba(228, 185, 91, 0.4);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
}

/* Menu Section Styles */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    direction: rtl;
}

.menu-tab {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--arabic-font);
    font-weight: 600;
    margin: 0 0.5rem;
}

.menu-tab:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.menu-tab.active {
    background: linear-gradient(45deg, var(--accent-color) 0%, #d4af37 100%);
    box-shadow: 0 4px 15px rgba(228, 185, 91, 0.3);
}

.menu-tab::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(228, 185, 91, 0.2) 0%,
        transparent 50%
    );
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.menu-tab:hover::after {
    transform: scale(1);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    color: var(--accent-color);
    padding: 1rem;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.menu-item .description {
    font-family: var(--arabic-font);
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 0 1rem;
    margin: 0.5rem 0;
    min-height: 60px;
}

.menu-item .price {
    display: block;
    padding: 1rem;
    color: var (--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    text-align: left;
    font-family: var(--arabic-font);
    font-weight: 700;
    position: relative;
    padding: 0.5rem 1rem;
}

.price::before {
    content: 'ر.س';
    font-size: 0.9rem;
    margin-right: 5px;
    opacity: 0.8;
}

/* Offers Section Styles */
.offers-section {
    background-color: var(--secondary-color);
    padding: 5rem 10%;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
}

.offer-content {
    padding: 1.5rem;
    text-align: center;
}

.offer-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.offer-price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0;
    direction: rtl;
}

.offer-old-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-right: 1rem;
}

.offer-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    animation: pop 0.3s ease-out 0.6s both;
}

.offer-button {
    background: linear-gradient(45deg, var(--accent-color) 0%, #d4af37 100%);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-family: var(--arabic-font);
    font-weight: 500;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Offers Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pop {
    from {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

/* Contact and Hours Section Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.schedule-item:nth-child(1) {
    animation: slideInLeft 0.6s ease-out both;
}

.schedule-item:nth-child(2) {
    animation: slideInRight 0.6s ease-out both;
}

.contact-info {
    animation: fadeInUp 0.6s ease-out both;
}

.contact-info:nth-child(2) {
    animation-delay: 0.2s;
}

contact-info:nth-child(3) {
    animation-delay: 0.4s;
}

social-icon {
    animation: pop 0.4s ease-out both;
}

social-icon:nth-child(2) {
    animation-delay: 0.2s;
}

social-icon:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hover Effects for Contact Links */
.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: var(--primary-color);
}

.contact-info a:hover {
    color: var(--accent-color);
    background-color: rgba(228, 185, 91, 0.1);
    transform: translateY(-2px);
}

.contact-info [dir="ltr"] {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    letter-spacing: 0.5px;
}

social-icon:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Adding active state for social icons */
social-icon:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    text-align: center;
    padding: 1.5rem;
}

/* Responsive Design */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var (--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 2rem 0;
        right: auto;
        left: 0;
        transform: translateX(-100%);
    }

    .burger {
        display: block;
        margin-right: auto;
        margin-left: 1rem;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab {
        width: 90%;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .offer-card {
        margin-bottom: 2rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-price {
        font-size: 1.5rem;
    }

    .schedule {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Services Section Enhanced Styles */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(212, 175, 55, 0.03) 0px,
        rgba(212, 175, 55, 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
    pointer-events: none;
}

/* Add loading animation for services */
@keyframes serviceCardLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-service {
    animation: serviceCardLoad 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* FAQ Styles */
.delivery-faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.delivery-faq h3 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(56, 56, 72, 0.6);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    text-align: right;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
    margin-right: 10px;
    margin-left: 0;
}

.faq-question:hover {
    background-color: rgba(228, 185, 91, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .faq-container {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
}

/* Services Section Additional Styles */
.service-card .service-description {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-features {
    min-height: 100px;
}

.delivery-info {
    position: relative;
    overflow: hidden;
}

.delivery-info::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 100%;
    top: 0;
    left: -25%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(228, 185, 91, 0.05) 50%,
        transparent 100%
    );
    animation: shine 3s infinite linear;
}

@keyframes shine {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.service-card:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.service-features span:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color);
}

/* Enhanced Accessibility Styles */
.service-card:focus-visible,
.delivery-features li:focus-visible,
.faq-question:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .delivery-features li,
    .delivery-info::before {
        animation: none;
        transition: none;
    }
}

.whatsapp-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-track:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-track i {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.whatsapp-track:active {
    transform: translateY(-1px);
}

/* Extra Animation for Service Cards on Load */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }

/* Shine Effect for Service Features */
@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Pulsating Effect for WhatsApp Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Print Styles */
@media print {
    .services-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .service-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }
    
    .whatsapp-track {
        display: none;
    }
}

/* Better Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .service-card {
        background-color: rgba(255, 255, 255, 0.03);
    }
}

/* Update scrollbar colors */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a44f;
}

/* Color Transitions and Effects */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 185, 91, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(228, 185, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(228, 185, 91, 0);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(56, 56, 72, 0.8) 0%,
        rgba(228, 185, 91, 0.2) 100%
    );
    pointer-events: none;
}

.menu-tab {
    position: relative;
    overflow: hidden;
}

.menu-tab::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(228, 185, 91, 0.2) 0%,
        transparent 50%
    );
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.menu-tab:hover::after {
    transform: scale(1);
}

.service-card::before {
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(228, 185, 91, 0.1) 45%,
        rgba(228, 185, 91, 0.2) 50%,
        rgba(228, 185, 91, 0.1) 55%,
        transparent 100%
    );
}

/* Enhanced Button Styles */
.cta-button, .offer-button {
    background: linear-gradient(
        45deg,
        var(--accent-color) 0%,
        #d1a64a 100%
    );
    animation: goldPulse 2s infinite;
}

.cta-button:hover, .offer-button:hover {
    background: linear-gradient(
        45deg,
        #d1a64a 0%,
        var(--accent-color) 100%
    );
}

/* Price Tag Enhancement */
.price {
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Social Icons Enhancement */
.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(228, 185, 91, 0.3);
}

/* Night Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #2d2d3a;
        --secondary-color: #232330;
        --text-color: #f0f0f0;
        --text-secondary: #d0d0d0;
    }
}

/* Location Section Styles */
.location-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(228, 185, 91, 0.03) 0px,
        rgba(228, 185, 91, 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
    pointer-events: none;
}

.location-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(45, 45, 58, 0.8);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 185, 91, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.location-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-title {
    font-family: var(--arabic-font);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.location-details {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-feature {
    background: rgba(56, 56, 72, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.location-feature:hover {
    transform: translateY(-5px);
    background: rgba(228, 185, 91, 0.1);
}

.location-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.location-feature h4 {
    font-family: var(--arabic-font);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.location-feature p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: var(--arabic-font);
    font-weight: 500;
}

.directions-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 185, 91, 0.3);
}

.directions-button i {
    margin-left: 8px;
    font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
    .location-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .location-title {
        font-size: 1.8rem;
    }
    
    .location-details {
        font-size: 1.1rem;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
}

/* Quiz Page Styles */
.quiz-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quiz-container h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.quiz-content {
    background: rgba(45, 45, 58, 0.8);
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 185, 91, 0.1);
    animation: fadeIn 0.5s ease-out;
}

#question {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.options {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.option {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--arabic-font);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.option:hover {
    background: rgba(228, 185, 91, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option.correct {
    background: #2ecc71;
    color: white;
    border-color: #45a049;
    background: #4CAF50;
    color: white;
    border-color: #45a049;
    animation: bounce 1s;
    animation: pulse 0.5s;
}

.option.wrong {
    background: #e74c3c;
    color: white;
    border-color: #da190b;
    background: #f44336;
    color: white;
    border-color: #da190b;
    animation: shake 0.5s;
}

.option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.option:hover::before {
    transform: translateX(100%);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    color: var(--accent-color);
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    font-size: 5rem;
    color: #4CAF50;
    animation: bounce 1s;
}

.success-message h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.coupon {
    background: rgba(228, 185, 91, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.coupon-code {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 2rem;
    font-weight: bold;
    color: #2196F3;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #fff;
    border: 2px dashed #2196F3;
    border-radius: 5px;
}

.copy-coupon {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-coupon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(228, 185, 91, 0.3);
    background: #1976D2;
}

.copy-coupon.copied {
    background: #4CAF50;
}

.coupon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(228, 185, 91, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.timer {
    color: var(--text-color);
    margin: 2rem 0;
}

#countdown {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(228, 185, 91, 0.5);
    animation: pulse 1s infinite;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.back-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 185, 91, 0.3);
}

@media screen and (max-width: 768px) {
    .quiz-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    #question {
        font-size: 1.3rem;
    }
    
    .option {
        font-size: 1rem;
    }
    
    .coupon-code {
        font-size: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Progress Bar Styles */
.progress-bar {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
    position: relative;
    background: rgba(45, 45, 58, 0.8);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 185, 91, 0.1);
    background: #f0f0f0;
    height: 10px;
    border-radius: 5px;
    margin: 1.5rem 0;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    height: 10px;
    border-radius: 5px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress {
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #d4af37);
    width: 33.33%;
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 0;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 0;
    transition: width 0.5s ease-in-out;
}

.progress::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(228, 185, 91, 0.5);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 1.5s infinite;
}

.progress-text {
    display: block;
    text-align: center;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

#current-question, #total-questions {
    color: var(--accent-color);
    font-weight: bold;
}

/* تحسين حركة الانتقال بين الأسئلة */
#question-container {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.retry-container {
    text-align: center;
    margin-top: 1.5rem;
    animation: fadeIn 0.5s;
}

.retry-button {
    padding: 0.8rem 1.5rem;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.retry-button:hover {
    background: #1976D2;
    transform: scale(1.05);
}

.retry-button i {
    margin-left: 8px;
}

.success-animation {
    text-align: center;
    margin: 2rem 0;
}

.success-animation i {
    font-size: 5rem;
    color: #4CAF50;
    animation: bounce 1s;
}

.coupon-container {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.coupon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, #e9ecef 49%, #e9ecef 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.coupon-code {
    font-size: 2rem;
    font-weight: bold;
    color: #2196F3;
    margin: 1rem 0;
    padding: 0.5rem;
    background: #fff;
    border: 2px dashed #2196F3;
    border-radius: 5px;
    display: inline-block;
}

.copy-coupon {
    padding: 0.8rem 2rem;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.copy-coupon:hover {
    background: #1976D2;
}

.copy-coupon.copied {
    background: #4CAF50;
}

.copy-coupon i {
    margin-left: 8px;
}

.offers-countdown {
    text-align: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown-item {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.countdown-item .label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.expired {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.offer-price {
    margin: 1rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.offer-price del {
    color: #999;
    margin-left: 10px;
    font-size: 1.1rem;
}

.offer-price .new-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Countdown Timer Styles */
.offers-countdown {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(56, 56, 72, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 185, 91, 0.1);
    max-width: 600px;
}

.offers-countdown h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    direction: ltr;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 1px solid var(--accent-color);
    padding: 1.2rem;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(228, 185, 91, 0.1), transparent);
    animation: shine 2s infinite;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-item .label {
    color: var(--text-color);
    font-size: 1rem;
    display: block;
}

.expired-message {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 1rem;
    display: none;
}

.expired .countdown {
    display: none;
}

.expired .expired-message {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@media screen and (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

    .countdown-item .label {
        font-size: 0.9rem;
    }
}

/* تحديث تنسيقات العداد التنازلي */
.offers-countdown {
    background: linear-gradient(135deg, rgba(56, 56, 72, 0.95) 0%, rgba(45, 45, 58, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem auto 4rem;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(228, 185, 91, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.offers-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(228, 185, 91, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.offers-countdown h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    direction: ltr;
}

.countdown-item {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 3s infinite ease-in-out;
}

.countdown-item span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
}

.countdown-item .label {
    color: var(--text-color);
    font-size: 1.2rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.expired-message {
    color: var(--accent-color);
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.expired .countdown {
    display: none;
}

.expired .expired-message {
    display: block;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(228, 185, 91, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(228, 185, 91, 0.4);
    }
}

/* تحسينات للشاشات الصغيرة */
@media screen and (max-width: 768px) {
    .offers-countdown {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 90px;
        padding: 1rem;
    }

    .countdown-item span {
        font-size: 2rem;
    }

    .countdown-item .label {
        font-size: 1rem;
    }

    .offers-countdown h3 {
        font-size: 1.5rem;
    }
}