/* ===================================
   LAHAB AL-BAHRAIN - FLAME BURGER CO.
   Bold, warm, appetizing aesthetic
   =================================== */

:root {
    --flame-red: #C1272D;
    --flame-orange: #FF6B35;
    --flame-amber: #F7931E;
    --flame-yellow: #FFD23F;
    --charcoal: #1A0F0A;
    --charcoal-light: #2D1810;
    --cream: #FFF8EC;
    --cream-dark: #F5E6C8;
    --ash: #6B4423;
    --smoke: rgba(26, 15, 10, 0.7);
    --shadow-warm: 0 20px 60px -10px rgba(193, 39, 45, 0.35);
    --shadow-deep: 0 25px 70px -15px rgba(26, 15, 10, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Noise overlay for texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(255, 248, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 39, 45, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 248, 236, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Rakkas', serif;
    font-size: 28px;
    color: var(--charcoal);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-flame {
    font-size: 32px;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.6));
    animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { transform: scale(1) rotate(-2deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.logo-text {
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--flame-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--flame-red);
}

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

.btn-order {
    background: var(--charcoal);
    color: var(--cream);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    transition: right 0.4s ease;
    z-index: -1;
}

.btn-order:hover::before {
    right: 0;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 39, 45, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(255, 210, 63, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(193, 39, 45, 0.08) 0%, transparent 50%),
        var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-flame {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse, 
        rgba(255, 107, 53, 0.2) 0%, 
        rgba(247, 147, 30, 0.08) 30%,
        transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    color: var(--cream);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-warm);
    animation: slideInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Rakkas', serif;
    font-size: clamp(56px, 9vw, 128px);
    line-height: 0.95;
    color: var(--charcoal);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease both;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-highlight {
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--flame-orange) 50%, var(--flame-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 0.1em;
    transform: rotate(-2deg);
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    right: 0;
    width: 100%;
    height: 8px;
    background: var(--flame-yellow);
    opacity: 0.3;
    border-radius: 100px;
    z-index: -1;
}

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

.hero-subtitle {
    font-size: 19px;
    color: var(--ash);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
    animation: slideInUp 0.8s ease 0.7s both;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: slideInUp 0.8s ease 0.9s both;
    opacity: 0;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--cream);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--charcoal);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary:hover {
    border-color: var(--flame-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(193, 39, 45, 0.4);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(-6px);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--charcoal);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-3px);
}

.btn-large {
    padding: 22px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: slideInUp 0.8s ease 1.1s both;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Rakkas', serif;
    font-size: 36px;
    color: var(--flame-red);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--ash);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--ash);
    opacity: 0.3;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInUp 1s ease 0.3s both;
    opacity: 0;
}

.image-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 210, 63, 0.4) 0%,
        rgba(255, 107, 53, 0.3) 40%,
        rgba(193, 39, 45, 0.1) 70%,
        transparent 100%);
    filter: blur(30px);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-burger {
    position: relative;
    z-index: 2;
    width: 520px;
    height: 520px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-deep);
    border: 8px solid var(--cream);
    animation: floatBurger 6s ease-in-out infinite;
}

@keyframes floatBurger {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-badge {
    position: absolute;
    background: var(--cream);
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-deep);
    z-index: 3;
    border: 2px solid var(--charcoal);
}

.badge-icon {
    font-size: 18px;
}

.badge-1 {
    top: 50px;
    left: -20px;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 100px;
    left: -40px;
    animation: floatBadge 4s ease-in-out 1.5s infinite;
    background: var(--flame-red);
    color: var(--cream);
    border-color: var(--flame-red);
}

.badge-3 {
    top: 40%;
    right: -30px;
    animation: floatBadge 4s ease-in-out 0.7s infinite;
    background: var(--flame-yellow);
    border-color: var(--charcoal);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--ash);
    letter-spacing: 2px;
    animation: slideInUp 0.8s ease 1.5s both;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ash), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--charcoal);
    padding: 24px 0;
    overflow: hidden;
    border-top: 3px solid var(--flame-orange);
    border-bottom: 3px solid var(--flame-orange);
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: var(--cream);
    font-family: 'Rakkas', serif;
    font-size: 32px;
    letter-spacing: 1px;
}

