/* Root Variables - Navy & Purple Theme (Brand Colors) */
:root {
    --primary-color: #1a3a6e;
    --primary-dark: #0f2347;
    --primary-light: #2d5492;
    --secondary-color: #8B1B5C;
    --accent-color: #8B1B5C;
    --accent-dark: #6B1547;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e8e8e8;
    --primary-gradient: linear-gradient(135deg, #1a3a6e 0%, #2d5492 100%);
    --primary-gradient-soft: linear-gradient(135deg, rgba(26, 58, 110, 0.1) 0%, rgba(45, 84, 146, 0.05) 100%);
    --accent-gradient: linear-gradient(135deg, #8B1B5C 0%, #6B1547 100%);
    --gold-gradient: linear-gradient(135deg, #1a3a6e 0%, #2d5492 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(26, 58, 110, 0.1) 0%, rgba(45, 84, 146, 0.05) 100%);
}

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

body {
    font-family: 'Noto Sans JP', 'Rubik', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', 'M PLUS Rounded 1c', 'Rubik', serif;
    font-weight: 700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Premium Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Elegant Navbar - Desktop Traditional / Mobile Hamburger */
.navbar-elegant {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(139, 27, 92, 0.9) 0%, rgba(107, 21, 71, 0.85) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-elegant-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.navbar-logo {
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Desktop Navigation Links - Always visible on desktop */
.navbar-desktop-nav {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-desktop-link {
    font-family: 'Rubik', 'Noto Sans Hebrew', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop-link:hover {
    color: #fff;
    background: rgba(139, 27, 92, 0.2);
}

.nav-desktop-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #8B1B5C;
    transition: width 0.3s ease;
}

.nav-desktop-link:hover::after {
    width: 80%;
}

.nav-lang-link {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
}

.nav-lang-link:hover {
    border-color: rgba(139, 27, 92, 0.5);
    background: rgba(139, 27, 92, 0.15);
}

/* Simple Hamburger Button - Hidden on desktop, visible on mobile */
.hamburger-elegant {
    display: none !important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0.7rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    height: 44px;
    width: 44px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hamburger-elegant:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Simple Semi-Transparent Menu Overlay */
.elegant-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
    z-index: 2000 !important;
    opacity: 0;
    visibility: hidden;
    display: none !important;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.elegant-menu-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.elegant-menu-content {
    background: rgba(139, 27, 92, 0.75) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    max-width: 400px !important;
    width: 90% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    transform: scale(0.9) !important;
    opacity: 0;
    transition: all 0.25s ease !important;
    position: relative !important;
}

.elegant-menu-overlay.show .elegant-menu-content {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.elegant-menu-header {
    padding: 1rem 1.5rem 0.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

html[dir="rtl"] .elegant-menu-header,
.rtl .elegant-menu-header {
    justify-content: flex-start;
}

.elegant-menu-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.elegant-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.elegant-menu-nav {
    padding: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
}

.elegant-menu-link {
    font-family: 'Rubik', 'Noto Sans Hebrew', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 2rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.elegant-menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.elegant-menu-link:active {
    background: rgba(255, 255, 255, 0.25);
}

.elegant-menu-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.elegant-menu-lang {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.elegant-menu-lang:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    /* Hide desktop nav, show hamburger on tablets/mobile */
    .navbar-desktop-nav {
        display: none !important;
    }
    
    .hamburger-elegant {
        display: flex !important;
    }
    
    .navbar-elegant-container {
        padding: 0.5rem 1.5rem;
        min-height: 55px;
    }
    
    .navbar-logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .navbar-elegant-container {
        padding: 0.5rem 1rem !important;
        min-height: 60px !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .navbar-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        max-width: calc(100% - 120px) !important;
        overflow: visible !important;
    }
    
    .hamburger-elegant {
        position: absolute !important;
        right: 1rem !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    
    /* For LTR, hamburger on left */
    html[dir="ltr"] .hamburger-elegant {
        right: auto !important;
        left: 1rem !important;
    }
    
    .navbar-logo-img {
        height: auto !important;
        max-height: 45px !important;
        max-width: 100% !important;
        width: auto !important;
        object-fit: contain !important;
    }
    
    .elegant-menu-content {
        width: 85%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .navbar-elegant-container {
        padding: 0.5rem 0.75rem !important;
        min-height: 55px !important;
    }
    
    .navbar-logo {
        max-width: calc(100% - 100px) !important;
    }
    
    .navbar-logo-img {
        height: auto !important;
        max-height: 38px !important;
        max-width: 100% !important;
        width: auto !important;
    }
    
    .hamburger-elegant {
        right: 0.75rem !important;
        left: auto !important;
        width: 40px;
        height: 40px;
        padding: 0.6rem;
    }
    
    /* For LTR on small screens */
    html[dir="ltr"] .hamburger-elegant {
        right: auto !important;
        left: 0.75rem !important;
    }
    
    .elegant-menu-content {
        width: 90%;
    }
    
    .elegant-menu-link {
        font-size: 1.05rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Old navbar styles - keep for compatibility */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0 !important;
    }
    .navbar > .container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }
    .navbar-brand {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .navbar-toggler {
        padding: 0.4rem 0.5rem !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile Menu Dropdown - Compact Design */
    .navbar .navbar-collapse {
        width: 100% !important;
        flex-basis: 100% !important;
        flex-grow: 1 !important;
    }
    
    .navbar .navbar-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }
    
    .navbar .navbar-collapse.show,
    .navbar .navbar-collapse.collapsing {
        display: block !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        background-color: #ffffff !important;
        border-radius: 0 0 8px 8px !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0 !important;
    }
    
    .navbar .navbar-nav {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar .navbar-nav .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(26, 58, 110, 0.05) !important;
        margin: 0 !important;
    }
    
    .navbar .navbar-nav .nav-item:last-child {
        border-bottom: none !important;
    }
    
    .navbar .navbar-nav .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem !important;
        text-align: right !important;
        transition: background-color 0.2s !important;
        margin: 0 !important;
    }
    
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link:focus {
        background-color: rgba(26, 58, 110, 0.05) !important;
    }
    
    .navbar .navbar-nav .cart-link {
        border-top: 2px solid rgba(26, 58, 110, 0.1) !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 50px;
    }
    .navbar-brand .brand-text {
        font-size: 0.95rem;
        margin-left: 0.4rem;
        letter-spacing: 0.5px;
        line-height: 1;
    }
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    text-shadow: 0 0 8px rgba(139, 27, 92, 0.3);
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.lang-toggle {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a6e 0%, #2d5492 50%, #1a3a6e 100%);
}

/* Desktop Hero Background - Luxury Image with Dramatic Overlay */
.hero-desktop-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Parallax Background Image */
.hero-image-layer {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    z-index: 1;
    transform: scale(1);
    animation: heroZoomIn 1.5s ease-out;
}

@keyframes heroZoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

/* Dramatic Gradient Overlays */
.hero-gradient-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 35, 71, 0.85) 0%,
        rgba(26, 58, 110, 0.65) 30%,
        rgba(45, 84, 146, 0.45) 50%,
        rgba(139, 27, 92, 0.25) 100%);
    z-index: 2;
    mix-blend-mode: multiply;
}

.hero-gradient-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        transparent 0%,
        rgba(15, 35, 71, 0.4) 100%);
    z-index: 3;
}

/* Vignette Effect */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        transparent 20%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 4;
}

/* Animated Light Rays */
.hero-light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 300px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(139, 27, 92, 0.3) 50%,
        transparent 100%);
    opacity: 0;
    animation: lightRayAnimation 8s ease-in-out infinite;
    filter: blur(1px);
}

.light-ray-1 {
    left: 20%;
    top: -300px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.light-ray-2 {
    left: 50%;
    top: -300px;
    animation-delay: 2.5s;
    transform: rotate(-10deg);
}

.light-ray-3 {
    left: 75%;
    top: -300px;
    animation-delay: 5s;
    transform: rotate(-20deg);
}

@keyframes lightRayAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        opacity: 0.4;
        transform: translateY(100vh) rotate(-15deg);
    }
}

/* Premium Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
    left: 15%;
    top: 20%;
    animation-delay: 0s;
}

.particle-2 {
    left: 70%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle-3 {
    left: 30%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 12s;
}

.particle-4 {
    left: 85%;
    top: 25%;
    animation-delay: 9s;
}

.particle-5 {
    left: 50%;
    top: 60%;
    animation-delay: 12s;
    animation-duration: 20s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
}

/* Hero background displays on both mobile and desktop */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(10, 10, 10, 0.45), rgba(20, 20, 20, 0.35));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7), 0 0 30px rgba(139, 27, 92, 0.5);
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6), 0 0 20px rgba(26, 58, 110, 0.4);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-hero {
    background: var(--accent-gradient);
    color: white;
    border: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-hero:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 27, 92, 0.6);
    border-color: var(--accent-dark);
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-hero:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
    border-color: white;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

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

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.menu-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dietary-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dietary-icon {
    font-size: 1.2rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control, .form-select {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25);
}

/* Cart */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Compact Footer */
.footer-compact {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    border-top: 2px solid var(--primary-color);
}

.footer-logo-small {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-brand-small {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.footer-social-compact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon-compact:hover {
    background: var(--primary-gradient);
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Elegant Blackish Footer */
.footer-sitemap {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-sitemap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 27, 92, 0.5), transparent);
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.footer-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 27, 92, 0.8), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 300;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(139, 27, 92, 0.8);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-contact i {
    color: rgba(139, 27, 92, 0.8);
    margin-top: 0.2rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(139, 27, 92, 0.15);
    color: #ffffff;
    border-color: rgba(139, 27, 92, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 27, 92, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .footer-sitemap .col-md-3 {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* Branches Accordion */
.branches-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.branch-accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.branch-accordion-button {
    background: white;
    color: #333;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s;
}

.branch-accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
    box-shadow: none;
}

.branch-accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.2);
    border: none;
    outline: none;
}

.branch-accordion-button i {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.branch-accordion-button:not(.collapsed) i {
    color: white;
}

.branch-accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
}

.branch-detail-accordion {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.branch-detail-accordion i {
    color: var(--primary-color);
}

.branch-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.branch-link:hover {
    text-decoration: underline;
}

.hours-title-accordion {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hours-list-accordion {
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.hours-item-accordion {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-item-accordion:last-child {
    border-bottom: none;
}

.hours-item-accordion .day-name {
    font-weight: 600;
    color: #333;
}

.hours-item-accordion .time-range {
    color: var(--primary-color);
    font-weight: 500;
}

.branch-actions-accordion .btn {
    font-size: 0.9rem;
}

/* Branch Cards */
.branch-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.branch-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.2);
}

.branch-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.branch-address,
.branch-phone {
    color: #666;
    margin-bottom: 0.75rem;
}

.branch-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.branch-phone a:hover {
    text-decoration: underline;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--accent-gradient);
    color: white;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-cta .btn-light {
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.contact-cta .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Floating Action Buttons - Redesigned */
.floating-actions {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.rtl .floating-actions {
    right: auto;
    left: 35px;
}

.fab-button {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

/* Glassmorphic shine effect */
.fab-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.5s ease;
}

.fab-button:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(0, 0) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(50%, 50%) scale(1);
        opacity: 0;
    }
}

/* Ripple effect on click */
.fab-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fab-button:active::after {
    width: 200px;
    height: 200px;
}

/* Icon pulse animation */
.fab-button i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.fab-button:hover i {
    transform: scale(1.15);
}

/* Individual button styles with elegant gradients */
.fab-table-order {
    background: 
        linear-gradient(135deg, 
            rgba(15, 15, 15, 0.95) 0%, 
            rgba(30, 30, 30, 0.95) 50%,
            rgba(20, 20, 20, 0.95) 100%
        );
    border-color: rgba(212, 165, 116, 0.3);
}

.fab-table-order:hover {
    background: 
        linear-gradient(135deg, 
            rgba(212, 165, 116, 0.2) 0%,
            rgba(15, 15, 15, 0.98) 50%,
            rgba(20, 20, 20, 0.98) 100%
        );
    border-color: rgba(212, 165, 116, 0.6);
    box-shadow: 
        0 12px 40px rgba(212, 165, 116, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(212, 165, 116, 0.2);
}

.fab-delivery {
    background: 
        linear-gradient(135deg, 
            rgba(20, 20, 20, 0.95) 0%, 
            rgba(35, 35, 35, 0.95) 50%,
            rgba(25, 25, 25, 0.95) 100%
        );
    border-color: rgba(212, 165, 116, 0.25);
}

.fab-delivery:hover {
    background: 
        linear-gradient(135deg, 
            rgba(212, 165, 116, 0.15) 0%,
            rgba(20, 20, 20, 0.98) 50%,
            rgba(25, 25, 25, 0.98) 100%
        );
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 
        0 12px 40px rgba(212, 165, 116, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(212, 165, 116, 0.15);
}

.fab-call {
    background: 
        linear-gradient(135deg, 
            #d4a574 0%, 
            #c99563 50%,
            #be8a58 100%
        );
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(212, 165, 116, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.fab-call:hover {
    background: 
        linear-gradient(135deg, 
            #e0b586 0%, 
            #d4a574 50%,
            #c99563 100%
        );
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 14px 45px rgba(212, 165, 116, 0.7),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    transform: translateY(-8px) scale(1.12) rotate(3deg);
}

/* Hover state for all buttons */
.fab-button:hover {
    transform: translateY(-6px) scale(1.1) rotate(2deg);
}

.fab-button:active {
    transform: translateY(-3px) scale(1.05);
    transition: all 0.1s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 25px;
        right: 25px;
        gap: 0.85rem;
    }
    
    .rtl .floating-actions {
        right: auto;
        left: 25px;
    }
    
    .fab-button {
        width: 58px;
        height: 58px;
        font-size: 1.3rem;
        border-radius: 15px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 0.75rem;
    }
    
    .rtl .floating-actions {
        right: auto;
        left: 20px;
    }
    
    .fab-button {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
        border-radius: 14px;
    }
}

/* Working Hours */
.working-hours {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.hours-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-align: center;
}

.hours-list {
    font-size: 0.9rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-item:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: #333;
}

.time-range {
    color: #666;
}

.time-range.closed {
    color: #8B1B5C;
    font-style: italic;
}

/* Story Section - About + Reservation Combined */
.story-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.story-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/reservation-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.story-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a3a6e;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

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

.story-text {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 4rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    white-space: pre-line;
}

.story-cta {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    display: none; /* Temporarily hidden */
}

.story-cta-text {
    font-size: 1.4rem;
    color: #1a3a6e;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.btn-story-reserve {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: #1a3a6e;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-story-reserve:hover {
    background: #8B1B5C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 27, 92, 0.4);
}

/* Unified CTA Container */
.cta-container {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.03) 0%, rgba(26, 58, 110, 0.08) 100%);
    border: 2px solid rgba(26, 58, 110, 0.1);
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    color: #1a3a6e;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B1B5C, transparent);
    margin: 0 auto;
}

.cta-options {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.cta-option {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1.5rem;
}

.option-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(26, 58, 110, 0.2), transparent);
    margin: 0 1rem;
}

.option-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #1a3a6e 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 3px 10px rgba(26, 58, 110, 0.25);
}

.option-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    color: #1a3a6e;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.option-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.btn-cta-action {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: #1a3a6e;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 58, 110, 0.2);
}

.btn-cta-action:hover {
    background: #8B1B5C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 27, 92, 0.35);
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid #1a3a6e;
    color: #1a3a6e;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.app-badge:hover {
    background: #1a3a6e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.25);
}

.app-badge i {
    font-size: 1.1rem;
}

.app-badge span {
    font-size: 0.85rem;
}

/* Custom Sections */
.custom-section {
    padding: 4rem 0;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.embed-content {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.embed-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Contact Page Modern Design */
.contact-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #1a3a6e 0%, #2c5aa0 100%);
    color: white;
}

.contact-hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header i {
    font-size: 3rem;
    color: #1a3a6e;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: #1a3a6e;
    margin: 0;
}

.modern-contact-form .form-floating > label {
    padding: 1rem 0.75rem;
}

.modern-contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.modern-contact-form .form-control:focus {
    border-color: #1a3a6e;
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 110, 0.15);
}

.contact-methods h3,
.branch-locations h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    color: #1a3a6e;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3a6e 0%, #2c5aa0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.method-content h5 {
    font-size: 1.1rem;
    color: #1a3a6e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.method-content a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #8B1B5C;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #1a3a6e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1a3a6e;
    color: white;
    transform: translateY(-2px);
}

.branch-location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.branch-location-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.branch-header i {
    color: #8B1B5C;
    font-size: 1.5rem;
}

.branch-header h5 {
    font-size: 1.2rem;
    color: #1a3a6e;
    margin: 0;
    font-weight: 600;
}

.branch-address {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.branch-nav-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.branch-nav-buttons .btn {
    border-radius: 8px;
}

/* Coming Soon Order Page */
.coming-soon-box {
    background: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.coming-soon-icon {
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon i {
    font-size: 5rem;
    color: #1a3a6e;
    background: linear-gradient(135deg, #1a3a6e 0%, #8B1B5C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.coming-soon-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    color: #1a3a6e;
    font-weight: 600;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-preview-card {
    background: #f8f9fa;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-preview-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3a6e 0%, #2c5aa0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-preview-card h4 {
    font-size: 1.3rem;
    color: #1a3a6e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-preview-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.newsletter-teaser {
    padding-top: 2.5rem;
    border-top: 2px solid #e0e0e0;
}

.newsletter-teaser p {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.newsletter-teaser .btn-link {
    color: #1a3a6e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.newsletter-teaser .btn-link:hover {
    color: #8B1B5C;
    border-bottom-color: #8B1B5C;
}

/* Footer Newsletter */
.footer-newsletter-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.newsletter-email-input {
    width: 100%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.newsletter-email-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-email-input:focus {
    border-color: white;
    background: rgba(255,255,255,0.15);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.newsletter-submit-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Accessibility Button */
.accessibility-button {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 58, 110, 0.3);
    z-index: 998;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

body.rtl .accessibility-button {
    right: auto;
    left: 20px;
}

.accessibility-button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 27, 92, 0.4);
}

.accessibility-button i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.accessibility-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accessibility Menu */
.accessibility-menu {
    position: fixed;
    top: 120px;
    right: 100px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 997;
    width: 350px;
    max-height: 80vh;
    overflow-y: auto;
}

body.rtl .accessibility-menu {
    right: auto;
    left: 100px;
}

.accessibility-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    background: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
}

.accessibility-menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.accessibility-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accessibility-close:hover {
    background: rgba(255,255,255,0.2);
}

.accessibility-menu-content {
    padding: 1rem;
}

.accessibility-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.accessibility-option:last-child {
    border-bottom: none;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #333;
}

.option-label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.option-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
}

.toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    color: var(--secondary-color);
}

.toggle-btn.active i:before {
    content: "\f205";
}

.reset-option {
    justify-content: center;
    padding-top: 1.5rem;
}

.reset-all-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reset-all-btn:hover {
    background: #6B1547;
    transform: translateY(-2px);
}

.statement-link {
    justify-content: center;
    padding-top: 0.5rem;
}

.statement-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.statement-btn:hover {
    background: #15325e;
    color: white;
    transform: translateY(-2px);
}

/* Accessibility Features */
body.high-contrast {
    filter: contrast(150%);
}

body.grayscale {
    filter: grayscale(100%);
}

body.readable-font * {
    font-family: Arial, sans-serif !important;
}

body.highlight-links a {
    background: yellow !important;
    color: black !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .accessibility-button {
        width: 55px;
        height: 55px;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        z-index: 1001;
    }
    
    body.rtl .accessibility-button {
        right: auto;
        left: 10px;
    }
    
    .accessibility-button:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .accessibility-button i {
        font-size: 1.5rem;
    }
    
    .accessibility-text {
        font-size: 0.5rem;
    }
    
    .accessibility-menu {
        top: 50%;
        transform: translateY(-50%);
        right: 75px;
        left: 15px;
        width: auto;
        max-width: 320px;
    }
    
    body.rtl .accessibility-menu {
        left: 75px;
        right: 15px;
    }
    
    .option-label {
        font-size: 0.9rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-link {
    color: #4db8ff;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.cookie-link:hover {
    color: #80cfff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    white-space: nowrap;
}

/* Accessibility Statement Page */
.accessibility-statement-page {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.accessibility-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    color: #1a3a6e;
    margin-bottom: 2rem;
    border-bottom: 3px solid #1a3a6e;
    padding-bottom: 1rem;
}

.statement-content h2 {
    font-size: 1.8rem;
    color: #1a3a6e;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.statement-content p,
.statement-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.statement-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.statement-content li {
    margin-bottom: 1rem;
}

.statement-content strong {
    color: #1a3a6e;
    font-weight: 600;
}

.coordinator-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1a3a6e;
    margin: 2rem 0;
}

.coordinator-info p {
    margin-bottom: 0.75rem;
}

.coordinator-info a {
    color: #1a3a6e;
    text-decoration: none;
    font-weight: 600;
}

.coordinator-info a:hover {
    color: #8B1B5C;
    text-decoration: underline;
}

/* RTL Support */
.rtl {
    direction: rtl;
}

.rtl .hero-content h1,
.rtl .section-title {
    font-family: 'Noto Serif JP', 'M PLUS Rounded 1c', 'Rubik', serif;
}

.rtl .contact-hero-title,
.rtl .form-header h3,
.rtl .contact-methods h3,
.rtl .branch-locations h3 {
    font-family: 'Noto Serif JP', 'M PLUS Rounded 1c', 'Rubik', serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-card {
        margin-bottom: 1rem;
    }
    
    .menu-card-title {
        font-size: 1.4rem;
    }
    
    .menu-card-desc {
        font-size: 1rem;
    }
    
    .branch-card {
        padding: 2rem 1.5rem;
    }
    
    .branch-name {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-container {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    
    .cta-header .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .option-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(26, 58, 110, 0.2), transparent);
        margin: 0;
    }
    
    .cta-option {
        padding: 0.5rem;
    }
    
    .app-badges {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .app-badge {
        width: 100%;
        justify-content: center;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.05rem;
    }
    
    .story-text {
        font-size: 1.1rem;
    }
    
    .story-cta-text {
        font-size: 1.2rem;
    }
    
    .contact-cta .row {
        text-align: center !important;
    }
    
    .story-section {
        padding: 5rem 0 2rem;
    }
    
    .story-content {
        padding: 0 1rem;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 320px;
        margin-top: 1.5rem;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .btn-story-reserve {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem !important;
    }
    
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        height: 90px;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
}

/* Mobile Bottom Navigation - Redesigned */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, 
            rgba(20, 20, 20, 0.98) 0%, 
            rgba(15, 15, 15, 0.98) 100%
        );
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        box-shadow: 
            0 -4px 30px rgba(0, 0, 0, 0.5),
            0 -2px 10px rgba(139, 27, 92, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        padding: 0.65rem 0.5rem 0.8rem;
        z-index: 1000;
        border-top: 2px solid rgba(139, 27, 92, 0.3);
        gap: 0.5rem;
    }
    
    .mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0.4rem;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(139, 27, 92, 0.15);
        overflow: hidden;
    }
    
    /* Glassmorphic shine effect */
    .mobile-nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at center,
            rgba(139, 27, 92, 0.1) 0%,
            transparent 70%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-nav-item:active::before {
        opacity: 1;
    }
    
    .mobile-nav-item i {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        color: rgba(255, 255, 255, 0.95);
        transition: all 0.3s ease;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
        position: relative;
        z-index: 1;
    }
    
    .mobile-nav-item span {
        font-size: 0.72rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        letter-spacing: 0.4px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        position: relative;
        z-index: 1;
    }
    
    .mobile-nav-item:active {
        background: rgba(139, 27, 92, 0.15);
        border-color: rgba(139, 27, 92, 0.3);
        transform: scale(0.94) translateY(2px);
    }
    
    .mobile-nav-item:active i {
        transform: scale(0.92);
    }
    
    /* Primary Call Button - Purple Gradient */
    .mobile-nav-primary {
        background: linear-gradient(135deg, 
            #8B1B5C 0%, 
            #6B1547 50%,
            #5B1240 100%
        );
        margin: 0;
        border-radius: 14px;
        padding: 0.8rem 0.4rem;
        box-shadow: 
            0 4px 16px rgba(139, 27, 92, 0.5),
            0 2px 6px rgba(0, 0, 0, 0.3),
            inset 0 1px 1px rgba(255, 255, 255, 0.3),
            inset 0 -1px 1px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .mobile-nav-primary::before {
        background: radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 70%
        );
    }
    
    .mobile-nav-primary:active {
        background: linear-gradient(135deg, 
            #6B1547 0%, 
            #5B1240 50%,
            #4B0F35 100%
        );
        box-shadow: 
            0 2px 10px rgba(139, 27, 92, 0.6),
            0 1px 4px rgba(0, 0, 0, 0.4),
            inset 0 1px 1px rgba(255, 255, 255, 0.2),
            inset 0 -1px 1px rgba(0, 0, 0, 0.3);
        transform: scale(0.94) translateY(2px);
    }
    
    .mobile-nav-primary i {
        color: #fff;
        font-size: 1.6rem;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    }
    
    .mobile-nav-primary span {
        color: #fff;
        font-weight: 700;
        font-size: 0.75rem;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }
    
    /* Add padding to body to prevent content hiding under nav */
    body {
        padding-bottom: 95px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title,
    .reservation-title {
        font-size: 1.5rem;
    }
    
    .menu-card-title {
        font-size: 1.2rem;
    }
    
    .branch-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .navbar-logo {
        height: 60px;
    }
}

/* ===========================
   INTERACTIVE BACKGROUNDS & DIVIDERS
   =========================== */

/* Wave Dividers */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider-1 {
    transform: translateY(-1px);
}

.wave-divider-2 {
    transform: translateY(1px);
}

/* Curved Divider */
.curved-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -2px 0;
}

.curved-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Animated Center Divider */
.animated-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(248,249,250,0.5) 50%, rgba(255,255,255,0) 100%);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    max-width: 400px;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    animation: rotateIcon 20s linear infinite;
}

.divider-icon i {
    color: white;
    font-size: 1.5rem;
}

@keyframes rotateIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Shapes Background */
.section-with-background {
    position: relative;
    overflow: hidden;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-gradient);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gold-gradient);
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) translateX(-20px) rotate(240deg);
    }
}

