@import url('https://fonts.googleapis.com/css2?family=Chela+One&family=M+PLUS+1:wght@300;400;500;700;800;900&display=swap');

/* --- Design Tokens & Variables --- */
:root {
    /* Brand Colors */
    --primary-red: #ed1c24;
    --primary-red-rgb: 237, 28, 36;
    --primary-red-hover: #c41219;
    --accent-gold: #ffb703;
    --accent-orange: #ff5400;
    --dark-bg: #111111;
    --dark-bg-rgb: 17, 17, 17;
    --light-bg: #fdfdfd;
    --card-bg: #ffffff;
    
    /* Text Colors */
    --text-dark: #1a1a19;
    --text-light: #ffffff;
    --text-muted: #666665;
    
    /* Layout & Shadow Tokens */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(237, 28, 36, 0.12);
    
    /* Z-Index Hierarchy */
    --z-sticky: 1000;
    --z-offcanvas: 2000;
    --z-overlay: 1900;
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: 'M PLUS 1', sans-serif !important;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chela One', sans-serif !important;
    font-weight: 400 !important;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

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

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

ul {
    list-style: none;
}

/* --- Common Layout Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Topbar Styling --- */
.site-topbar {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-menu {
    display: flex;
    gap: 24px;
}

.topbar-menu a {
    opacity: 0.85;
    font-weight: 500;
}

.topbar-menu a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    opacity: 1;
    background: var(--primary-red);
    transform: translateY(-2px);
}

/* --- Sticky / Transparent Header --- */
.site-header {
    background-color: var(--primary-red);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

.site-header.scrolled {
    padding: 6px 0;
    background-color: rgba(237, 28, 36, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand img {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-brand img {
    height: 55px;
}

.navigator {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-primary {
    display: flex;
    gap: 25px;
}

.menu-primary a {
    color: var(--text-light);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.menu-primary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.menu-primary a:hover::after {
    width: 100%;
}

.header-info-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.header-info-text strong a {
    font-weight: 700;
    color: var(--card-bg);
    font-size: 15px;
}

.header-info-text strong a:hover {
    color: var(--text-light);
}

.off-canvas-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.off-canvas-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    position: relative;
    transition: var(--transition-smooth);
}

.off-canvas-toggle span::before,
.off-canvas-toggle span::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

.off-canvas-toggle span::before {
    top: -8px;
}

.off-canvas-toggle span::after {
    top: 8px;
}

.off-canvas-toggle.active span {
    background-color: transparent;
}

.off-canvas-toggle.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.off-canvas-toggle.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- Hero Banner Carousel --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--card-bg);
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    position: relative;
}

.slide img {
width: 600px;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}


/* Slider Overlays & Titles */
.slider-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    width: 90%;
    max-width: 800px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}

.slide.active .slider-caption {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.slider-caption h2 {
    font-size: 5rem;
    line-height: 1.1;
    color: var(--accent-gold);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 183, 3, 0.3);
    margin-bottom: 15px;
    transform: rotate(-1.5deg);
}

.slider-caption p {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    background: rgba(237, 28, 36, 0.8);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: scale(1.15);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--primary-red);
    border-color: var(--accent-gold);
    transform: scale(1.3);
}

/* --- Section Design Details --- */
.menu-intro-section {
    padding: 80px 0 50px 0;
    background-color: var(--light-bg);
    position: relative;
}

.menu-intro-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-tag {
    font-family: 'Chela One', sans-serif;
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-red);
    position: relative;
}

.section-title::after {
    content: '🔥';
    font-size: 2.2rem;
    position: absolute;
    right: -45px;
    top: 5px;
    animation: flamePulse 1.5s infinite ease-in-out;
}

@keyframes flamePulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(5deg); opacity: 1; filter: drop-shadow(0 0 10px rgba(255, 84, 0, 0.4)); }
    100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
}