.marquee-track span:nth-child(even) {
    color: var(--flame-orange);
    font-size: 20px;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 64px;
    max-width: 700px;
}

.section-header.centered {
    margin: 0 auto 64px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--flame-red);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    padding-right: 24px;
}

.section-tag::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background: var(--flame-red);
}

.section-title {
    font-family: 'Rakkas', serif;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-desc {
    font-size: 18px;
    color: var(--ash);
    line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 120px 0;
    position: relative;
}

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

.menu-card {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(26, 15, 10, 0.06);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--flame-orange);
}

.menu-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--cream);
}

.menu-card.featured .menu-info h3 {
    color: var(--cream);
}

.menu-card.featured .menu-info p {
    color: rgba(255, 248, 236, 0.75);
}

.menu-card.featured .menu-price {
    color: var(--flame-yellow);
}

.menu-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--flame-red);
    color: var(--cream);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(193, 39, 45, 0.4);
}

.badge-spicy {
    background: linear-gradient(135deg, #FF3B30, #FF6B35);
}

.badge-new {
    background: linear-gradient(135deg, var(--flame-yellow), var(--flame-amber));
    color: var(--charcoal);
}

.menu-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--cream-dark);
}

.menu-card.featured .menu-image {
    height: 100%;
    min-height: 320px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.08) rotate(-2deg);
}

.menu-info {
    padding: 28px;
}

.menu-card.featured .menu-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.menu-info h3 {
    font-family: 'Rakkas', serif;
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 400;
}

.menu-card.featured .menu-info h3 {
    font-size: 40px;
}

.menu-info p {
    color: var(--ash);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed rgba(107, 68, 35, 0.2);
}

.menu-price {
    font-family: 'Rakkas', serif;
    font-size: 28px;
    color: var(--flame-red);
    font-weight: 400;
}

.btn-add {
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.menu-card.featured .btn-add {
    background: var(--flame-orange);
}

.btn-add:hover {
    background: var(--flame-red);
    transform: scale(1.05);
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    filter: blur(80px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about-images {
    position: relative;
    height: 620px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 4px solid var(--cream);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 4px solid var(--flame-orange);
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sticker {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 140px;
    height: 140px;
    background: var(--flame-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transform: rotate(-15deg);
    box-shadow: var(--shadow-deep);
    animation: stickerSpin 8s linear infinite;
    border: 3px solid var(--charcoal);
    z-index: 3;
}

@keyframes stickerSpin {
    from { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    to { transform: rotate(-15deg); }
}

.sticker-year {
    font-family: 'Rakkas', serif;
    font-size: 36px;
    line-height: 1;
}

.sticker-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content .section-title {
    color: var(--cream);
}

.about-lead {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--cream);
    font-weight: 500;
}

.about-content p {
    color: rgba(255, 248, 236, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 248, 236, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 248, 236, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--flame-orange);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Reem Kufi', sans-serif;
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-text p {
    color: rgba(255, 248, 236, 0.6);
    font-size: 13px;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(26, 15, 10, 0.08);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    color: var(--cream);
    box-shadow: var(--shadow-warm);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-number {
    color: rgba(255, 248, 236, 0.3);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--cream);
}

.service-number {
    font-family: 'Rakkas', serif;
    font-size: 72px;
    color: rgba(193, 39, 45, 0.1);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: color 0.3s ease;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--ash);
    font-size: 15px;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--cream-dark);
    position: relative;
}

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

.testimonial {
    background: var(--cream);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(26, 15, 10, 0.06);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.featured-testimonial {
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    color: var(--cream);
    transform: scale(1.05);
}

.featured-testimonial p,
.featured-testimonial h4 {
    color: var(--cream);
}

.featured-testimonial span {
    color: rgba(255, 248, 236, 0.8);
}

.stars {
    color: var(--flame-yellow);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-weight: 500;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-family: 'Rakkas', serif;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--ash);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.2), transparent 70%);
    filter: blur(60px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
}

.contact-desc {
    font-size: 17px;
    color: var(--ash);
    line-height: 1.7;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(193, 39, 45, 0.25);
}

.info-item h4 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 4px;
    font-weight: 700;
}

.info-item p {
    font-size: 15px;
    color: var(--ash);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--flame-red);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--cream);
    border-radius: 28px;
    padding: 48px;
    box-shadow: var(--shadow-deep);
    border: 2px solid rgba(26, 15, 10, 0.05);
    position: relative;
}