/* Gradient Overlay Section */
.section-with-gradient {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Pattern Background Section */
.section-with-pattern {
    position: relative;
    background-image: 
        linear-gradient(30deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa),
        linear-gradient(150deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa),
        linear-gradient(30deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa),
        linear-gradient(150deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    background-color: #ffffff;
}

/* Navy Blue Gradient Section */
.section-with-gold-gradient {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 58, 110, 0.03) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(45, 84, 146, 0.03) 100%);
    overflow: hidden;
}

.section-with-gold-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 58, 110, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Parallax Effect for Sections */
.section {
    position: relative;
    transition: all 0.3s ease;
}

.section-title, .section-subtitle {
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .wave-divider svg,
    .curved-divider svg {
        height: 50px;
    }
    
    .animated-divider {
        padding: 2rem 0;
    }
    
    .divider-icon {
        width: 50px;
        height: 50px;
        margin: 0 1rem;
    }
    
    .divider-icon i {
        font-size: 1.2rem;
    }
    
    .divider-line {
        max-width: 150px;
    }
    
    .shape {
        opacity: 0.05;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   Modern Catering Section (Homepage)
   ======================================== */
.catering-modern-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0;
}

.catering-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a3a6e;stop-opacity:1" /><stop offset="100%" style="stop-color:%232d5492;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad1)"/></svg>');
    z-index: 0;
}

