:root {
    --red-primary: #C8102E;
    --red-light: #E63946;
    --red-dark: #9B0D23;
    --red-glow: rgba(200, 16, 46, 0.4);
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #E8E8E8;
    --gray-dark: #333333;
    --text-dark: #1A1A1A;
    --shadow-red: 0 0 40px rgba(200, 16, 46, 0.2);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html { 
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--gray-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.8;
}

.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 1.5rem;
    position: relative; 
    z-index: 10;
}

/* Header - محسّن للهواتف */
.header {
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light));
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section { 
    display: flex; 
    align-items: center; 
    gap: 0.8rem;
}

.logo-img {
    width: 55px; 
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 4px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 2px solid var(--red-primary);
}

.logo-img:hover { 
    transform: scale(1.08) rotate(3deg);
}

.logo-text h1 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--red-primary);
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--gray-dark);
    display: block;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0; 
    right: 0;
    width: 0; 
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { 
    color: var(--red-primary);
}

.nav-links a:hover::before { 
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.6rem;
    color: var(--red-primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

/* Hero Section - محسّن للهواتف */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    border-radius: 0 0 50% 50%;
    transform: rotate(-15deg);
    opacity: 0.08;
}

.hero-content {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: relative;
    margin: 0 auto 2.5rem;
    width: 180px; 
    height: 180px;
}

.hero-logo-ring {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; 
    height: 200px;
    border: 2px solid var(--red-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 3s ease-in-out infinite;
}

.hero-logo-ring:nth-child(2) { 
    width: 230px; 
    height: 230px; 
    animation-delay: 0.5s; 
    opacity: 0.2;
}

.hero-logo-ring:nth-child(3) { 
    width: 260px; 
    height: 260px; 
    animation-delay: 1s; 
    opacity: 0.1;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.1;
    }
}

.hero-logo {
    width: 180px; 
    height: 180px;
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: var(--shadow-red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    border: 4px solid var(--red-primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
}

.hero h1 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--red-primary);
    text-shadow: 0 4px 20px rgba(200, 16, 46, 0.2);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    letter-spacing: clamp(3px, 2vw, 8px);
    font-weight: 300;
}

.hero .since {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    border: 2px solid var(--red-primary);
    border-radius: 50px;
    color: var(--red-primary);
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 2rem;
    background: var(--white);
    font-weight: 600;
}

.hero .since::before, .hero .since::after {
    content: '✦';
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-tagline {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-family: 'Amiri', serif;
    line-height: 1.8;
    padding: 0 1rem;
}

.hero-tagline span { 
    color: var(--red-primary); 
    font-weight: 700;
}

.hero-buttons { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap;
    padding: 0 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--red-primary);
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(200, 16, 46, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    min-height: 50px;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(200, 16, 46, 0.4);
    background: var(--red-dark);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-primary i { 
    font-size: 1.3rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--red-primary);
    padding: 1.1rem 2.5rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--red-primary);
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    min-height: 50px;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--red-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Section Title */
.section-title { 
    text-align: center; 
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title h2 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 700;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.section-title p { 
    color: var(--gray-dark); 
    font-size: clamp(1rem, 3vw, 1.2rem);
}

/* Food Section */
.food-section {
    padding: 4rem 1.5rem;
    position: relative;
    background: var(--white);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.food-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.5s ease;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-medium);
}

.food-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(200, 16, 46, 0.85) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

.food-card:hover::before { 
    opacity: 1;
}

.food-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(200, 16, 46, 0.2);
}

.food-card img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-card:hover img { 
    transform: scale(1.12);
}

.food-badge {
    position: absolute;
    top: 12px; 
    right: 12px;
    background: var(--red-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.food-info {
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.food-card:hover .food-info { 
    transform: translateY(0); 
    opacity: 1;
}

.food-info h3 {
    color: white;
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 0.3rem;
}

.food-info p { 
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Services Section */
.services-section { 
    padding: 4rem 1.5rem;
    position: relative; 
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--red-primary);
    box-shadow: 0 20px 50px rgba(200, 16, 46, 0.15);
}

.service-icon {
    width: 75px; 
    height: 75px;
    margin: 0 auto 1.2rem;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gray-dark);
    transition: all 0.4s;
    border: 2px solid var(--gray-medium);
}

.service-card:hover .service-icon { 
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--red-primary);
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    margin-bottom: 0.8rem;
    font-family: 'Noto Kufi Arabic', serif;
}

.service-card p { 
    color: var(--gray-dark); 
    line-height: 1.7; 
    font-size: 0.95rem;
}

/* Hours Banner */
.hours-banner {
    background: var(--red-primary);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hours-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hours-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    color: white;
}

.hours-item i { 
    font-size: 2rem; 
    opacity: 0.9;
}

.hours-item span { 
    font-size: clamp(1.1rem, 3vw, 1.3rem); 
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { 
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(200, 16, 46, 0.9));
}

.gallery-overlay h4 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: white;
}

/* About Section */
.about-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(200, 16, 46, 0.2);
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
    white-space: nowrap;
}