.form-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(107, 68, 35, 0.2);
    position: relative;
}

.form-header h3 {
    font-family: 'Rakkas', serif;
    font-size: 36px;
    color: var(--charcoal);
    font-weight: 400;
}

.form-decoration {
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--flame-red), var(--flame-orange));
    border-radius: 100px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(26, 15, 10, 0.1);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--charcoal);
    background: var(--cream);
    transition: all 0.3s ease;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--flame-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 16px;
    background: rgba(255, 210, 63, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(255, 210, 63, 0.2);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--flame-red);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--ash);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--flame-red);
    font-weight: 700;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-submit:hover::before {
    transform: translateY(0);
}

.btn-submit > * {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-warm);
}

.form-success {
    display: none;
    margin-top: 20px;
    padding: 16px;
    background: #10B981;
    color: white;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
}

.form-success.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--flame-red), var(--flame-orange), var(--flame-yellow), var(--flame-orange), var(--flame-red));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--cream);
    background: none;
    -webkit-text-fill-color: var(--cream);
}

.footer-brand p {
    color: rgba(255, 248, 236, 0.6);
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--flame-orange);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 248, 236, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--flame-orange);
}

.footer-col p {
    color: rgba(255, 248, 236, 0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(255, 248, 236, 0.15);
    border-radius: 100px;
    color: var(--cream);
    font-family: inherit;
    font-size: 14px;
    direction: rtl;
}

.newsletter input::placeholder {
    color: rgba(255, 248, 236, 0.4);
}

.newsletter input:focus {
    outline: none;
    border-color: var(--flame-orange);
}

.newsletter button {
    background: var(--flame-orange);
    color: var(--charcoal);
    border: none;
    padding: 12px 20px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--flame-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 236, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 248, 236, 0.5);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--charcoal);
    color: var(--cream);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    animation: slideInUp 0.5s ease;
    border: 2px solid var(--flame-orange);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.cookie-icon {
    font-size: 48px;
    animation: flicker 2s ease-in-out infinite;
}

.cookie-text h4 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--flame-orange);
    font-weight: 700;
}

.cookie-text p {
    font-size: 13px;
    color: rgba(255, 248, 236, 0.75);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--flame-yellow);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--flame-orange);
    color: var(--charcoal);
}

.btn-cookie-accept:hover {
    background: var(--flame-yellow);
    transform: scale(1.05);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 248, 236, 0.3);
}

.btn-cookie-reject:hover {
    background: rgba(255, 248, 236, 0.1);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--cream);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
}

.legal-header {
    margin-bottom: 48px;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px dashed rgba(107, 68, 35, 0.2);
}

.legal-header h1 {
    font-family: 'Rakkas', serif;
    font-size: clamp(40px, 6vw, 64px);
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 400;
}

.legal-header p {
    font-size: 16px;
    color: var(--ash);
}

.legal-content h2 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 26px;
    color: var(--flame-red);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 19px;
    color: var(--charcoal);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 16px;
}

.legal-content ul {
    padding-right: 24px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--flame-red);
    text-decoration: underline;
    font-weight: 500;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flame-red);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 32px;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.legal-back:hover {
    gap: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links,
    .btn-order {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        height: 400px;
        order: -1;
    }

    .hero-burger {
        width: 340px;
        height: 340px;
    }

    .image-circle {
        width: 340px;
        height: 340px;
    }

    .floating-badge {
        font-size: 11px;
        padding: 10px 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .menu-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .menu-card.featured .menu-image {
        min-height: 260px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 500px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .cookie-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: row;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .marquee-track span {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .container,
    .nav-container,
    .hero-content {
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .menu-info h3 {
        font-size: 24px;
    }

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

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