.catering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.85) 0%, rgba(45, 84, 146, 0.75) 100%);
    z-index: 1;
}

.catering-modern-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catering-modern-title {
    font-family: 'Noto Serif JP', 'Rubik', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.catering-modern-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-catering-modern {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 27, 92, 0.3);
    border: 2px solid transparent;
}

.btn-catering-modern:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 27, 92, 0.4);
}

.btn-catering-modern i {
    transition: transform 0.3s ease;
}

.btn-catering-modern:hover i {
    transform: translateX(5px);
}

/* RTL Support */
.rtl .btn-catering-modern:hover i {
    transform: translateX(-5px);
}

/* ========================================
   Clean Catering Section with Elegant Textbox
   ======================================== */
.catering-clean-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    display: block;
}

.catering-link {
    display: block;
    position: relative;
    min-height: 400px;
    height: 100%;
    text-decoration: none;
    transition: all 0.4s ease;
}

.catering-link:hover .catering-bg-image {
    transform: scale(1.05);
}

.catering-link:hover .catering-textbox {
    transform: translate(-50%, calc(-50% - 5px));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.catering-clean-section .catering-bg-image {
    opacity: 1;
    transition: transform 0.6s ease;
}

.catering-textbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 1.2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.catering-textbox-text {
    font-family: 'Noto Serif JP', 'Rubik', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.catering-arrow {
    font-size: 1.6rem;
    color: white;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.catering-link:hover .catering-arrow {
    transform: translateX(5px);
}

.rtl .catering-link:hover .catering-arrow {
    transform: translateX(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .catering-modern-section,
    .catering-clean-section {
        min-height: 350px;
        height: 350px;
        padding: 0;
        margin: 0;
        display: block;
    }
    
    .catering-link {
        min-height: 350px;
        height: 100%;
    }
    
    .catering-clean-section .catering-bg-image {
        height: 100%;
    }
    
    .catering-textbox {
        padding: 1rem 2rem;
        gap: 0.8rem;
        max-width: 90%;
    }
    
    .catering-textbox-text {
        font-size: 1.2rem;
    }
    
    .catering-arrow {
        font-size: 1.1rem;
    }
    
    .catering-modern-title {
        font-size: 2rem;
    }
    
    .catering-modern-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-catering-modern {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   Careers Section Styles
   ======================================== */
.careers-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0;
}

.careers-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8f9fa;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e9ecef;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad2)"/></svg>');
    z-index: 0;
}

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.85) 0%, rgba(139, 27, 92, 0.75) 100%);
    z-index: 1;
}

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