.menu-description {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.menu-description a {
    color: var(--primary-red);
    font-weight: 700;
    border-bottom: 2px dashed rgba(237, 28, 36, 0.3);
}

.menu-description a:hover {
    color: var(--primary-red-hover);
    border-bottom-color: var(--primary-red-hover);
}

/* --- Interactive Food Grid (Premium Showcase) --- */
.showcase-section {
    padding: 30px 0 80px 0;
    background-color: var(--light-bg);
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.food-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(237, 28, 36, 0.15);
}

.food-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.food-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.food-card:hover .food-image-wrapper img {
    transform: scale(1.08);
}

.spice-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.spice-badge.insane {
    background: linear-gradient(135deg, #d90429 0%, #ef233c 100%);
    border: 1px solid var(--accent-gold);
}

.spice-badge.hot {
    background-color: var(--primary-red);
}

.spice-badge.mild {
    background-color: #38b000;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--accent-gold);
    font-family: 'Chela One', sans-serif;
    font-size: 1.6rem;
    padding: 4px 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

.food-info {
    padding: 25px;
}

.food-info h3 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.food-info p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Spice selector component */
.spice-level-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.spice-level-selector span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spice-options {
    display: flex;
    gap: 6px;
}

.spice-btn {
    background: #f0f0f0;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 700;
}

.spice-btn.active {
    background: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 2px 6px rgba(237, 28, 36, 0.3);
}

.food-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-btn {
    width: 100%;
    background-color: var(--primary-red);
    color: var(--text-light);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.15);
}

.order-btn:hover {
    background-color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* --- Locations Page Styles (Find Zangos) --- */
.locations-page {
    background-color: #ffffff;
    padding: 40px 0 70px 0;
    min-height: 60vh;
}

.locations-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-country-section {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.country-banner {
    background-color: var(--primary-red);
    border-radius: 4px;
    padding: 12px 20px;
    box-shadow: 0 4px 14px rgba(237, 28, 36, 0.2);
}

.country-banner h2 {
    color: #ffffff;
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.85rem;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.15;
    font-weight: 400;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    border: 1.5px solid #222222;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 24px 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-card-body {
    display: flex;
    flex-direction: column;
}

.location-title {
    color: var(--primary-red);
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: 0.3px;
    font-weight: 400;
    margin-top: 10px;
}

.location-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #222222;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 500;
    line-height: 1.45;
}

.location-detail-item .detail-icon {
    color: var(--primary-red);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-detail-item .detail-text {
    color: #222222;
    font-weight: 500;
}

.location-detail-item .detail-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-detail-item .detail-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* Saudi Arabia simple single card */
.location-card.location-card-simple {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
}

.location-title-simple {
    color: var(--primary-red);
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.55rem;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* --- Story Page Styles (Our Story) --- */
.story-page {
    background-color: #ffffff;
    padding: 35px 0 70px 0;
    position: relative;
    overflow: hidden;
}

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

.story-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 45px;
}

.story-main-title {
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.story-scroll-down {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #d1f2e8;
    color: #183e35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.story-scroll-down:hover {
    background-color: #bbf7e6;
    transform: translateY(-50%) translateY(3px);
}

.story-grid-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.story-text-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.story-subtitle {
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.65rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.3px;
    margin: 0;
}

.story-subtitle .highlight-red {
    color: var(--primary-red);
}

.story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.story-paragraphs p {
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    color: #333333;
    font-weight: 500;
    margin: 0;
}

/* Media Collage Composition */
.story-media-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.story-red-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 95%;
    height: 92%;
    border: 3.5px solid var(--primary-red);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}


.story-img-overlay {
    position: absolute;
    bottom: -35px;
    left: -25px;
    width: 74%;
    z-index: 3;
    background: #181818 url('https://images.unsplash.com/photo-1565123409695-7b5ef63a2efb?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
    border-radius: 6px;
    padding: 30px 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border: 2px solid #333;
    filter: grayscale(100%) contrast(115%);
    min-height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-img-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.truck-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.truck-brand-badge {
    text-align: center;
}

.truck-logo-text {
    display: block;
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.85rem;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.truck-sub-text {
    display: block;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #e0e0e0;
    letter-spacing: 1.5px;
}

.truck-status-tags {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.truck-status-tags .status-tag {
    background: rgba(255, 255, 255, 0.85);
    color: #111;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 800;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.story-bottom-tagline {
    margin-top: 65px;
    margin-bottom: 20px;
}

.story-bottom-tagline h2 {
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 2.85rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.15;
}

/* --- Contact Page Styles (Contact Us) --- */
.contact-page {
    background-color: #ffffff;
    padding: 35px 0 70px 0;
}

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

.contact-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-sec-title {
    font-family: 'Chela One', cursive, sans-serif;
    font-size: 1.85rem;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.contact-sec-subtitle {
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
    margin-bottom: 25px;
}

.contact-address-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 13.5px;
    color: #222222;
    font-weight: 600;
    line-height: 1.45;
}

.contact-address-item .contact-icon {
    color: #1a1a1a;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-address-item .contact-link {
    color: #222222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-address-item .contact-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.contact-map-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.contact-map-card iframe {
    display: block;
    width: 100%;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.contact-form .required-star {
    color: var(--primary-red);
    font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    background-color: #fafafa;
    border-radius: 4px;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14px;
    color: #222222;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #888888;
    background-color: #ffffff;
}

.message-field-container {
    display: flex;
    flex-direction: column;
    border: 1.5px solid #222222;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
}

.message-field-container textarea {
    width: 100%;
    border: none;
    padding: 14px;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 14px;
    color: #222222;
    resize: vertical;
    min-height: 120px;
    outline: none;
    background: #ffffff;
}

.contact-submit-btn {
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    font-family: 'M PLUS 1', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    width: 100%;
}

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

/* --- Footer Section (Screenshot Matched) --- */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 70px 0 35px 0;
    position: relative;
}

.footer-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.footer-cta-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'M PLUS 1', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-cta-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta-item:hover .cta-icon-circle {
    transform: scale(1.06);
}

.cta-icon-circle.red-circle {
    background-color: #e50914;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.35);
}

.cta-icon-circle.outline-circle {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social-circles {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-circles a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.footer-social-circles a:hover {
    background-color: #e50914;
    color: #ffffff;
    transform: translateY(-2px);
}

.copyright-content {
    font-size: 13.5px;
    color: #b0b0b0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.go-to-top a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #d1f2e8;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.go-to-top a:hover {
    background-color: #b9eedf;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(209, 242, 232, 0.35);
}

/* --- Off-Canvas Sliding Right Drawer Menu (Mobile & Tablet) --- */
.off-canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.off-canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.off-canvas-right {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--dark-bg);
    box-shadow: -8px 0 35px rgba(0, 0, 0, 0.35);
    z-index: var(--z-offcanvas);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
}

.off-canvas-right.active {
    transform: translateX(-320px);
}

.off-canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.off-canvas-logo img {
    height: 60px;
    width: auto;
}

.close-off-canvas {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-off-canvas:hover {
    background-color: rgba(255,255,255,0.08);
    color: var(--primary-red);
}

.menu-sliding {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-sliding li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0px;
}

.menu-sliding a {
    color: var(--text-light);
    font-family: 'Chela One', sans-serif !important;
    font-size: 2.2rem;
    display: block;
    letter-spacing: 0.5px;
}

.menu-sliding a:hover,
.menu-sliding .current-menu-item a {
    color: var(--primary-red);
    padding-left: 0px;
}

.off-canvas-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 13px;
}

.off-canvas-contact p {
    margin-bottom: 5px;
}

.off-canvas-contact strong a {
    color: var(--accent-orange);
    font-size: 15px;
}

/* --- Media Queries (Responsive Styling) --- */

@media (max-width: 1024px) {
    .slider-caption h2 {
        font-size: 3.8rem;
    }
    .slider-caption p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Topbar Adjustment */
    .site-topbar {
        display: none; /* Hide topbar on mobile to save precious screen space */
    }
    
    /* Header Toggle */
    .menu-primary,
    .header-info-text {
        display: none !important; /* Managed via Mobile sliding menu */
    }
    
    .off-canvas-toggle {
        display: block; /* Hamburger becomes visible */
    }
    
    .slider-caption h2 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    }
    
    .slider-caption p {
        font-size: 1rem;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    /* Typography & Spacing */
    .menu-intro-section {
        padding: 50px 0 30px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-title::after {
        font-size: 1.6rem;
        right: -30px;
        top: 2px;
    }
    
    .menu-description {
        font-size: 15px;
    }
    
    /* Food card layout */
    .showcase-section {
        padding: 10px 0 60px 0;
    }
    
    .grid-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Locations Page Mobile */
    .locations-page {
        padding: 25px 0 50px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .location-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .country-banner {
        padding: 10px 16px;
    }

    .country-banner h2 {
        font-size: 1.45rem;
    }

    /* Story Page Mobile */
    .story-page {
        padding: 25px 0 50px 0;
    }

    .story-main-title {
        font-size: 2.6rem;
    }

    .story-grid-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-media-column {
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .story-img-overlay {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 15px;
    }

    .story-frame-wrapper {
        padding: 0;
        max-width: 100%;
    }

    .story-red-frame {
        display: none;
    }

    .story-bottom-tagline {
        margin-top: 35px;
        text-align: center;
    }

    .story-bottom-tagline h2 {
        font-size: 2.2rem;
    }

    /* Contact Page Mobile */
    .contact-page {
        padding: 25px 0 50px 0;
    }

    .contact-grid-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer Mobile Optimization */
    .site-footer {
        padding: 50px 0 30px 0;
    }

    .footer-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 35px;
    }

    .footer-cta-item {
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 25px;
        align-items: center;
        text-align: center;
    }

    .footer-left-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .footer-social-circles {
        justify-content: center;
    }
div#back-to-top-anchor {
    position: absolute;
    right: 19px;
    bottom: 87px;
}
}
