/* --- Delivery Availability Styles --- */
.delivery-availability {
    margin-top: 1rem;
    text-align: center;
}

.delivery-note {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

/* --- Slider Styles --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #111;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
    z-index: 0;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slide-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.slide-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.slide h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.5s;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.7s;
}

.slide.active .badge,
.slide.active h1,
.slide.active p,
.slide.active .btn-hero-red {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--red);
}

.nav-btn.prev {
    right: 20px;
}

.nav-btn.next {
    left: 20px;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--red);
    transform: scale(1.2);
}

/* Hero Button */
.btn-hero-red {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.9s;
}

.btn-hero-red:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-3px) translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slider-container {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide h1 {
        font-size: 2.2rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1.1rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .btn-hero-red {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* --- Branches Page Styles --- */
.branches-container {
    padding: 2rem var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.branches-title {
    text-align: center;
    margin: 1.5rem 0 2.5rem;
    color: var(--red);
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.branches-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.map-container {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin: 0 0 2.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

#branchMap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #f5f5f5;
}

.branches-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.branch-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    will-change: transform, box-shadow;
}

.branch-card:hover, 
.branch-card:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.branch-card.active {
    border-color: var(--red);
    background-color: #fff9f9;
    box-shadow: 0 4px 20px rgba(217, 32, 39, 0.15);
}

.branch-name {
    color: var(--red);
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.branch-address, 
.branch-phone, 
.branch-hours {
    margin: 0.5rem 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.branch-phone a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.branch-phone a:active {
    opacity: 0.8;
}

.directions-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.directions-link:hover {
    color: var(--red);
    text-decoration: underline;
}

/* Tablet and up */
@media (min-width: 600px) {
    .branches-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branches-title {
        font-size: 2.25rem;
        margin: 2rem 0 3rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .branches-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .branches-title {
        font-size: 2.5rem;
    }
    
    .map-container {
        padding-bottom: 40%;
    }
}

/* --- Variables & Reset --- */
:root {
    --blue: #0A3D62;
    --red: #D92027;
    --gold: #FBC531;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --container-padding: 1rem;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    direction: rtl;
    color: var(--blue);
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 16px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

/* Better touch targets */
a, button, .btn-order-pill, .branch-card {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header & Logo --- */
body {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header {
    background: var(--white);
    padding: 0 !important;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin: 0 !important;
    line-height: 1 !important;
    border-bottom: 4px solid #D92027;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem !important;
    min-height: 100px;  /* Reduced to remove extra space */
}

.logo-area {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.logo-area a {
    display: block;
    text-decoration: none;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.main-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto !important;
    padding: 0 !important;
    transition: var(--transition);
}

.established {
    color: #D92027;
    font-size: 0.7rem !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 600;
    line-height: 1.1 !important;
    letter-spacing: 0.3px;
    display: block;
    text-align: center;
}

@media (max-width: 768px) {
    .established {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .header-container {
        padding: 2px 2rem !important;
    }
    
    .main-logo {
        width: 180px;
    }
}

/* Ensure content doesn't hide behind fixed header */
main {
    padding-top: 0 !important; /* Prevent margin collapse */
    margin-top: 0 !important;
}

.btn-order-pill {
    background: var(--red);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-order-pill:hover {
    transform: scale(1.05);
}

.spacer {
    width: 100px; /* Same as .top-actions width for balance */
    visibility: hidden;
} /* Used for desktop centering */

/* --- Navigation --- */
.sub-nav {
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 4px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
    width: 100%;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0 10px;
}

.nav-links::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
    height: 0; /* Hide scrollbar on mobile */
}

.nav-links li {
    flex: 0 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    padding: 0.6rem 0.8rem;
    border-radius: 50px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    min-height: 40px;
    line-height: 1.2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background-color: var(--red);
    transition: transform 0.2s ease;
    border-radius: 3px;
}

.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:active {
    transform: scale(0.96);
}

.nav-links a.active {
    color: var(--red);
    background: rgba(217, 32, 39, 0.08);
    outline: none;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--red);
    background: rgba(217, 32, 39, 0.08);
    outline: none;
    transform: translateY(-2px);
}

/* Scroll indicators */
.nav-container {
    position: relative;
}

.nav-scroll-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
    display: none;
}

.nav-scroll-indicator.right {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
}

.nav-scroll-indicator.left {
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .nav-links {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        padding: 0.5rem 0.25rem;
        text-align: center;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links li {
        display: inline-block;
        margin: 0 0.1rem;
    }
    
    .nav-links a {
        display: inline-block;
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.2s ease;
    }
    
    /* Special handling for 'تواصل معنا' */
    .nav-links a[href*="contact"] {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }
}

@media (min-width: 400px) {
    .nav-links {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 0.75rem;
        padding: 0.75rem 0.5rem;
    }
    
    .nav-links a {
        padding: 0.6rem 1.1rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        justify-content: center;
        gap: 1rem;
        padding: 0.75rem 1rem;
        -webkit-overflow-scrolling: auto;
        overflow-x: visible;
    }
    
    .nav-links a {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .nav-scroll-indicator {
        display: none !important;
    }
}

/* Hide scroll indicators when at the edges */
.nav-links[data-scroll="start"] ~ .nav-scroll-indicator.left,
.nav-links[data-scroll="end"] ~ .nav-scroll-indicator.right {
    display: none;
}

/* --- New Slider Section (Replaces Hero Classic) --- */
/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 75vh; /* Taller on mobile for better visual impact */
    background: #111;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%; /* Safe zone for mobile edges */
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Background & Parallax */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s linear;
    z-index: -1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

/* Typography */
.slide-content {
    text-align: center;
    color: #fff;
    max-width: 600px;
}

.badge {
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s 0.3s forwards;
}

.slide-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s 0.5s forwards;
}

.slide-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s 0.7s forwards;
}

.slide.active .badge, 
.slide.active h1, 
.slide.active p {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Friendly Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn:active { transform: translateY(-50%) scale(0.9); }

/* SVG Arrows (using CSS shapes) */
.nav-btn span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: block;
}

.prev { right: 15px; } /* RTL Positioning */
.prev span::before { transform: rotate(45deg); }
.next { left: 15px; }
.next span::before { transform: rotate(-135deg); }

.dots-container {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: 0.4s;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--gold);
}

/* Menu Page Specific Styles */
.menu-item .item-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

/* Menu item image backgrounds */
.menu-item .item-image[style*="burger1.jpg"] { background-image: url('images/burger1.jpg') !important; }
.menu-item .item-image[style*="burger2.jpg"] { background-image: url('images/burger2.jpg') !important; }
.menu-item .item-image[style*="burger3.jpg"] { background-image: url('images/burger3.jpg') !important; }
.menu-item .item-image[style*="burger4.jpg"] { background-image: url('images/burger4.jpg') !important; }
.menu-item .item-image[style*="shawarma2.jpg"] { background-image: url('images/shawarma2.jpg') !important; }
.menu-item .item-image[style*="shawarma5.jpg"] { background-image: url('images/shawarma5.jpg') !important; }
.menu-item .item-image[style*="pepsi.jpg"] { background-image: url('images/pepsi.jpg') !important; }
.menu-item .item-image[style*="sauces.jpg"] { background-image: url('images/sauces.jpg') !important; }
.menu-item .item-image[style*="extras.jpg"] { background-image: url('images/extras.jpg') !important; }

.menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/menu-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}

.menu-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.menu-categories {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

.category-btn {
    background: var(--gold);
    color: var(--blue);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-btn.active, .category-btn:hover {
    background: var(--red);
    color: white;
    transform: translateY(-3px);
}

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

.menu-category {
    margin-bottom: 60px;
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-category h2 {
    color: var(--red);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.menu-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

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

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.item-details {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.nutrition-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #eee;
}

.calories {
    color: #e74c3c;
}

.exercise {
    color: #3498db;
}

.item-name {
    font-size: 1.3rem;
    color: var(--blue);
}

.item-price {
    color: var(--red);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    background: var(--light-gray);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .menu-hero h1 {
        font-size: 2.2rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonials-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #D92027;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

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

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

.section-title {
    font-size: 2.5rem;
    color: #D92027;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header .section-title:after {
    content: '' !important;
    position: absolute !important;
    width: 60px !important;
    height: 4px !important;
    background: #FFD700 !important;
    bottom: 0 !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

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

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    border: 2px solid #D92027;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-right: 20px;
}

.testimonial-text:before {
    content: '"\201C"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(217, 32, 39, 0.1);
    position: absolute;
    top: -20px;
    right: 0;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #D92027;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1rem;
}

.author-info span {
    color: #777;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-cta p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.2rem;
}

.btn-review {
    display: inline-block;
    background: #D92027;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #D92027;
}

.btn-review:hover {
    background: transparent;
    color: #D92027;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Footer */
.site-footer {
    background-color: white;
    color: var(--blue);
    padding: 30px 0 20px;
    text-align: center;
    direction: rtl;
    margin-top: 60px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

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


.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--blue);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.copyright {
    color: var(--blue);
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    text-align: right;
    direction: rtl;
    padding-right: 20px;
}

/* Desktop Polish */
@media (min-width: 768px) {
    .slider-container { height: 90vh; }
    .slide-content h1 { font-size: 4.5rem; }
    .slide-content p { font-size: 1.1rem; }
    .nav-btn { width: 60px; height: 60px; }
    .prev { right: 40px; }
    .next { left: 40px; }
}
/* --- Category Section --- */
.category-section {
    padding: 40px 20px;
    background: var(--light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.cat-box {
    background: white;
    padding: 25px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-icon { font-size: 2rem; }

.cat-box:hover {
    background: var(--red);
    color: white;
    transform: translateY(-5px);
    border-color: var(--red);
}

/* --- Responsive Adjustments (Desktop) --- */
/* --- Contact Page Styles --- */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px 60px;
    width: 100%;
    position: relative;
}

.contact-header {
    text-align: center;
    margin: 20px 0 30px;
    padding: 0 10px;
}

.contact-header h1 {
    color: #D92027;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.contact-info {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.info-item {
    margin: 20px 0;
}

.info-item a {
    color: #D92027;
    text-decoration: none;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 0;
    word-break: break-word;
}

.info-item a i {
    font-size: 1.4em;
    flex-shrink: 0;
}

.info-item a:hover {
    color: #c01c22;
}

.contact-form {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    background: #f9f9f9;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-control:focus {
    border-color: #D92027;
    outline: none;
}

.btn-submit {
    background-color: #D92027;
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-top: 10px;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:hover {
    background-color: #c01c22;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.divider span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: #777;
}
    
    .spacer { display: block; } /* Helps center the logo */

    .hero-classic { height: 75vh; }
    .hero-content h1 { font-size: 4rem; }
    .hero-content p { font-size: 1.6rem; }

    .nav-links { gap: 40px; }
    .nav-links a { font-size: 1.1rem; }

    .category-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    }