.careers-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.careers-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.btn-careers {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #1a3a6e;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease;
}

.btn-careers:hover {
    background: #8B1B5C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 27, 92, 0.4);
}

.btn-careers i {
    transition: transform 0.3s ease;
}

.btn-careers:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .careers-section {
        min-height: 400px;
        padding: 4rem 0;
    }
    
    .careers-title {
        font-size: 2rem;
    }
    
    .careers-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-careers {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   App Download Section - Simple
   ======================================== */
.app-download-simple {
    background: #f8f9fa;
    padding: 2.5rem 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.app-simple-content {
    text-align: center;
}

.app-simple-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a3a6e;
    margin-bottom: 1.5rem;
}

.app-icons-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.app-icon-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a3a6e;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 58, 110, 0.2);
}

.app-icon-link:hover {
    background: #8B1B5C;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(139, 27, 92, 0.3);
    color: white;
}

.app-icon-link i {
    font-size: 2rem;
}

@media (max-width: 576px) {
    .app-simple-title {
        font-size: 1.4rem;
    }
    
    .app-icon-link {
        width: 55px;
        height: 55px;
    }
    
    .app-icon-link i {
        font-size: 1.75rem;
    }
    
    .app-icons-inline {
        gap: 1.5rem;
    }
}

/* ========================================
   Careers Section - Professional
   ======================================== */