.about-content {
    padding: 2rem 0;
}

.about-content h2 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.about-content .founder-name {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--gray-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--red-primary);
    display: inline-block;
}

.about-content p {
    color: var(--text-dark);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: var(--red-primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 1.8rem;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.about-feature span {
    display: block;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Founder Bio Section */
.founder-bio {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-medium);
}

.founder-bio h3 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.founder-bio p {
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    color: var(--gray-dark);
    line-height: 1.9;
}

/* Contact Section */
.contact-section { 
    padding: 4rem 1.5rem;
    background: var(--gray-light);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    padding: 2.5rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--red-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: var(--white);
    border-color: var(--red-primary);
    transform: translateX(-5px);
}

.contact-icon {
    width: 50px; 
    height: 50px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 { 
    color: var(--gray-dark); 
    font-size: 0.9rem; 
    margin-bottom: 0.3rem;
}

.contact-text p, .contact-text a { 
    color: var(--text-dark); 
    font-size: clamp(1rem, 2.5vw, 1.1rem); 
    text-decoration: none; 
    font-weight: 600;
    word-break: break-word;
}

.contact-text a:hover { 
    color: var(--red-primary);
}

.social-links { 
    display: flex; 
    gap: 1rem; 
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px; 
    height: 50px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--gray-medium);
}

.social-link:hover {
    background: var(--red-primary);
    color: white;
    border-color: var(--red-primary);
    transform: translateY(-5px);
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-medium);
}

.map-container iframe { 
    width: 100%; 
    height: 100%; 
    border: none;
}

/* Rating Section */
.rating-section {
    padding: 3.5rem 1.5rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 30px;
}

.rating-content {
    position: relative;
    z-index: 1;
}

.rating-section h3 {
    font-family: 'Noto Kufi Arabic', serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: white;
    margin-bottom: 1rem;
}

.rating-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.rating-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: white;
    color: var(--red-primary);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 54px;
}

.rating-phone:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rating-phone:active {
    transform: translateY(-2px) scale(1.02);
}

.rating-phone i {
    font-size: 1.6rem;
}

.rating-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.4);
    margin: 2rem auto;
    letter-spacing: 1px;
    min-height: 54px;
}

.rating-whatsapp:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 50px rgba(200, 16, 46, 0.6);
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
}

.rating-whatsapp:active {
    transform: translateY(-4px) scale(1.05);
}

.rating-whatsapp i {
    font-size: 1.6rem;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.rating-stars {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.rating-stars i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #FFD700;
    animation: starPulse 1s ease-in-out infinite;
}

.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.4s; }
.rating-stars i:nth-child(4) { animation-delay: 0.6s; }
.rating-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer */
.footer {
    background: var(--white);
    padding: 3.5rem 1.5rem;
    text-align: center;
    border-top: 4px solid var(--red-primary);
}

.footer-logo {
    width: 90px; 
    height: 90px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--red-primary);
}

.footer-logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
}

.footer p { 
    color: var(--text-dark); 
    font-size: clamp(1rem, 3vw, 1.2rem); 
    font-weight: 600;
}

.footer .copyright { 
    color: var(--gray-dark); 
    font-size: 0.9rem; 
    margin-top: 1.5rem;
}

/* Chatbot - محسّن للهواتف */
.chatbot-trigger {
    position: fixed;
    bottom: 25px; 
    left: 20px;
    width: 60px; 
    height: 60px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 30px rgba(200, 16, 46, 0.4);
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 30px rgba(200, 16, 46, 0.4); }
    50% { box-shadow: 0 5px 50px rgba(200, 16, 46, 0.6); }
}

.chatbot-trigger:hover { 
    transform: scale(1.1);
}

.chatbot-trigger:active {
    transform: scale(0.95);
}

