@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    --primary-green: #1b3a24;
    --primary-green-light: #2e6f43;
    --primary-orange: #f26222;
    --primary-orange-light: #ff7836;
    --primary-gold: #eab308;
    --primary-gold-light: #facc15;
    --primary-gold-dark: #ca8a04;
    --primary-green-dark: #0f2416;
    --primary-orange-dark: #cc4912;
    --accent-green-light: rgba(42, 126, 67, 0.15);
    --accent-orange-light: rgba(242, 98, 34, 0.15);
    --dark-bg: #070403;
    --dark-card: rgba(30, 20, 15, 0.5);
    --light-bg: #0c0705;
    --white: #ffffff;
    --text-dark: #f8fafc;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.15), 0 2px 4px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.3), 0 8px 10px -6px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.5), 0 10px 20px -10px rgba(0,0,0,0.4);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-cairo: 'Cairo', 'Tajawal', sans-serif;
    
    --glass-bg: rgba(22, 11, 8, 0.85);
    --card-bg: rgba(24, 13, 10, 0.97);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(8px);
    --glass-saturate: saturate(135%);
    --glass-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        inset 0 8px 16px rgba(255, 255, 255, 0.03),
        inset 0 -8px 12px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-cairo);
}

body {
    direction: rtl;
    text-align: right;
    background: transparent;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 110px;
    position: relative;
}

/* الخلفية الثابتة ورا الموقع حقنا */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    will-change: transform;
    background: 
        radial-gradient(circle at 80% 20%, rgba(242, 98, 34, 0.16) 0%, rgba(242, 98, 34, 0) 60%),
        radial-gradient(circle at 20% 80%, rgba(234, 179, 8, 0.12) 0%, rgba(234, 179, 8, 0) 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.09) 0%, rgba(220, 38, 38, 0) 65%),
        radial-gradient(circle at 50% 0%, #1f0c05 0%, #0b0502 65%, #030101 100%);
}

body::before {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* شكل السكرول بار (شريط التمرير) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(30, 20, 15, 0.3);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-gold-dark));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-light);
}

/* الأنيميشنات والحركات التفاعلية */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse-glow-opacity {
    0%, 100% { opacity: 0.45; transform: scale(0.96); }
    50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green-light), var(--primary-orange));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* شكل الأزرار والتفاعلات حقها */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(242, 98, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 98, 34, 0.6);
}

.btn-sizzle {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold-dark)) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth) !important;
    overflow: visible;
}

.btn-sizzle::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold-dark));
    box-shadow: 0 0 20px rgba(242, 98, 34, 0.7);
    opacity: 0.35;
    z-index: -1;
    animation: sizzle-glow-pseudo 2.5s infinite ease-in-out;
    will-change: transform, opacity;
    transition: var(--transition-fast);
}

.btn-sizzle:hover::before {
    box-shadow: 0 0 30px rgba(242, 98, 34, 0.95);
}

@keyframes sizzle-glow-pseudo {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.95; transform: scale(1.04); }
}

.btn-secondary {
    background: linear-gradient(135deg, #78350f, #451a03);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(120, 53, 15, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 53, 15, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange-light);
    color: var(--primary-orange-light);
}

.btn-outline:hover {
    background: var(--primary-orange-light);
    color: var(--white);
}

/* الهيدر وقائمة التنقل الرئيسية فوق */
header {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur) var(--glass-saturate);
    -webkit-backdrop-filter: var(--glass-blur) var(--glass-saturate);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(10, 20, 12, 0.5);
    box-shadow: 
        0 12px 40px 0 rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 8px 16px rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-container .brand-name {
    display: flex;
    flex-direction: column;
}

.logo-container .brand-name h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.2;
}

.logo-container .brand-name span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    font-size: 1.05rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-green-light);
    cursor: pointer;
}

/* الواجهة الرئيسية والبانر الكبير حق البداية */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 15, 10, 0.95), rgba(15, 7, 5, 0.98)), url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
    border-radius: 40px;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 25px 60px rgba(15, 7, 5, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    background-color: rgba(242, 98, 34, 0.15);
    color: var(--primary-orange);
    border: 1px solid rgba(242, 98, 34, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    display: inline-block;
}

.hero-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-content h2 span.highlight-green {
    color: #4caf50;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
}

.hero-content h2 span.highlight-orange {
    color: var(--primary-orange);
    text-shadow: 0 0 15px rgba(242, 98, 34, 0.4);
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 98, 34, 0.25) 0%, transparent 70%);
    animation: pulse-glow-opacity 6s infinite ease-in-out alternate;
    z-index: 0;
    will-change: transform, opacity;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes rotate-glowing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image circle[stroke-dasharray] {
    transform-origin: 250px 250px;
    animation: rotate-glowing 25s linear infinite;
}

/* العروض والسلايدر حق العروض والخصومات */
.offers-section {
    background: transparent;
    overflow: hidden;
    position: relative;
}

.offers-slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(13, 46, 23, 0.04);
}

.offers-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.offer-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
}

.offer-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-tag {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    align-self: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(242, 98, 34, 0.2);
}

.offer-content h3 {
    font-size: 2rem;
    color: var(--primary-green-light);
    font-weight: 800;
    margin-bottom: 15px;
}