.careers-professional {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5rem 0;
    background: #1a3a6e;
}

.careers-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.careers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.92) 0%, rgba(26, 58, 110, 0.85) 100%);
    z-index: 1;
}

.careers-content-pro {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.careers-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.careers-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-careers-pro {
    display: inline-block;
    padding: 1rem 3rem;
    background: #8B1B5C;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 27, 92, 0.3);
}

.btn-careers-pro:hover {
    background: #6B1547;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 27, 92, 0.4);
    color: white;
}

.btn-careers-pro i {
    transition: transform 0.3s ease;
}

.btn-careers-pro:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .careers-professional {
        min-height: 400px;
        padding: 4rem 0;
    }
    
    .careers-heading {
        font-size: 2rem;
    }
    
    .careers-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .btn-careers-pro {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

/* Menu Item Images - Desktop & Mobile Optimized */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item-elegant {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.menu-item-elegant:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.item-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 0.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.item-image {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: contain !important;
    object-position: center center !important;
    transition: transform 0.3s ease;
}

.item-image-wrapper:hover .item-image {
    transform: scale(1.05);
}

.item-content {
    padding: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .item-image-wrapper {
        height: 350px;
        padding: 0.5rem;
    }
    
    .menu-item-elegant .item-image {
        width: 100% !important;
        height: 100% !important;
        max-height: 340px !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    .item-content {
        padding: 1rem;
    }
    
    .item-name {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
}

/* Image Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =============================================
   MOBILE NAVBAR MENU - FINAL OVERRIDE
   Must be at END of file for highest specificity
   ============================================= */
@media (max-width: 991px) {
    /* Collapsed menu (closed state) */
    #navbarNav:not(.show):not(.collapsing) {
        display: none !important;
    }
    
    /* Expanded menu (open state) */
    #navbarNav.show,
    #navbarNav.collapsing {
        display: block !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        background-color: #ffffff !important;
        border-radius: 0 0 8px 8px !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Menu list container */
    #navbarNav .navbar-nav {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Menu items */
    #navbarNav .navbar-nav .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(26, 58, 110, 0.05) !important;
        margin: 0 !important;
    }
    
    #navbarNav .navbar-nav .nav-item:last-child {
        border-bottom: none !important;
    }
    
    /* Menu links */
    #navbarNav .navbar-nav .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem !important;
        text-align: right !important;
        transition: background-color 0.2s !important;
        margin: 0 !important;
        background: transparent !important;
    }
    
    /* LTR alignment */
    body.ltr #navbarNav .navbar-nav .nav-link {
        text-align: left !important;
    }
    
    /* Hover effect */
    #navbarNav .navbar-nav .nav-link:hover,
    #navbarNav .navbar-nav .nav-link:focus {
        background-color: rgba(26, 58, 110, 0.05) !important;
    }
    
    /* Cart link separator */
    #navbarNav .navbar-nav .cart-link {
        border-top: 2px solid rgba(26, 58, 110, 0.1) !important;
        font-weight: 600 !important;
    }
}
/* Force reload - 1762782024 */