.chatbot-trigger i { 
    font-size: 1.8rem; 
    color: white;
}

.chatbot-trigger.active i::before { 
    content: '\f00d';
}

.chatbot-container {
    position: fixed;
    bottom: 100px; 
    left: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    height: 500px;
    max-height: calc(100vh - 140px);
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    z-index: 9998;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    border: 1px solid var(--gray-medium);
}

.chatbot-container.active {
    display: flex;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: var(--red-primary);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 45px; 
    height: 45px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    flex-shrink: 0;
}

.chatbot-avatar img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
}

.chatbot-title h4 { 
    color: white; 
    font-size: clamp(1rem, 3vw, 1.2rem); 
    font-family: 'Noto Kufi Arabic', serif;
}

.chatbot-title span { 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 0.8rem;
}

.status-dot {
    display: inline-block;
    width: 8px; 
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-left: 5px;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-messages {
    flex: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--gray-light);
    -webkit-overflow-scrolling: touch;
}

.chatbot-messages::-webkit-scrollbar { 
    width: 5px;
}

.chatbot-messages::-webkit-scrollbar-track { 
    background: var(--gray-medium);
}

.chatbot-messages::-webkit-scrollbar-thumb { 
    background: var(--red-primary); 
    border-radius: 3px;
}

.message {
    max-width: 85%;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s;
    white-space: pre-wrap;
    word-wrap: break-word;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.message.bot {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-right-radius: 6px;
}

.message.user {
    background: var(--red-primary);
    color: white;
    align-self: flex-end;
    border-bottom-left-radius: 6px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem;
    align-self: flex-start;
}

.typing-indicator span {
    width: 8px; 
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-8px); 
        opacity: 1;
    }
}

.chatbot-input {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-medium);
    display: flex;
    gap: 0.8rem;
}

.chatbot-input input {
    flex: 1;
    background: var(--gray-light);
    border: 1px solid var(--gray-medium);
    border-radius: 25px;
    padding: 0.9rem 1.2rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.chatbot-input input::placeholder { 
    color: var(--gray-dark);
}

.chatbot-input input:focus { 
    border-color: var(--red-primary); 
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.1);
}

.chatbot-input button {
    width: 46px; 
    height: 46px;
    background: var(--red-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.chatbot-input button:hover { 
    transform: scale(1.1); 
    background: var(--red-dark);
}

.chatbot-input button:active {
    transform: scale(0.95);
}

.chatbot-input button:disabled { 
    opacity: 0.5; 
    cursor: not-allowed;
}

/* WhatsApp Float - محسّن للهواتف */
.whatsapp-float {
    position: fixed;
    bottom: 25px; 
    right: 20px;
    width: 60px; 
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover { 
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Notification Styles */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* تحسينات إضافية للهواتف */
@media (hover: none) {
    .food-card:hover::before,
    .food-card:hover .food-info {
        opacity: 1;
        transform: translateY(0);
    }
    
    .food-card img {
        transform: scale(1);
    }
}

/* Responsive - نقاط التوقف المحسّنة */
@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hours-content {
        gap: 6rem;
        flex-wrap: nowrap;
    }
    
    .chatbot-container {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%; 
        height: calc(100vh - 75px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active { 
        right: 0;
    }
    
    .nav-links li { 
        width: 100%; 
        text-align: center;
    }
    
    .nav-links a { 
        display: flex;
        justify-content: center;
        padding: 1.5rem; 
        border-bottom: 1px solid var(--gray-medium);
        min-height: 60px;
    }
    
    .mobile-menu { 
        display: block;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .about-image-main {
        height: 350px;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .logo-img {
        width: 48px;
        height: 48px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-logo-container {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo-ring {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo-ring:nth-child(2) {
        width: 190px;
        height: 190px;
    }
    
    .hero-logo-ring:nth-child(3) {
        width: 220px;
        height: 220px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
    
    .chatbot-trigger {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 15px;
    }
    
    .chatbot-trigger i {
        font-size: 1.6rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
        font-size: 1.6rem;
    }
    
    .about-badge {
        font-size: 0.95rem;
        padding: 1rem 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .food-grid,
    .services-grid {
        gap: 1.2rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .rating-phone,
    .rating-whatsapp {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .rating-phone i,
    .rating-whatsapp i {
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .hero .since {
        padding: 0.8rem 1.5rem;
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        gap: 0.6rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}