.offer-content p {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.offer-image-box {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.offer-slide:hover .offer-image-box {
    transform: scale(1.04);
}

.offer-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(22, 11, 8, 0.9) 0%, transparent 40%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(30, 20, 15, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-orange-light);
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-green-light);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.slider-btn-prev {
    right: 20px;
}

.slider-btn-next {
    left: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary-orange);
    width: 24px;
    border-radius: 6px;
}

/* المنيو وكروت الأكلات والوجبات البلدية */
.menu-section {
    background: transparent;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background: rgba(24, 13, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-tab {
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-orange-light);
    border-radius: 30px;
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-orange), #f59e0b);
    color: var(--white);
    border-color: transparent;
    box-shadow: 
        0 8px 20px rgba(242, 98, 34, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
}

@keyframes float-water-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.4deg); }
}
@keyframes float-water-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-0.4deg); }
}

.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.menu-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -110%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 35%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 65%
    );
    transform: rotate(-30deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 5;
}

.menu-card:hover::after {
    transform: translate(110%, 110%) rotate(-30deg);
}

.menu-card:hover {
    border-color: rgba(242, 98, 34, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(242, 98, 34, 0.2);
    transform: translateY(-8px);
}

.menu-card-img-box {
    position: relative;
    height: 200px;
    margin: 12px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-img-box {
    box-shadow: 0 0 25px rgba(252, 120, 30, 0.35);
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.06);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(20, 35, 23, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
}

.menu-card-content {
    padding: 12px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-card-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-orange-light);
}

.menu-card-price span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 2px;
}

.menu-card-btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(242, 98, 34, 0.3);
}

.menu-card-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.1) rotate(-15deg);
}

/* الفروع وتفاصيلها الجغرافية */
.branches-section {
    background: transparent;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.branch-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -110%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 35%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 65%
    );
    transform: rotate(-30deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 5;
}

.branch-card:hover::after {
    transform: translate(110%, 110%) rotate(-30deg);
}

.branch-card:hover {
    border-color: rgba(242, 98, 34, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(242, 98, 34, 0.2);
    transform: translateY(-8px);
}

.branch-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 98, 34, 0.1);
    color: var(--primary-orange-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.branch-card:hover .branch-icon {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 15px rgba(242, 98, 34, 0.3);
}

.branch-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.branch-address {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    min-height: 48px;
    line-height: 1.6;
}

.branch-phone {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-orange-light);
    margin-bottom: 25px;
    direction: ltr;
    display: inline-block;
}

.branch-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.branch-actions .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 20px;
}

.floating-actions {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-phone {
    background-color: var(--primary-orange);
}

.info-banner {
    background: linear-gradient(135deg, #1f0c05, #0c0502);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.info-banner-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.info-banner-content p {
    font-size: 1.15rem;
    color: #facc15;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* الفوتر تحت وأقسام الروابط */
footer {
    background-color: var(--dark-bg);
    color: #e5e7eb;
    padding: 70px 0 30px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about .footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-right: 6px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
}

.contact-info-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #9ca3af;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

/* البوب أب حق تفاصيل وبيانات الفروع */
.branch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.branch-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: rgba(22, 11, 8, 0.99);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    box-shadow: var(--glass-shadow);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.branch-modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-orange);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-green-light);
    margin-bottom: 20px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* أرقام التواصل وقنوات السوشل ميديا حقنا */
.contact-section {
    background: transparent;
}

.contact-container {
    max-width: 800px;
    text-align: center;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 20, 15, 0.9);
    border-color: rgba(242, 98, 34, 0.35);
    box-shadow: 0 25px 45px rgba(242, 98, 34, 0.15);
}

.contact-text {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.contact-btn-tel {
    padding: 15px;
    font-size: 1.1rem;
}

.contact-btn-wa {
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 10px;
}

.contact-social-insta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E1306C;
    font-weight: 700;
    transition: var(--transition-fast);
}

.contact-social-insta:hover {
    transform: translateY(-2px) scale(1.05);
}

.contact-social-snap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eab308;
    font-weight: 700;
    transition: var(--transition-fast);
}

.contact-social-snap:hover {
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}

/* تجاوب وتناسق الموقع مع التلفونات والشاشات */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(6, 12, 8, 0.96);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 28px;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
        gap: 20px;
        z-index: 999;
        margin-top: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        margin: 10px auto;
        width: 95%;
        border-radius: 28px;
        padding: 50px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .offer-slide {
        grid-template-columns: 1fr;
    }
    
    .offer-image-box {
        min-height: 250px;
        order: -1;
    }
    
    .offer-image-box::before {
        background: linear-gradient(to top, rgba(255, 255, 255, 0.55) 0%, transparent 40%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        top: 8px;
        width: 94%;
    }
    
    body {
        padding-top: 90px;
    }
    
    .logo-container img {
        height: 50px !important;
    }
    
    .slider-btn {
        display: none;
    }
    
    .categories-tabs {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        padding: 8px 15px;
        border-radius: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .categories-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .offer-content {
        padding: 30px 20px;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-phone-nav span {
        display: none;
    }
    
    .btn-phone-nav {
        padding: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-phone-nav i {
        margin: 0;
    }
    
    .floating-actions {
        bottom: 15px;
        left: 15px;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }
}