/* ===========================
   RESERVATION PAGE MOBILE-FRIENDLY STYLES
   =========================== */

/* Reservation Hero */
.reservations-modern .reservation-hero {
    background: linear-gradient(135deg, #1a3a6e 0%, #8B1B5C 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    color: #fff;
}

.reservations-modern .reservation-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reservations-modern .reservation-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Reservation Form Wrapper */
.reservation-form-wrapper {
    max-width: 800px;
    margin: -2rem auto 3rem;
    padding: 0 1rem;
}

/* Modern Reservation Form */
.modern-reservation-form {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Steps */
.form-step {
    margin-bottom: 2.5rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B1B5C, #6B1547);
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field label i {
    margin-right: 0.5rem;
    color: #8B1B5C;
}

/* Modern Inputs */
.modern-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Rubik', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.modern-input:focus {
    outline: none;
    border-color: #8B1B5C;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 27, 92, 0.1);
}

/* Seating Grid */
.seating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.seating-card {
    position: relative;
    cursor: pointer;
}

.seating-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.seating-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 180px;
}

.seating-card label i {
    color: #8B1B5C;
    margin-bottom: 1rem;
}

.seating-card label h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.seating-card label p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.seating-card input[type="radio"]:checked + label {
    border-color: #8B1B5C;
    background: rgba(139, 27, 92, 0.05);
    box-shadow: 0 4px 15px rgba(139, 27, 92, 0.2);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8B1B5C, #6B1547);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 27, 92, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 27, 92, 0.4);
}

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

.submit-btn i {
    margin-right: 0.5rem;
}

/* Success Card */
.success-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 3rem;
    color: #fff;
}

