/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C87854;
    --secondary-color: #E8A87C;
    --dark-color: #1a1614;
    --darker-color: #0f0d0c;
    --light-color: #2a2520;
    --white: #ffffff;
    --text-color: #e8e6e3;
    --text-light: #b8b5b0;
    --border-color: #3a3530;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

/* تأكد من أن الصفحة تبدأ من الأعلى */
html, body {
    scroll-behavior: smooth;
    position: relative;
}

/* Arabic Traditional Font for Headings */
h1, h2, h3, .logo span, .hero-title, .section-title {
    font-family: 'Amiri', 'Cairo', serif;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #a83242);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 38, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--darker-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.7);
    background: rgba(15, 13, 12, 0.98);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    padding: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(232, 168, 124, 0.4);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 120, 84, 0.3);
}

.logo-icon i {
    font-size: 24px;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    padding: 80px 0 0 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=800&q=80') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.85) 0%, rgba(26, 22, 20, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-stars {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(232, 168, 124, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}


.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* ==================== About Section ==================== */
.about {
    background: var(--darker-color);
    padding-top: 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ==================== Menu Preview Section ==================== */
.menu-preview {
    background: var(--dark-color);
    padding-top: 120px;
}

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

.menu-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.menu-badge.hot {
    background: #ff6b6b;
}

.menu-badge.new {
    background: #51cf66;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.menu-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

.price del {
    font-size: 18px;
    color: var(--text-light);
    margin-left: 10px;
}

.text-center {
    text-align: center;
}

/* ==================== Offers Section ==================== */
.offers {
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    padding-top: 120px;
}

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

.offer-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.offer-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.offer-badge.hot {
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-card.featured .offer-icon {
    color: var(--secondary-color);
}

.offer-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.offer-price {
    margin-bottom: 15px;
}

.old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

.offer-card.featured .old-price {
    color: rgba(255, 255, 255, 0.7);
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.offer-card.featured .new-price {
    color: var(--secondary-color);
}

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

.offer-card.featured .offer-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== Why Us Section ==================== */
.why-us {
    background: var(--dark-color);
}

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

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.why-card:hover {
    background: var(--darker-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 120, 84, 0.1) 0%, rgba(232, 168, 124, 0.05) 100%);
    pointer-events: none;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}


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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--secondary-color);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== Contact Section ==================== */
.contact {
    background: var(--dark-color);
    padding-top: 120px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-details p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-link {
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

/* WhatsApp Icon Styling */
.contact-icon .fa-whatsapp {
    color: #25D366;
}

.contact-item:has(.fa-whatsapp) .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Social Media Icons Hover Effects */
.social-link:hover .fa-instagram {
    color: #E1306C;
}

.social-link:hover .fa-snapchat {
    color: #FFFC00;
}

.social-link:hover .fa-tiktok {
    color: #00F2EA;
}

.footer-social a:hover .fa-instagram {
    color: #E1306C;
}

.footer-social a:hover .fa-snapchat {
    color: #FFFC00;
}

.footer-social a:hover .fa-tiktok {
    color: #00F2EA;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--darker-color);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ==================== CTA Section ==================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=800&q=80') center/cover;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    min-width: 200px;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--darker-color);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== Scroll to Top Button ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ==================== Additional Styling for Brand Identity ==================== */
/* Decorative Elements */
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-header .section-title::before {
    content: '★';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 20px;
}

.section-header .section-title::after {
    content: '★';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 20px;
}

/* Enhanced Card Hover Effects */
.menu-card:hover,
.offer-card:hover,
.why-card:hover {
    border-color: var(--primary-color);
}

/* Gradient Text Effect */
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stars Styling */
.stars i {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(232, 168, 124, 0.5);
}

/* Price Highlight */
.price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Glow Effect */
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(200, 120, 84, 0.4);
}

/* Menu Badge Enhanced */
.menu-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(200, 120, 84, 0.3);
}

/* Offer Badge Enhanced */
.offer-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 4px 15px rgba(232, 168, 124, 0.3);
}

/* Logo Icon Animation */
.logo-icon {
    transition: var(--transition);
}

.logo-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Contact Icon Glow */
.contact-icon {
    box-shadow: 0 5px 20px rgba(200, 120, 84, 0.3);
}

/* Why Icon Glow */
.why-icon {
    box-shadow: 0 5px 20px rgba(200, 120, 84, 0.3);
}

/* Testimonial Card Enhanced */
.testimonial-card {
    backdrop-filter: blur(10px);
    background: rgba(42, 37, 32, 0.6);
    border: 1px solid rgba(232, 168, 124, 0.2);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    background: rgba(42, 37, 32, 0.8);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--darker-color);
        flex-direction: column;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Body & Container */
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    .nav-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        font-size: 18px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .nav-links {
        font-size: 14px;
        top: 70px;
        width: 100%;
        left: 0;
        padding: 20px;
        background: var(--dark-color);
        border-top: 1px solid var(--border-color);
    }

    .nav-buttons .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 20px 15px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 80px);
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stars {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
        padding: 0 15px;
        width: 100%;
    }

    .hero-buttons .btn-large {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 15px;
        max-width: 100%;
    }

    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }

    .stat-item i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }

    .offer-card.featured {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }

    .nav-buttons .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 15px 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 70px);
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 18px;
        padding: 0 10px;
    }

    .hero-stars {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .hero-buttons .btn-large {
        max-width: 260px;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .stat-item {
        padding: 12px 8px;
    }

    .stat-item i {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .stat-number {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.2;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    /* Menu & Cards */
    .menu-grid {
        padding: 0 5px;
        gap: 15px;
    }

    .menu-card {
        padding: 15px;
    }

    .menu-card h3 {
        font-size: 16px;
    }

    .menu-card p {
        font-size: 12px;
    }

    /* Offers */
    .offers-grid {
        gap: 15px;
        padding: 0 5px;
    }

    .offer-card {
        padding: 20px 15px;
    }

    /* Footer */
    .footer-content {
        gap: 25px;
        padding: 0 5px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 15px 0;
        font-size: 12px;
    }
}

/* ==================== Touch & Mobile Optimizations ==================== */
@media (hover: none) and (pointer: coarse) {
    /* تحسينات للأجهزة اللمسية */
    .btn, .nav-links a, .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn-large {
        min-height: 50px;
    }
    
    /* إزالة hover effects على الأجهزة اللمسية */
    .btn:hover,
    .menu-card:hover,
    .offer-card:hover,
    .why-card:hover {
        transform: none;
    }
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-buttons .btn-large {
        max-width: 240px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 10px 6px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}

/* إصلاح مشكلة عرض الصفحة عند التحميل */
.hero {
    position: relative;
    top: 0;
    left: 0;
}

/* تأكد من أن المحتوى يظهر بشكل صحيح */
@media screen and (max-height: 600px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        min-height: auto;
        padding: 40px 20px;
    }
}