.success-card h2 {
    color: #333;
    margin-bottom: 1rem;
}

.success-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.success-hint {
    color: #999 !important;
    font-size: 0.95rem !important;
}

.btn-secondary {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .reservations-modern .reservation-hero {
        padding: 5rem 0 2.5rem;
    }
    
    .reservations-modern .reservation-hero h1 {
        font-size: 2rem;
    }
    
    .reservations-modern .reservation-hero p {
        font-size: 1rem;
    }
    
    .reservation-form-wrapper {
        margin: -1.5rem auto 2rem;
        padding: 0 0.75rem;
    }
    
    .modern-reservation-form {
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
    }
    
    .form-step {
        margin-bottom: 2rem;
    }
    
    .step-header {
        gap: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-header h3 {
        font-size: 1.2rem;
    }
    
    /* Single column on mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-field.full-width {
        grid-column: span 1;
    }
    
    .form-field label {
        font-size: 0.9rem;
    }
    
    .modern-input {
        padding: 0.85rem 0.9rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Seating cards stack on mobile */
    .seating-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seating-card label {
        padding: 1.2rem;
        min-height: 150px;
    }
    
    .seating-card label i {
        font-size: 2.5rem;
    }
    
    .seating-card label h4 {
        font-size: 1rem;
    }
    
    .seating-card label p {
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .success-card {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
    
    .success-card h2 {
        font-size: 1.5rem;
    }
    
    .success-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-reservation-form {
        padding: 1.2rem 1rem;
    }
    
    .step-header h3 {
        font-size: 1.1rem;
    }
    
    .modern-input {
        padding: 0.8rem;
    }
    
    .seating-card label {
        padding: 1rem;
    }
}

/* RTL Support */
.rtl .form-field label i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.rtl .submit-btn i {
    margin-right: 0;
    margin-left: 0.5rem;
}
