:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --accent-blue: #60a5fa;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Restaurant Theme Colors */
    --restaurant-gold: #d4af37;
    --restaurant-gold-dark: #b8941f;
    --restaurant-red: #b64840;
    --restaurant-red-dark: #9a3d35;
    --restaurant-brown: #8b4513;
    --restaurant-cream: #f5f5dc;
    --restaurant-dark: #2c1810;
}

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

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Edu SA Hand', cursive;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 0;
}

/* Headings use Microsoft Tai Le */
h1, h2, h3, h4, h5, h6,
.hero-title-restaurant,
.section-title,
.welcome-title,
.about-title-restaurant,
.menu-section-title,
.contact-section-title,
.gallery-section-title {
    font-family: 'Edu SA Hand', cursive;
}

/* Account for fixed navbar - navbar is now at the very top */
@media (min-width: 1003px) {
    body {
        padding-top: 100px; /* Navbar height */
    }
    
    body.navbar-scrolled {
        padding-top: 100px; /* Navbar height when scrolled */
    }
}

@media (max-width: 1002px) {
    body {
        padding-top: 80px; /* Navbar height on mobile */
    }
}

/* Reduce Container Width */
.container {
    max-width: 1140px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

/* Top Bar */
.top-bar {
    background-color: rgba(240, 244, 248, 0.95);
    padding: 8px 10px;
    padding-bottom: 8px !important;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 35px;
}

/* Make top bar semi-transparent when over hero */
.top-bar.over-hero {
    background-color: rgba(240, 244, 248, 0.7);
}

.top-bar-custom-padding {
    padding-bottom: 10px !important;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-social a {
    color: #6b7280;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--primary-blue);
}

.top-bar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0;
    align-items: center;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 2px;
}

.language-switcher-mobile {
    margin: 0.5rem 0;
    padding: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--primary-blue);
}

.lang-btn.active {
    background: var(--primary-blue);
    color: white;
}

@media (max-width: 1002px) {
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .language-switcher {
        order: -1;
    }
}

.top-bar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px !important
}

.top-bar-contact-item:hover {
    color: var(--primary-blue);
}

.top-bar-contact-item i {
    color: var(--primary-blue);
    font-size: 1rem;
}

@media (max-width: 1002px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   PREMIUM NAVBAR - COMBINED DESIGN
   ============================================ */

.premium-navbar {
    height: 80px;
    padding: 0;
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    z-index: 1040;
    display: flex;
    align-items: center;
}

.premium-navbar.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.premium-navbar.scrolled .premium-nav-btn {
    color: var(--text-gray) !important;
}

.premium-navbar.scrolled .premium-nav-btn.active {
    background: #ffffff !important;
    color: var(--restaurant-red) !important;
    border: 1px solid #e5e5e5 !important;
}

.premium-navbar.scrolled .premium-brand-text {
    color: var(--restaurant-red) !important;
}

/* Desktop: Navbar Height */
@media (min-width: 1003px) {
    .premium-navbar {
        height: 100px;
    }
    
    .premium-navbar.scrolled {
        height: 100px;
    }
    
    body {
        padding-top: 100px;
    }
}

.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navbar always starts from the very top */
.premium-navbar,
.navbar {
    top: 0 !important;
}

/* When top bar is hidden on mobile */
@media (max-width: 1002px) {
    .premium-navbar {
        height: 80px;
        padding: 0;
        margin: 0;
        top: 0 !important;
        display: flex;
        align-items: center;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .premium-navbar.scrolled {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .top-bar {
        display: none;
    }
}

/* Premium Navbar Styles */
.premium-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

/* Premium Brand/Logo */
.premium-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.premium-brand:hover {
    opacity: 0.9;
    text-decoration: none;
}

.premium-logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.premium-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--restaurant-red) !important;
    letter-spacing: 0.5px;
    font-family: 'Edu SA Hand', cursive;
    white-space: nowrap;
}

/* Navigation Always White Background - Exact Style from Image */
.premium-navbar .premium-nav-btn {
    color: var(--text-gray) !important;
}

.premium-navbar .premium-nav-btn.active {
    background: #ffffff !important;
    color: var(--restaurant-red) !important;
    border: 1px solid #e5e5e5 !important;
}

.premium-navbar .premium-brand-text {
    color: var(--restaurant-red) !important;
}

/* Premium Navigation Links - Exact Style from Image */
.premium-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.premium-nav-btn {
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Edu SA Hand', cursive;
}

.premium-nav-btn:hover {
    color: var(--text-dark);
    text-decoration: none;
}

.premium-nav-btn.active {
    background: #ffffff;
    color: var(--restaurant-red);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

/* Premium Nav Actions */
.premium-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Premium Language Switcher - Exact Style from Image */
.premium-lang-switcher {
    background: #f5f5f5;
    border-radius: 50px;
    padding: 4px;
    display: flex;
    gap: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.premium-lang-switcher .lang-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.premium-lang-switcher .lang-btn.active {
    background: #ffffff;
    color: var(--restaurant-red);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.premium-lang-switcher .lang-btn:not(.active) {
    background: transparent;
    color: var(--text-gray);
}

.premium-lang-switcher .lang-btn:hover {
    color: var(--text-dark);
}

/* Premium Book Button - Exact Style from Image */
.premium-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 24px;
    background: var(--restaurant-red);
    color: white !important;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: none;
    border: none;
    font-family: 'Edu SA Hand', cursive;
}

.premium-book-btn:hover {
    background: var(--restaurant-red-dark);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(182, 72, 64, 0.3);
    text-decoration: none;
}

.premium-book-btn i {
    display: none;
}

.premium-book-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.premium-book-btn:hover i {
    transform: translateX(3px);
}

/* Premium Toggler - Remove Bootstrap Styles */
.premium-toggler,
.navbar-toggler.premium-toggler {
    border: none !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    cursor: pointer !important;
    display: none !important; /* Hidden by default on desktop */
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    outline: none !important;
}

.premium-toggler:focus,
.premium-toggler:focus-visible {
    box-shadow: 0 0 0 3px rgba(182, 72, 64, 0.1) !important;
    outline: none !important;
}

.premium-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Remove Bootstrap's default navbar-toggler styles */
.navbar-toggler.premium-toggler {
    border-color: transparent !important;
    padding: 0.5rem !important;
}

.navbar-toggler.premium-toggler:focus {
    text-decoration: none !important;
    box-shadow: 0 0 0 3px rgba(182, 72, 64, 0.1) !important;
}

/* Custom Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hide Bootstrap's default icon */
.navbar-toggler-icon {
    display: none !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1039;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design for Premium Navbar */
@media (max-width: 991px) {
    /* Mobile Side Menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        z-index: 1040;
        padding: 80px 2rem 2rem;
        overflow-y: auto;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .premium-nav-links {
        flex-direction: column;
        width: 100%;
        background: transparent;
        padding: 0;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .premium-nav-btn {
        width: 100%;
        text-align: left;
        padding: 12px 20px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }
    
    .premium-nav-btn:hover {
        background: rgba(182, 72, 64, 0.1);
        transform: translateX(5px);
    }
    
    .premium-nav-btn.active {
        background: var(--restaurant-red);
        color: white;
    }
    
    .premium-nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .premium-book-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-lang-switcher {
        width: 100%;
        justify-content: center;
    }
    
    /* Hamburger Button - Mobile - Show only on mobile */
    .premium-toggler,
    .navbar-toggler.premium-toggler {
        display: flex !important; /* Show on mobile */
        position: relative;
        z-index: 1041;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .hamburger-icon {
        width: 28px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 3px;
        background-color: var(--text-dark);
    }
    
    /* Hamburger to X Animation - Open State */
    .premium-toggler[aria-expanded="true"] .hamburger-icon {
        justify-content: center;
    }
    
    .premium-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .premium-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .premium-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    
    /* Ensure hamburger is visible and properly sized */
    .premium-toggler .hamburger-icon {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .premium-brand-text {
        font-size: 1.25rem;
    }
    
    .premium-logo-icon {
        width: 32px;
        height: 32px;
    }
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.75rem 0;
}

/* Make navbar transparent when over hero section */
.navbar.over-hero {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.over-hero .nav-link {
    color: var(--text-dark) !important;
}

.navbar.over-hero .navbar-brand-text {
    color: var(--restaurant-red) !important;
}

.navbar.over-hero .nav-appointment-btn {
    background: var(--restaurant-red);
    color: white !important;
    border-color: var(--restaurant-red);
}

.navbar.over-hero .nav-appointment-btn:hover {
    background: var(--restaurant-red-dark);
    border-color: var(--restaurant-red-dark);
    color: white !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    text-decoration: none;
    opacity: 0.9;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--restaurant-red) !important;
    letter-spacing: 0.5px;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    align-self: center;
    vertical-align: middle;
    font-family: 'Edu SA Hand', cursive;
    transition: color 0.3s ease;
}

@media (max-width: 1002px) {
    .navbar-brand-text {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
        display: block;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .navbar-brand {
        gap: 8px;
    }
    
    .navbar-logo-size {
        height: 40px;
    }
    
    .navbar.scrolled .navbar-logo-size {
        height: 38px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-brand-text {
        font-size: 1.25rem;
        letter-spacing: 0.4px;
    }
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-logo-size {
    height: 50px;
}

.navbar.scrolled .navbar-logo-size {
    height: 45px;
}

.logo-container {
    position: relative;
}

.logo-container .navbar-logo {
    position: relative;
    z-index: 1001;
    display: block;
}

.logo-triangle {
    position: absolute;
    top: calc(100% - 1px);
    left: 140%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-top: 60px solid white;
    z-index: 1000;
}

@media (max-width: 1002px) {
    .logo-container {
        left: 20px !important;
    }
    
    .logo-container .navbar-logo {
        height: 70px !important;
    }
    
    .logo-triangle {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-top: 40px solid white;
    }
}

.navbar-nav {
    align-items: center;
    gap: 0.25rem;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .navbar .container {
        max-width: 1140px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.25rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem !important;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--restaurant-red) !important;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--restaurant-red);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.nav-appointment-btn {
    background: var(--restaurant-red);
    color: white !important;
    border: 2px solid var(--restaurant-red);
    padding: 10px 24px !important;
    border-radius: 8px;
    margin-left: 0.5rem !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-appointment-btn-clickable {
    cursor: pointer;
}

.nav-appointment-btn:hover {
    background: var(--restaurant-red-dark);
    border-color: var(--restaurant-red-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(182, 72, 64, 0.35);
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon {
    display: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(182, 72, 64, 0.1);
    outline: none;
}

.navbar-toggler:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Bootstrap default icon removed - using custom hamburger */

@media (max-width: 991px) {
    .nav-appointment-btn {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        width: 100%;
        text-align: center;
        padding: 12px 24px !important;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        text-align: left;
    }
    
    .nav-link::after {
        left: 1rem;
        transform: none;
    }
    
    .nav-link:hover::after {
        width: calc(100% - 2rem);
    }
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.carousel-slide {
    position: relative;
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.carousel-slide-1 {
    background-image: url('../images/slider/item-1.webp');
}

.carousel-slide-2 {
    background-image: url('../images/slider/item-2.webp');
}

.carousel-slide-3 {
    background-image: url('../images/slider/item-3.webp');
}

.carousel-overlay {
    display: none;
}

.carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    padding: 30px 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 50px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.9) 50%, rgba(15, 23, 42, 0.85) 100%);
    border-radius: 12px;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flip-word-container {
    display: inline-block;
    position: relative;
    perspective: 300px;
    min-width: 100px;
    height: 1.2em;
    padding-right: 4px;
    /* vertical-align: bottom; */
}

.flip-word {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: rotateX(90deg);
    transform-origin: center bottom;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.flip-word.active {
    position: relative;
    opacity: 1;
    transform: rotateX(0deg);
}

.carousel-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.carousel-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.carousel-features li {
    padding: 0.5rem 0;
    color: white;
    font-size: 1rem;
}

.carousel-features li i {
    color: #64ffda;
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.carousel-btn {
    margin-top: 1.5rem;
}

.carousel-btn-wrapper {
    text-align: right;
}

@media (max-width: 992px) {
    .carousel-content {
        text-align: center;
        margin: 0 auto;
        padding: 25px 20px;
        max-width: 90%;
        margin-right: auto;
    }
    
    .hero-carousel-section {
        height: 50vh;
    }
    
    .carousel-slide {
        height: 50vh;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.carousel-indicators {
    bottom: 20px;
}

/* Left-positioned carousel indicators */
.carousel-indicators-left {
    left: 50px;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
}

.carousel-indicators button {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    margin: 0 3px;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.carousel-indicators button.active {
    background: white;
    border-color: white;
    transform: scale(1.5);
}

@media (max-width: 1002px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1.125rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

.star-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6);
    animation: starFade 2s ease-out forwards;
}

@keyframes starFade {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg);
    }
}

.star-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        -8px 0 0 0 white,
        8px 0 0 0 white,
        0 -8px 0 0 white,
        0 8px 0 0 white;
}

@keyframes heroBackgroundZoom {
    0% {
        background-size: 100% auto;
    }
    100% {
        background-size: 110% auto;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.9) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
    animation: fadeInOverlay 1.5s ease-out;
}

.hero-image-blend {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 550px;
    height: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInRight 1.5s ease-out 0.8s forwards;
    pointer-events: none;
}

.hero-image-blend img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) brightness(1.1) contrast(1.1);
    mix-blend-mode: lighten;
    opacity: 0.9;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Alternative blend mode for better visibility */
.hero-image-blend::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
}

/* Initial animation states */
.hero-animate {
    opacity: 0;
}

.hero-title {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
    opacity: 0;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.hero-features li {
    padding: 0.75rem 0;
    color: white;
    font-size: 1.125rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-features li:nth-child(1) {
    animation-delay: 1.0s;
}

.hero-features li:nth-child(2) {
    animation-delay: 1.2s;
}

.hero-features li:nth-child(3) {
    animation-delay: 1.4s;
}

.hero-features li:nth-child(4) {
    animation-delay: 1.6s;
}

.hero-features li i {
    color: #64ffda;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Text reveal animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Letter-by-letter animation for title */
.hero-title {
    display: inline-block;
}

.hero-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: white;
    margin: 10px auto 0;
    animation: expandLine 1s ease-out 1.5s forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Jssor-style animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-section .hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    max-width: 700px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    opacity: 0;
}

.btn-primary-custom {
    background-color: white;
    color: var(--text-dark);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background-color: #f8f9fa;
    color: var(--text-dark);
}

.btn-primary-custom:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline-custom:hover::before {
    left: 0;
}

.btn-outline-custom:hover {
    color: var(--primary-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-custom:active {
    transform: translateY(-1px) scale(1.02);
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.stat-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Services Overview Section */
.services-overview-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.services-overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-overview-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.services-overview-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.services-overview-features li {
    padding: 0.75rem 0;
    color: white;
    font-size: 1.125rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.services-overview-features li:nth-child(1) {
    animation-delay: 0.3s;
}

.services-overview-features li:nth-child(2) {
    animation-delay: 0.5s;
}

.services-overview-features li:nth-child(3) {
    animation-delay: 0.7s;
}

.services-overview-features li:nth-child(4) {
    animation-delay: 0.9s;
}

.services-overview-features li i {
    color: #64ffda;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.services-overview-buttons {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-gray);
    margin: 0;
}

/* Services Section */
.services-section {
    position: relative;
    background-image: url('../images/Medicine.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.75);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    color: white;
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-section .carousel-control-prev,
.services-section .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.8;
}

.services-section .carousel-control-prev:hover,
.services-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Flip Card Container */
.flip-card-container {
    perspective: 1200px;
    -webkit-perspective: 1200px;
    height: 100%;
    min-height: 350px;
    width: 100%;
    position: relative;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    pointer-events: auto;
}

.service-card:hover {
    transform: rotateY(180deg) !important;
    -webkit-transform: rotateY(180deg) !important;
}

.flip-card-container:hover .service-card {
    transform: rotateY(180deg) !important;
    -webkit-transform: rotateY(180deg) !important;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.flip-card-front {
    overflow: hidden;
}

.flip-card-back {
    overflow: auto;
}

.flip-card-front {
    background: rgba(30, 30, 60, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
}

.flip-card-front .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.flip-card-front .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem;
    z-index: 2;
    pointer-events: none;
}

.flip-card-front h4 {
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.flip-card-back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    background: rgba(20, 40, 80, 1);
    padding: 2.5rem;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(100, 200, 255, 0.3);
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2;
    overflow: visible !important;
}

.flip-card-back h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white !important;
    letter-spacing: -0.5px;
    text-align: center;
    display: block !important;
    visibility: visible !important;
}

.flip-card-back p {
    color: white !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    max-width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* About Section */
.about-section {
    background-color: #f8f9fa !important;
    position: relative;
    z-index: 10;
    padding: 100px 0;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */

.our-story-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
}

.our-story-content {
    padding-right: 3rem;
}

.our-story-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.our-story-text {
    margin-bottom: 3rem;
}

.our-story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.our-story-text p:last-child {
    margin-bottom: 0;
}

/* Statistics Section */
.our-story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--restaurant-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--restaurant-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Image Section */
.our-story-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.our-story-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-placeholder-our-story {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.3) 0%, 
        rgba(44, 24, 16, 0.4) 50%,
        rgba(139, 69, 19, 0.3) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
}

.our-story-food-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(2px);
    transform: scale(1.05);
    z-index: 1;
}

.our-story-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.our-story-food-img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Years of Excellence Overlay */
.years-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--restaurant-red);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(182, 72, 64, 0.4);
    z-index: 10;
    min-width: 180px;
}

.years-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.years-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    background: #ffffff;
    padding: 120px 0;
}

.gallery-section .section-title {
    color: var(--text-dark);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gallery-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: galleryFadeIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }

@keyframes galleryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    display: none !important;
}

/* Gallery overlay removed - zoom functionality disabled */

/* Gallery Container for Mobile Scroll */
.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-scroll-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 1rem;
}

.gallery-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Desktop: Keep grid layout */
@media (min-width: 769px) {
    .gallery-container {
        display: block;
    }
    
    .gallery-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        overflow: visible;
        scroll-snap-type: none;
    }
    
    .gallery-item {
        width: 100%;
        flex-shrink: 0;
    }
}

/* Mobile: Horizontal scroll like Facebook feed */
@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
    
    .gallery-container {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .gallery-scroll-wrapper {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .gallery-item {
        flex: 0 0 85vw;
        width: 85vw;
        max-width: 85vw;
        margin-bottom: 0;
        scroll-snap-align: start;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    font-size: 1.5rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* ============================================
   FEATURED DISH PROMOTIONAL SECTION
   ============================================ */

.featured-dish-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.featured-dish-container {
    background: linear-gradient(135deg, 
        rgba(182, 72, 64, 0.95) 0%, 
        rgba(139, 69, 19, 0.9) 50%,
        rgba(212, 175, 55, 0.85) 100%);
    padding: 80px 0;
    position: relative;
}

.featured-dish-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side: Text Content */
.featured-dish-text {
    color: white;
    z-index: 2;
    position: relative;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-badge i {
    color: var(--restaurant-gold);
    font-size: 0.875rem;
}

.featured-dish-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-dish-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.featured-dish-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.old-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.featured-dish-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-featured-primary {
    background: var(--restaurant-red);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--restaurant-red);
}

.btn-featured-primary:hover {
    background: var(--restaurant-red-dark);
    border-color: var(--restaurant-red-dark);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-featured-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid white;
}

.btn-featured-secondary:hover {
    background: white;
    color: var(--restaurant-red);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Right Side: Food Image */
.featured-dish-image-wrapper {
    position: relative;
    z-index: 2;
}

.featured-dish-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.featured-food-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* transform: rotate(-5deg); */
    transition: transform 0.3s ease;
}

.featured-dish-image:hover .featured-food-img {
    transform: rotate(0deg) scale(1.05);
}

/* Decorative Leaves */
.decorative-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50% 0 50% 0;
    animation: floatLeaf 6s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
    width: 40px;
    height: 40px;
}

.leaf-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
    width: 50px;
    height: 50px;
}

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

/* Featured Menu Carousel */
.featured-menu-carousel {
    /* background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(182, 72, 64, 0.15) 50%,
        rgba(212, 175, 55, 0.1) 100%); */
    backdrop-filter: blur(10px);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.featured-menu-carousel .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
}

.menu-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 0 80px;
    max-width: 100%;
    padding: 0 80px;
}

.menu-slider-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--restaurant-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--restaurant-red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.menu-slider-btn:hover {
    background: var(--restaurant-red);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(182, 72, 64, 0.3);
}

.menu-slider-prev {
    left: 0;
}

.menu-slider-next {
    right: 0;
}

.featured-menu-items {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 0 1rem;
}

.featured-menu-items::-webkit-scrollbar {
    display: none;
}

.featured-menu-card {
    position: relative;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    width: 280px;
    height: 280px;
    min-width: 280px;
    max-width: 280px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
/* 
.featured-menu-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
} */

.menu-card-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.featured-menu-card:hover .menu-card-img {
    transform: scale(1.1);
}

.menu-card-content {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(5px);
    border-radius: 0 0 50% 50%;
    padding: 1.5rem 1rem 1.5rem;
    padding-top: 1.5rem;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.menu-card-name {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.4rem;
    padding-top: 10px;
    line-height: 1.3;
}

.menu-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--restaurant-red);
    /* margin-bottom: 0.5rem; */
}

.menu-card-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 0.5rem; */
}

.review-count {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.star-rating {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.star-rating i {
    font-size: 0.875rem;
    color: var(--restaurant-gold);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--restaurant-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(182, 72, 64, 0.3);
    z-index: 10;
}

.add-to-cart-btn:hover {
    background: var(--restaurant-red-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(182, 72, 64, 0.4);
}

.add-to-cart-btn i {
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--restaurant-gold);
    color: var(--restaurant-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-dish-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .featured-dish-title {
        font-size: 2.5rem;
    }
    
    .featured-dish-description {
        max-width: 100%;
    }
    
    .featured-dish-image {
        max-width: 400px;
    }
    
    .featured-menu-card {
        width: 250px;
        height: 250px;
        min-width: 250px;
        max-width: 250px;
    }
    
    .menu-card-content {
        padding: 1.2rem 0.8rem 0.8rem;
    }
    
    .menu-card-name {
        font-size: 0.95rem;
    }
    
    .menu-card-price {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .featured-dish-container {
        padding: 60px 0;
    }
    
    .featured-dish-title {
        font-size: 2rem;
    }
    
    .featured-dish-description {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .old-price {
        font-size: 1.5rem;
    }
    
    .btn-featured-primary,
    .btn-featured-secondary {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .featured-menu-card {
        width: 220px;
        height: 220px;
        min-width: 220px;
        max-width: 220px;
    }
    
    .menu-card-content {
        padding: 1rem 0.5rem 0.5rem;
    }
    
    .menu-card-name {
        font-size: 0.9rem;
    }
    
    .menu-card-price {
        font-size: 1.1rem;
    }
    
    .menu-card-reviews {
        gap: 0.3rem;
    }
    
    .review-count {
        font-size: 0.8rem;
    }
    
    .star-rating i {
        font-size: 0.75rem;
    }
}

/* Responsive Design for Our Story */
@media (max-width: 992px) {
    .our-story-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .our-story-title {
        font-size: 2.5rem;
    }
    
    .our-story-text p {
        font-size: 1rem;
    }
    
    .our-story-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .stat-block {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: auto;
    }
    
    .our-story-image-wrapper,
    .our-story-image,
    .image-placeholder-our-story {
        min-height: 400px;
    }
    
    .years-overlay {
        bottom: 20px;
        left: 20px;
        padding: 1.25rem 1.5rem;
        min-width: 150px;
    }
    
    .years-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        padding: 80px 0;
    }
    
    .our-story-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .our-story-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-around;
    }
    
    .stat-block {
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .our-story-image-wrapper,
    .our-story-image,
    .image-placeholder-our-story {
        min-height: 350px;
    }
    
    .years-overlay {
        bottom: 15px;
        left: 15px;
        padding: 1rem 1.25rem;
        min-width: 130px;
    }
    
    .years-number {
        font-size: 2rem;
    }
    
    .years-text {
        font-size: 0.85rem;
    }
}

/* About Feature Cards */
.about-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12); */
}

.feature-card-blue {
    background: var(--primary-blue) !important;
    color: white;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-icon-white {
    color: white !important;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-title-white {
    color: white !important;
}

.feature-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.feature-description-white {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* About Content */
.about-content {
    padding-left: 2rem;
}

.about-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Highlight Lubumbashi */
.highlight-lubumbashi {
    font-weight: 700;
    background: #b64840;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

.btn-about-cta {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-about-cta:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 1002px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .about-main-title {
        font-size: 1.75rem;
    }
}

/* Contact Section */
.contact-section {
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%); */
    /* color: white; */
    position: relative;
}

.contact-section-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.contact-section .section-title {
    color: black;
}

.contact-section .section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 0px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--restaurant-red);
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.contact-card p a {
    color: var(--restaurant-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card p a:hover {
    color: var(--restaurant-red-dark);
    text-decoration: underline;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.contact-form-card form {
    position: relative;
    z-index: 1;
}

.contact-form-card .form-control {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: 8px;
}

.contact-form-card .form-control::placeholder {
    color: var(--text-light);
}

.contact-form-card .form-control:focus {
    background: #ffffff;
    border-color: var(--primary-blue);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
    border-radius: 16px;
}

.map-iframe {
    border: 0;
}

.contact-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.honeypot {
    display: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    font-size: 32px;
}

@media (max-width: 1002px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Appointment Modal */
/* ============================================
   PREMIUM MODAL DESIGN
   ============================================ */

.premium-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: #f8f9fa;
}

.premium-modal-header {
    background: #ffffff;
    padding: 2.5rem 3rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.premium-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 1 !important;
    transition: all 0.3s ease;
    z-index: 1050 !important;
    background: rgba(182, 72, 64, 0.1) !important;
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid var(--restaurant-red) !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(182, 72, 64, 0.2) !important;
}

.premium-close-btn::before {
    content: '×' !important;
    font-size: 32px !important;
    color: var(--restaurant-red) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    display: block !important;
}

/* Override Bootstrap's btn-close default styles */
.premium-close-btn.btn-close {
    background-image: none !important;
    opacity: 1 !important;
}

.premium-close-btn.btn-close::before,
.premium-close-btn.btn-close::after {
    display: none !important;
}

.premium-close-btn:hover {
    opacity: 1 !important;
    background: var(--restaurant-red) !important;
    transform: rotate(90deg) scale(1.1);
    border: 2px solid var(--restaurant-red) !important;
    box-shadow: 0 4px 12px rgba(182, 72, 64, 0.4) !important;
}

.premium-close-btn:hover::before {
    color: white !important;
}

.premium-close-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(182, 72, 64, 0.3), 0 2px 8px rgba(182, 72, 64, 0.2) !important;
    background: rgba(182, 72, 64, 0.15) !important;
}

.premium-modal-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--restaurant-red);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0;
    text-transform: none;
    display: block;
    position: relative;
    padding-bottom: 0;
    font-family: 'Edu SA Hand', cursive;
}

.premium-modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.premium-modal-body {
    padding: 2.5rem 3rem;
    background: #ffffff;
}

.premium-contact-form {
    max-width: 100%;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-premium {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input-premium {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-premium::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-input-premium:focus {
    border-color: var(--restaurant-red);
    box-shadow: 0 4px 12px rgba(182, 72, 64, 0.15);
    transform: translateY(-2px);
}

.form-input-premium:hover:not(:focus) {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-textarea-premium {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.security-question-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.security-question-text {
    font-size: 0.95rem;
    color: var(--restaurant-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.security-question-text .captcha-question {
    color: var(--restaurant-red);
    font-weight: 700;
}

.premium-modal-footer {
    padding: 2rem 3rem 3rem;
    border-top: none;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.modal-footer-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-premium-cancel {
    background: #e5e7eb;
    color: var(--text-dark);
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.btn-premium-cancel:hover {
    background: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

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

.btn-premium-submit {
    background: var(--restaurant-brown);
    color: white;
    padding: 18px 60px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    min-width: 220px;
}

.btn-premium-submit:hover {
    background: #6b3410;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white;
}

.btn-premium-submit:active {
    transform: translateY(-1px);
}

.btn-premium-submit.loading {
    cursor: not-allowed;
    opacity: 0.8;
}

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

.reservation-callout-footer {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.reservation-callout-footer i {
    color: var(--restaurant-red);
    font-size: 1rem;
}

.reservation-callout-footer a {
    color: var(--restaurant-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-callout-footer a:hover {
    color: var(--restaurant-red-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-modal-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .premium-modal-title {
        font-size: 1.75rem;
        gap: 0.25rem;
    }
    
    .premium-modal-body {
        padding: 1.5rem;
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .premium-modal-footer {
        padding: 1.5rem;
    }
    
    .modal-footer-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-premium-cancel,
    .btn-premium-submit {
        width: 100%;
        padding: 16px 40px;
    }
    
    .premium-close-btn {
        top: 1rem;
        right: 1rem;
    }
}

.appointment-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.appointment-modal .modal-header {
    background: white;
    color: var(--text-dark);
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.modal-reservation-callout {
    background: linear-gradient(135deg, rgba(182, 72, 64, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.reservation-callout-text {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.reservation-callout-text i {
    color: var(--restaurant-red);
    font-size: 1.1rem;
}

.reservation-callout-text a {
    color: var(--restaurant-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-callout-text a:hover {
    color: var(--restaurant-red-dark);
    text-decoration: underline;
}

.appointment-modal .modal-title {
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--text-dark);
    width: 100%;
    text-align: center;
    margin: 0;
}

.appointment-modal .btn-close {
    opacity: 1;
}

.appointment-modal .modal-body {
    padding: 2rem;
    background: white;
}

/* Material Design Form Styles */
.material-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.material-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.material-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.material-input::placeholder {
    color: transparent;
}

.material-input:focus {
    border-bottom-color: var(--primary-blue);
    border-bottom-width: 2px;
}

.material-input:focus ~ .material-label,
.material-form-group:focus-within .material-label {
    color: var(--primary-blue);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 6px;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
}

.material-input-captcha {
    flex: 1;
    min-width: 120px;
    max-width: 200px;
}

.btn-captcha-refresh {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.btn-captcha-refresh:hover {
    background: var(--primary-blue-dark);
    transform: rotate(180deg);
}

.btn-captcha-refresh:active {
    transform: rotate(180deg) scale(0.95);
}

.btn-captcha-refresh i {
    font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-question {
        text-align: center;
        width: 100%;
    }
    
    .material-input-captcha {
        max-width: 100%;
        width: 100%;
    }
    
    .btn-captcha-refresh {
        width: 100%;
    }
}

.material-textarea {
    resize: vertical;
    min-height: 80px;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
    line-height: 1.6;
}

.material-textarea:focus {
    border-bottom-color: var(--primary-blue);
    border-bottom-width: 2px;
}

.material-form-group:focus-within .material-label {
    color: var(--primary-blue);
}

.appointment-modal .modal-footer {
    border-top: none;
    padding: 1.5rem 2rem 2rem;
    justify-content: center;
    background: white;
}

.appointment-modal .btn-submit {
    background: #1f2937;
    color: white;
    padding: 14px 50px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.appointment-modal .btn-submit:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.appointment-modal .btn-submit.loading {
    cursor: not-allowed;
    opacity: 0.8;
}

.appointment-modal .btn-submit.loading:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.appointment-modal .btn-submit .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
    vertical-align: middle;
}

/* Welcome Section - Enhanced Professional Design */
.welcome-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    display: none;
}

.welcome-images {
    position: relative;
    height: 600px;
}

.welcome-image-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.welcome-image-top:hover {
    transform: translateY(-5px);
}

.welcome-image-top img {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-image-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.welcome-image-bottom:hover {
    transform: translateY(5px);
}

.welcome-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-content {
    padding-left: 2rem;
}

.welcome-content-left {
    text-align: left;
}

.welcome-images-left {
    text-align: left;
}

.welcome-subtitle {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 30px;
    border: 2px solid var(--primary-blue);
}

.welcome-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.welcome-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.welcome-features li:hover {
    transform: translateX(5px);
}

.welcome-features li i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-welcome {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-welcome:hover {
    background: var(--primary-blue-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

@media (max-width: 992px) {
    .welcome-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-images {
        height: auto !important;
        min-height: 400px !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        justify-content: center !important;
        align-items: flex-end !important;
        position: relative !important;
    }
    
    .welcome-image-top,
    .welcome-image-bottom {
        position: relative !important;
        width: calc(50% - 7.5px) !important;
        flex: 0 0 calc(50% - 7.5px) !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 1 !important;
        margin: 0 !important;
    }
    
    .welcome-image-top img,
    .welcome-image-bottom img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
}

@media (max-width: 1002px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .welcome-section .col-lg-6:first-child {
        order: 1;
    }
    
    .welcome-section .col-lg-6:last-child {
        order: 2;
        margin-top: 2rem;
    }
    
    .welcome-images {
        height: auto !important;
        min-height: 350px !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: flex-end !important;
        position: relative !important;
    }
    
    .welcome-image-top,
    .welcome-image-bottom {
        position: relative !important;
        width: calc(50% - 5px) !important;
        flex: 0 0 calc(50% - 5px) !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 1 !important;
        margin: 0 !important;
    }
    
    .welcome-image-top img,
    .welcome-image-bottom img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
}

/* Footer */
/* ============================================
   OPENING HOURS SECTION
   ============================================ */

.premium-footer {
    background-color: #1a1a1a;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.opening-hours-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.opening-hours-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opening-hours-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.opening-hours-text {
    text-align: left;
}

.opening-hours-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Edu SA Hand', cursive;
}

.opening-hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.hours-row .days {
    font-weight: 600;
    min-width: 140px;
    color: rgba(255, 255, 255, 0.95);
}

.hours-row .time {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   PREMIUM FOOTER DESIGN
   ============================================ */

.premium-footer {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
}

.premium-footer .opening-hours-content {
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .premium-footer .opening-hours-content {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

/* Top Section - Address */
.footer-top {
    background-color: #1a1a1a;
    padding: 50px 0;
    color: #ffffff;
}

.footer-address-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-address-icon {
    width: 60px;
    height: 60px;
    background: rgba(224, 102, 102, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-address-icon i {
    font-size: 1.75rem;
    color: #e06666;
}

.footer-address-content {
    text-align: left;
    flex: 1;
}

.footer-heading {
    color: #e06666;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Edu SA Hand', cursive;
}

.footer-content {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-content p {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #e06666;
    text-decoration: underline;
}

/* Bottom Section - Opening Hours, Social & Copyright */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.footer-copyright .footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-copyright .footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* Legacy Footer Styles (for backward compatibility) */
.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.9);
    padding: 30px 0;
}

.footer h5 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo-size {
    height: 150px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.97rem;
    margin: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer a:hover {
    color: white;
}

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

.footer ul li {
    margin-bottom: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-right: 0.75rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1002px) {
    /* Container & General */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navigation - Fixed at top on Mobile */
    .premium-navbar {
        height: 80px !important;
        padding: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
        background-color: #ffffff !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .premium-navbar.scrolled {
        background-color: #ffffff !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Keep padding from body for fixed navbar */
    body {
        padding-top: 80px !important;
    }
    
    /* Ensure top bar doesn't interfere */
    .top-bar {
        position: relative;
        z-index: 1040;
    }
    
    /* Hero section should account for fixed navbar */
    .hero-carousel-section {
        margin-top: 0 !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .logo-container {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .logo-container .navbar-logo {
        height: 60px !important;
    }
    
    /* Mobile Brand Text */
    .mobile-brand-text {
        display: none;
    }
    
    .mobile-brand-text h3 {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--text-dark);
        margin: 0;
        text-align: center;
        padding: 0.75rem 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        letter-spacing: -0.5px;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        margin: 0.25rem 0;
    }
    
    .nav-appointment-btn {
        margin: 1rem auto 0 !important;
        display: block;
        width: fit-content;
    }
    
    .navbar-nav .language-switcher {
        display: flex !important;
        justify-content: center;
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .navbar-nav .nav-item .language-switcher .lang-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .mobile-brand-text {
        display: block !important;
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.5rem;
    }
    
    .mobile-brand-text h3 {
        font-size: 1.1rem !important;
        font-weight: 900 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        text-align: center !important;
    }
    
    .navbar {
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .navbar .container {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
        width: auto;
        display: flex;
        align-items: center;
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }
    
    .logo-container .navbar-logo {
        height: 70px !important;
    }
    
    .navbar-toggler {
        margin-left: auto !important;
        order: 2;
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }
    
    /* Hero Carousel - Mobile: Professional & Neat Display */
    .hero-carousel-section {
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
    }
    
    #heroCarousel {
        position: relative;
    }
    
    /* Carousel items - maintain Bootstrap carousel functionality */
    .carousel-item {
        transition: opacity 0.6s ease-in-out;
    }
    
    .carousel-item.active {
        display: block;
    }
    
    /* Carousel controls - show on mobile with better styling */
    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        opacity: 0.9 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .carousel-control-prev {
        left: 10px !important;
    }
    
    .carousel-control-next {
        right: 10px !important;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(255, 255, 255, 1) !important;
        opacity: 1 !important;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
        filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(5000%) hue-rotate(210deg) brightness(0.9) contrast(1);
    }
    
    /* Carousel indicators - show on mobile */
    .carousel-indicators {
        display: flex !important;
        bottom: 120px !important;
        margin: 0 !important;
        justify-content: center !important;
        z-index: 10 !important;
    }
    
            .carousel-indicators button {
                width: 4px !important;
                height: 4px !important;
                border-radius: 50% !important;
                background: rgba(255, 255, 255, 0.5) !important;
                border: 1px solid transparent !important;
                margin: 0 3px !important;
                padding: 0 !important;
            }
            
            .carousel-indicators button.active {
                background: white !important;
                border-color: white !important;
                transform: scale(1.5) !important;
            }
    
    .carousel-slide {
        height: auto !important;
        min-height: 70vh !important;
        padding: 0 !important;
        background-size: cover !important;
        background-position: center !important;
        background-attachment: scroll !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }
    
    .carousel-slide .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
    }
    
    .carousel-content {
        text-align: center !important;
        margin: 0 !important;
        padding: 30px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        background: rgba(15, 23, 42, 0.65) !important;
        border-radius: 0 !important;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2) !important;
    }
    
    .carousel-title {
        font-size: 2.25rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.25rem !important;
        text-align: center !important;
        font-weight: 900 !important;
        color: white !important;
    }
    
    .flip-word-container {
        min-width: 130px !important;
        height: 1.4em !important;
        display: inline-block !important;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.75rem !important;
        text-align: center !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .carousel-features {
        display: none !important;
    }
    
    .carousel-features li {
        font-size: 0.95rem !important;
        padding: 0.6rem 0 !important;
        text-align: left !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .carousel-features li i {
        margin-right: 0.75rem !important;
        font-size: 1.1rem !important;
        color: #64ffda !important;
    }
    
    .carousel-btn {
        margin-top: 1.5rem !important;
        padding: 10px 24px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        width: auto !important;
        max-width: 200px !important;
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 6px !important;
    }
    
    
    /* Sections */
    .section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Services Section */
    .services-section {
        padding: 40px 0 !important;
    }
    
    .flip-card-container {
        min-height: 280px !important;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        min-height: 280px !important;
    }
    
    .flip-card-front h4 {
        font-size: 1.25rem !important;
    }
    
    .flip-card-back {
        padding: 1.5rem !important;
    }
    
    .flip-card-back h4 {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .flip-card-back p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* About Section */
    .about-section {
        padding: 40px 0 !important;
    }
    
    .about-content {
        padding-left: 0 !important;
        margin-top: 2rem;
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 0.75rem !important;
    }
    
    .about-main-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .about-text {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .about-feature-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-title {
        font-size: 1.25rem !important;
    }
    
    .feature-description {
        font-size: 0.95rem !important;
    }
    
    /* Statistics Section */
    .statistics-section {
        padding: 40px 0 !important;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.875rem !important;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 40px 0 !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 0 !important;
    }
    
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem !important;
    }
    
    .map-container {
        min-height: 400px !important;
    }
    
    .contact-icon {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-card h5 {
        font-size: 1.125rem !important;
    }
    
    .contact-card p {
        font-size: 0.95rem !important;
    }
    
    /* Simplified Contact Section - Mobile */
    .contact-simple-wrapper {
        gap: 1rem;
    }
    
    .contact-simple-card {
        padding: 1.25rem;
        gap: 1rem;
        transform: rotate(0deg) !important;
    }
    
    .contact-simple-icon {
        font-size: 2rem;
    }
    
    .contact-simple-content h5 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-simple-content p {
        font-size: 0.95rem;
    }
    
    .map-container-simple {
        height: 350px;
        transform: rotate(0deg);
        margin-top: 1rem;
    }
    
    /* Welcome Section - Mobile Enhanced */
    .welcome-section {
        padding: 50px 0 !important;
    }
    
    .welcome-content {
        padding-left: 0 !important;
        margin-top: 2.5rem;
        text-align: center;
    }
    
    .welcome-subtitle {
        font-size: 0.875rem !important;
        padding: 6px 16px !important;
        letter-spacing: 1.5px !important;
    }
    
    .welcome-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.25rem !important;
    }
    
    .welcome-text {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .welcome-features {
        margin-bottom: 1.5rem !important;
    }
    
    .welcome-features li {
        font-size: 1rem !important;
        padding: 0.6rem 0 !important;
        justify-content: center;
    }
    
    .welcome-features li i {
        font-size: 1.1rem !important;
        width: 32px !important;
        height: 32px !important;
        padding: 6px !important;
    }
    
    .welcome-section .row {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .welcome-section .col-lg-6:first-child {
        order: 1 !important;
    }
    
    .welcome-section .col-lg-6:last-child {
        order: 2 !important;
        margin-top: 2.5rem !important;
        margin-bottom: 0 !important;
    }
    
    /* Ensure images appear at the bottom of the section on mobile */
    .welcome-images-left {
        order: 999 !important;
    }
    
    .welcome-images {
        height: auto !important;
        min-height: 300px !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: center !important;
        align-items: flex-end !important;
        margin-bottom: 2.5rem;
        position: relative !important;
    }
    
    .welcome-image-top,
    .welcome-image-bottom {
        position: relative !important;
        width: calc(50% - 5px) !important;
        flex: 0 0 calc(50% - 5px) !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 1 !important;
        margin: 0 !important;
    }
    
    .welcome-image-top img,
    .welcome-image-bottom img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
    
    .btn-welcome {
        width: 100% !important;
        max-width: 300px !important;
        padding: 12px 30px !important;
    }
    
    /* Footer */
    /* Opening Hours Section Responsive */
    .opening-hours-section {
        padding: 40px 0 !important;
    }
    
    .opening-hours-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .opening-hours-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .opening-hours-icon i {
        font-size: 2rem !important;
    }
    
    .opening-hours-text {
        text-align: center !important;
    }
    
    .opening-hours-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 0.5rem !important;
        text-align: center;
    }
    
    .hours-row .days {
        min-width: auto;
    }
    
    /* Premium Footer Responsive */
    .footer-top {
        padding: 40px 0 !important;
    }
    
    .footer-address-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-address-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto;
    }
    
    .footer-address-icon i {
        font-size: 1.5rem !important;
    }
    
    .footer-address-content {
        text-align: center !important;
    }
    
    .footer-heading {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-content {
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        padding: 30px 0 !important;
    }
    
    .footer-social {
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .social-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .footer-copyright {
        font-size: 0.85rem !important;
        padding: 0 1rem;
    }
    
    /* Legacy Footer */
    .footer {
        padding: 25px 0 !important;
        text-align: center;
    }
    
    .footer-logo {
        height: 80px !important;
        margin-bottom: 1rem;
    }
    
    /* Modal */
    .appointment-modal .modal-dialog {
        margin: 10px;
    }
    
    .appointment-modal .modal-header {
        padding: 1.5rem 1rem 0.75rem !important;
    }
    
    .appointment-modal .modal-title {
        font-size: 1.5rem !important;
    }
    
    .modal-reservation-callout {
        padding: 0.75rem 1rem !important;
    }
    
    .reservation-callout-text {
        font-size: 0.9rem !important;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .hero-reservation-text {
        font-size: 0.9rem !important;
        margin-top: 1rem !important;
    }
    
    .appointment-modal .modal-body {
        padding: 1.5rem 1rem !important;
    }
    
    .material-form-group {
        margin-bottom: 1.25rem !important;
    }
    
    .appointment-modal .modal-footer {
        padding: 1rem !important;
    }
    
    .appointment-modal .btn-submit {
        padding: 12px 30px !important;
        width: 100%;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 24px !important;
    }
    
    .whatsapp-float i {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .carousel-title {
        font-size: 1.25rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .flip-card-container {
        min-height: 250px !important;
    }
    
    .service-card {
        min-height: 250px !important;
    }
    
    .about-main-title {
        font-size: 1.5rem !important;
    }
    
    .welcome-title {
        font-size: 1.5rem !important;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Ensure smooth scroll accounts for fixed navbar */
html {
    scroll-padding-top: 100px;
}

@media (max-width: 1002px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* ============================================
   SECTION ENTRY ANIMATIONS
   ============================================ */

/* Base animation states - DISABLED - visible by default */
.section-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-animate.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Staggered animation delays for child elements - DISABLED */
.section-animate-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-animate-stagger.animate-in > *:nth-child(1),
.section-animate-stagger.animate-in > *:nth-child(2),
.section-animate-stagger.animate-in > *:nth-child(3),
.section-animate-stagger.animate-in > *:nth-child(4),
.section-animate-stagger.animate-in > *:nth-child(5),
.section-animate-stagger.animate-in > *:nth-child(6),
.section-animate-stagger.animate-in > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0 !important;
}

/* Fade in from left */
.section-animate-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-animate-left.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Fade in from right - DISABLED */
.section-animate-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.section-animate-right.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Scale animation */
.section-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Mobile optimizations - DISABLED */
@media (max-width: 768px) {
    .section-animate,
    .section-animate-left,
    .section-animate-right,
    .section-animate-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   IMAGE ERROR HANDLING
   ============================================ */

/* Hide broken images gracefully */
img[src=""],
img:not([src]) {
    display: none;
}

/* Image error state styling */
img.img-error {
    display: none;
}

/* Placeholder for failed images */
.img-placeholder {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.875rem;
    min-height: 200px;
}

/* ============================================
   RESTAURANT THEME STYLES
   ============================================ */

/* Hero Section with Curtain Opening Animation */
.hero-section-restaurant {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
    max-width: 100%;
    margin-top: 0;
}

/* Hero Carousel Styles */
#heroCarousel {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

@keyframes cookingGlow {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        filter: brightness(1.05);
    }
}

.carousel-item {
    height: 100vh;
    min-height: 100vh;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
    margin: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: white;
    border-color: white;
    width: 30px;
    border-radius: 5px;
}

.hero-background-restaurant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.3) 0%, rgba(139, 69, 19, 0.4) 50%, rgba(44, 24, 16, 0.3) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroBackgroundZoom 20s ease-in-out infinite alternate;
    filter: blur(3px);
    transform: scale(1.05);
}

@keyframes heroBackgroundZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}


/* Hero Content - DISABLED ANIMATIONS */
.hero-content-restaurant {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    animation: none !important;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.hero-content-wrapper {
    max-width: 900px;
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    transform: none !important;
}

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

/* Chef Hat Icon - Hidden for Simple Design */
.chef-hat-icon {
    display: none !important;
}

.chef-hat-icon i {
    font-size: 4.5rem;
    color: var(--restaurant-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 2px 2px 8px rgba(0, 0, 0, 0.5);
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite 1.2s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

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

/* JSSOR-Style Entrance Animations */
@keyframes jssorSlideInTop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jssorSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(-0.5deg);
    }
}

@keyframes jssorSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes jssorSlideInBottom {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jssorZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes jssorFadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes jssorFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-title-restaurant {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.1;
    color: white;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: jssorFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
    font-family: 'Edu SA Hand', cursive;
    transform: none !important;
}

.hero-subtitle-restaurant {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    animation: jssorFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Playful Hero Elements - Decorative Food Emojis */
.hero-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Food elements in featured section */
.featured-dish-section .hero-decorative-elements {
    z-index: 1;
}

.hero-food-emoji {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.2;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    animation: none;
    transform-origin: center;
}

.hero-food-1 {
    top: 15%;
    left: 8%;
    --food-rotation: -15deg;
    animation-delay: 0.2s;
}

.hero-food-2 {
    top: 25%;
    right: 10%;
    --food-rotation: 20deg;
    animation-delay: 0.4s;
}

.hero-food-3 {
    bottom: 30%;
    left: 12%;
    --food-rotation: -10deg;
    animation-delay: 0.6s;
}

.hero-food-4 {
    bottom: 20%;
    right: 8%;
    --food-rotation: 15deg;
    animation-delay: 0.8s;
}

.hero-food-5 {
    top: 50%;
    left: 5%;
    --food-rotation: -25deg;
    animation-delay: 1s;
}

.hero-food-6 {
    top: 35%;
    left: 20%;
    --food-rotation: 18deg;
    animation-delay: 1.2s;
}

.hero-food-7 {
    bottom: 40%;
    right: 15%;
    --food-rotation: -22deg;
    animation-delay: 1.4s;
}

.hero-food-8 {
    top: 60%;
    right: 20%;
    --food-rotation: 12deg;
    animation-delay: 1.6s;
}

.hero-food-9 {
    bottom: 50%;
    left: 25%;
    --food-rotation: -18deg;
    animation-delay: 1.8s;
}

.hero-food-10 {
    top: 40%;
    left: 50%;
    --food-rotation: 25deg;
    animation-delay: 2s;
}

.hero-food-11 {
    bottom: 35%;
    right: 25%;
    --food-rotation: -12deg;
    animation-delay: 2.2s;
}

.hero-food-12 {
    top: 20%;
    left: 35%;
    --food-rotation: 20deg;
    animation-delay: 2.4s;
}

.hero-food-13 {
    bottom: 25%;
    left: 18%;
    --food-rotation: -20deg;
    animation-delay: 2.6s;
}

.hero-food-14 {
    top: 55%;
    right: 30%;
    --food-rotation: 15deg;
    animation-delay: 2.8s;
}

.hero-food-15 {
    bottom: 45%;
    right: 18%;
    --food-rotation: -15deg;
    animation-delay: 3s;
}

/* Food Cooking Animation - Enhanced Bubbling and Sizzling Effect */
@keyframes foodCooking {
    0% {
        opacity: 0.1;
        transform: scale(0.6) rotate(var(--food-rotation, 0deg)) translateY(15px);
        filter: blur(3px) brightness(0.8);
    }
    12% {
        opacity: 0.5;
        transform: scale(1.2) rotate(calc(var(--food-rotation, 0deg) + 15deg)) translateY(-10px);
        filter: blur(0px) brightness(1.2);
    }
    25% {
        opacity: 0.3;
        transform: scale(0.85) rotate(calc(var(--food-rotation, 0deg) - 12deg)) translateY(8px);
        filter: blur(2px) brightness(0.9);
    }
    37% {
        opacity: 0.45;
        transform: scale(1.15) rotate(calc(var(--food-rotation, 0deg) + 10deg)) translateY(-6px);
        filter: blur(0px) brightness(1.1);
    }
    50% {
        opacity: 0.25;
        transform: scale(0.9) rotate(calc(var(--food-rotation, 0deg) - 8deg)) translateY(5px);
        filter: blur(1px) brightness(0.95);
    }
    62% {
        opacity: 0.4;
        transform: scale(1.1) rotate(calc(var(--food-rotation, 0deg) + 8deg)) translateY(-4px);
        filter: blur(0px) brightness(1.05);
    }
    75% {
        opacity: 0.3;
        transform: scale(0.95) rotate(calc(var(--food-rotation, 0deg) - 5deg)) translateY(3px);
        filter: blur(1px) brightness(1);
    }
    87% {
        opacity: 0.35;
        transform: scale(1.05) rotate(calc(var(--food-rotation, 0deg) + 3deg)) translateY(-2px);
        filter: blur(0px) brightness(1.02);
    }
    100% {
        opacity: 0.2;
        transform: scale(1) rotate(var(--food-rotation, 0deg)) translateY(0);
        filter: blur(0px) brightness(1);
    }
}

/* Boiling Bubbles - Like a Boiling Pot */
.boiling-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: none;
    opacity: 0;
    display: none;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    bottom: 20%;
    left: 15%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    bottom: 25%;
    left: 25%;
    animation-delay: 0.3s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 40%;
    animation-delay: 0.6s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    bottom: 22%;
    right: 20%;
    animation-delay: 0.9s;
}

.bubble-5 {
    width: 22px;
    height: 22px;
    bottom: 28%;
    right: 35%;
    animation-delay: 1.2s;
}

.bubble-6 {
    width: 16px;
    height: 16px;
    bottom: 35%;
    left: 30%;
    animation-delay: 1.5s;
}

.bubble-7 {
    width: 24px;
    height: 24px;
    bottom: 26%;
    left: 50%;
    animation-delay: 1.8s;
}

.bubble-8 {
    width: 19px;
    height: 19px;
    bottom: 32%;
    right: 15%;
    animation-delay: 2.1s;
}

.bubble-9 {
    width: 21px;
    height: 21px;
    bottom: 24%;
    left: 60%;
    animation-delay: 2.4s;
}

.bubble-10 {
    width: 17px;
    height: 17px;
    bottom: 29%;
    right: 45%;
    animation-delay: 2.7s;
}

@keyframes bubbleRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }
    10% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.5);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-150px) scale(1);
    }
    90% {
        opacity: 0.3;
        transform: translateY(-250px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-300px) scale(0.8);
    }
}

/* Steam Effects - Multiple Steam Columns */
.steam-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.steam {
    position: absolute;
    width: 40px;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: steamRise 4s ease-in-out infinite;
    filter: blur(8px);
}

.steam-1 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0s;
    transform: translateX(-10px);
}

.steam-2 {
    bottom: 25%;
    left: 35%;
    animation-delay: 0.8s;
    transform: translateX(5px);
    width: 35px;
    height: 100px;
}

.steam-3 {
    bottom: 22%;
    right: 25%;
    animation-delay: 1.6s;
    transform: translateX(-5px);
    width: 45px;
    height: 130px;
}

.steam-4 {
    bottom: 28%;
    left: 50%;
    animation-delay: 2.4s;
    transform: translateX(10px);
    width: 38px;
    height: 110px;
}

.steam-5 {
    bottom: 24%;
    right: 40%;
    animation-delay: 3.2s;
    transform: translateX(-8px);
    width: 42px;
    height: 125px;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.8);
    }
    20% {
        opacity: 0.6;
        transform: translateY(-30px) translateX(5px) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-100px) translateX(-5px) scale(1.1);
    }
    80% {
        opacity: 0.2;
        transform: translateY(-180px) translateX(8px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-250px) translateX(0) scale(0.9);
    }
}

/* Enhanced Steam Effect for Cooking */
.hero-decorative-elements::before,
.hero-decorative-elements::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: steamRise 4s ease-in-out infinite;
}

.hero-decorative-elements::before {
    top: 20%;
    left: 15%;
    animation-delay: 0.5s;
}

.hero-decorative-elements::after {
    top: 30%;
    right: 12%;
    animation-delay: 1.5s;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    30% {
        opacity: 0.4;
        transform: translateY(-30px) scale(1);
    }
    60% {
        opacity: 0.2;
        transform: translateY(-60px) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.2);
    }
}

/* Playful Hero Badge - Hidden for Simple Design */
.hero-playful-badge {
    display: none !important;
}

.hero-playful-badge span {
    display: inline-block;
}

/* Playful Hero Buttons */
.btn-playful-hero {
    border-radius: 20px 5px 20px 5px !important;
    box-shadow: 8px 8px 0px var(--restaurant-red) !important;
    transform: rotate(-1deg) !important;
    padding: 16px 32px !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    position: relative;
    z-index: 10;
    transition: all 0.2s ease !important;
}

.btn-playful-hero:hover {
    transform: rotate(0deg) translateY(-3px) !important;
    box-shadow: 10px 10px 0px var(--restaurant-red) !important;
}

.btn-playful-hero-alt {
    border-radius: 20px 5px 20px 5px !important;
    box-shadow: 8px 8px 0px var(--restaurant-gold) !important;
    transform: rotate(1deg) !important;
    padding: 16px 32px !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    background: var(--restaurant-gold) !important;
    color: var(--restaurant-dark) !important;
    border: 3px solid var(--restaurant-gold) !important;
    position: relative;
    z-index: 10;
    transition: all 0.2s ease !important;
}

.btn-playful-hero-alt:hover {
    transform: rotate(0deg) translateY(-3px) !important;
    box-shadow: 10px 10px 0px var(--restaurant-gold) !important;
    background: var(--restaurant-gold-dark) !important;
    border-color: var(--restaurant-gold-dark) !important;
}

.hero-buttons-restaurant {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    opacity: 0;
    animation: jssorFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.btn-hero-cta {
    background: var(--restaurant-red);
    color: white;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
    background: var(--restaurant-red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Playful Hero Stats - Hidden for Simple Design */
.hero-playful-stats {
    display: none !important;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px 5px 15px 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
    opacity: 0;
    animation: jssorSlideInBottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 2s;
}

.hero-stat-item:nth-child(3) {
    transform: rotate(1deg);
    animation-delay: 2.2s;
}

.hero-stat-item:nth-child(5) {
    transform: rotate(-0.5deg);
    animation-delay: 2.4s;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--restaurant-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-divider {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    animation: none !important;
    opacity: 1 !important;
}

.hero-buttons-restaurant {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: none !important;
    opacity: 1 !important;
}

.btn-book-table {
    background: var(--restaurant-red);
    color: white;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--restaurant-red);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-book-table:hover {
    background: var(--restaurant-red-dark);
    border-color: var(--restaurant-red-dark);
    transform: translateY(-3px);
    color: white;
}

.hero-reservation-text {
    display: none !important;
}

.hero-reservation-text a {
    color: var(--restaurant-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-reservation-text a:hover {
    color: white;
    text-decoration: underline;
}

.btn-primary-restaurant {
    background: var(--restaurant-gold);
    color: var(--restaurant-dark);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid var(--restaurant-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary-restaurant:hover {
    background: var(--restaurant-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    color: var(--restaurant-dark);
}

.btn-outline-restaurant {
    background: transparent;
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-restaurant:hover {
    background: white;
    color: var(--restaurant-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Restaurant Entry Animation Sections - DISABLED */
.restaurant-entry-section {
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.restaurant-entry-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Restaurant Door Frame Animation - DISABLED */
.restaurant-door-frame {
    display: none !important;
    opacity: 0 !important;
    transition: none !important;
}

.restaurant-entry-section.animate-in .restaurant-door-frame {
    display: none !important;
    opacity: 0 !important;
}

.restaurant-door-left,
.restaurant-door-right {
    display: none !important;
    transform: none !important;
    transition: none !important;
}

.restaurant-entry-section.animate-in .restaurant-door-left,
.restaurant-entry-section.animate-in .restaurant-door-right {
    display: none !important;
    transform: none !important;
}

.restaurant-interior {
    position: relative;
    z-index: 2;
}

/* Welcome Section Restaurant */
.welcome-section-restaurant {
    background: linear-gradient(135deg, var(--restaurant-cream) 0%, #ffffff 100%);
    padding: 120px 0;
    min-height: 80vh;
    margin-top: 0;
}

/* Add padding to first section after hero to account for fixed navbar */
.welcome-section-restaurant:first-of-type {
    padding-top: 140px;
}

@media (max-width: 1002px) {
    .welcome-section-restaurant:first-of-type {
        padding-top: 100px;
    }
}

.image-placeholder-restaurant {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--restaurant-brown) 0%, var(--restaurant-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.restaurant-ambiance-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.restaurant-interior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.restaurant-interior-img:hover {
    transform: scale(1.05);
}

/* ============================================
   PREMIUM MENU SECTION - MICROSOFT/GOOGLE LEVEL DESIGN
   ============================================ */

.premium-menu-section {
    background: #fafafa;
    color: var(--text-dark);
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
}

/* Menu section padding on desktop */
@media (min-width: 1003px) {
    .premium-menu-section {
        padding-top: 80px !important;
        padding-bottom: 130px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.premium-menu-section .container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1400px) {
    .premium-menu-section .container {
        max-width: 1200px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

.menu-header-wrapper {
    text-align: center;
}

.menu-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.premium-menu-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.premium-menu-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0 auto;
}

/* Premium Menu Category Cards */
.premium-menu-category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-menu-category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff8e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-icon-wrapper i {
    font-size: 1.75rem;
    color: #8b6914;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Menu Items List */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.premium-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    transition: all 0.2s ease;
}

.premium-menu-item:hover {
    padding-left: 0.5rem;
}

.menu-item-info {
    flex: 1;
    padding-right: 1.5rem;
}

.menu-item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #c97d60;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.3px;
    display: inline-block;
    padding: 4px 10px;
    background: var(--restaurant-gold);
    color: var(--restaurant-dark);
    border-radius: 8px 2px 8px 2px;
    box-shadow: 3px 3px 0px var(--restaurant-red);
    transform: rotate(-2deg);
    position: relative;
    letter-spacing: -0.3px;
}

.menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0;
    flex-shrink: 0;
}

/* Call to Action */
.menu-cta-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.btn-download-menu {
    display: inline-block;
    padding: 10px 24px;
    background: #ffffff;
    color: var(--restaurant-red);
    border: 2px solid var(--restaurant-red);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
    vertical-align: middle;
}

.btn-download-menu:hover {
    background: var(--restaurant-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(182, 72, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .premium-menu-title {
        font-size: 2.5rem;
    }
    
    .premium-menu-subtitle {
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .btn-download-menu {
        margin-top: 0;
    }
    
    .premium-menu-category-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .category-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .category-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .premium-menu-section {
        padding: 80px 0;
    }
    
    .premium-menu-title {
        font-size: 2rem;
    }
    
    .premium-menu-category-card {
        padding: 1.5rem;
    }
    
    .menu-item-name {
        font-size: 1rem;
    }
    
    .menu-item-description {
        font-size: 0.875rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    .premium-menu-item {
        padding: 1.25rem 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title-restaurant {
        font-size: 3rem;
        white-space: nowrap;
    }
    
    .hero-subtitle-restaurant {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .chef-hat-icon i {
        font-size: 3rem;
    }
    
    .hero-buttons-restaurant {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-book-table,
    .btn-primary-restaurant,
    .btn-outline-restaurant,
    .btn-playful-hero,
    .btn-playful-hero-alt {
        width: 100%;
        max-width: 300px;
        font-size: 1rem !important;
        padding: 14px 24px !important;
    }
    
    /* Playful Hero Elements - Mobile */
    .hero-playful-badge {
        font-size: 0.875rem !important;
        padding: 10px 18px !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-food-emoji {
        font-size: 2rem !important;
        opacity: 0.1 !important;
    }
    
    .hero-playful-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        padding: 10px 16px;
        transform: rotate(0deg) !important;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .hero-stat-divider {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-title-restaurant {
        font-size: 2.2rem;
        white-space: nowrap;
    }
    
    .hero-subtitle-restaurant {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        white-space: nowrap;
    }
    
    .chef-hat-icon {
        margin-bottom: 1.5rem;
    }
    
    .chef-hat-icon i {
        font-size: 2.5rem;
    }
}

/* ============================================
   PLAYFUL DESIGN ELEMENTS
   ============================================ */

/* Decorative Shapes - Stars */
.playful-star {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--restaurant-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.6;
    z-index: 1;
}

.playful-star-small {
    width: 12px;
    height: 12px;
    opacity: 0.4;
}

.playful-star-large {
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

/* Decorative Circles */
.playful-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--restaurant-red);
    opacity: 0.15;
    z-index: 1;
}

.playful-circle-small {
    width: 40px;
    height: 40px;
}

.playful-circle-medium {
    width: 60px;
    height: 60px;
}

.playful-circle-large {
    width: 100px;
    height: 100px;
}

/* Decorative Dots Pattern */
.playful-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--restaurant-gold) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* Wavy Decorative Lines */
.playful-wave {
    position: absolute;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        var(--restaurant-gold) 10px,
        var(--restaurant-gold) 12px
    );
    opacity: 0.2;
    z-index: 1;
}

/* Hand-drawn Style Borders */
.hand-drawn-border {
    border: 3px solid var(--restaurant-red);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    position: relative;
}

.hand-drawn-border-thin {
    border: 2px solid var(--restaurant-gold);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

/* Playful Badge/Sticker Style */
.playful-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--restaurant-gold);
    color: var(--restaurant-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px 5px 20px 5px;
    box-shadow: 4px 4px 0px var(--restaurant-red);
    transform: rotate(-2deg);
    position: relative;
    z-index: 2;
}

.playful-badge::before {
    content: '✨';
    margin-right: 4px;
}

.playful-badge-alt {
    background: var(--restaurant-red);
    color: white;
    box-shadow: 4px 4px 0px var(--restaurant-gold);
    transform: rotate(2deg);
}

/* Playful Section Dividers */
.playful-divider {
    position: relative;
    height: 40px;
    margin: 40px 0;
    overflow: hidden;
}

.playful-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--restaurant-gold);
    border-radius: 3px;
    transform: translateY(-50%);
}

.playful-divider::after {
    content: '🍽️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 15px;
    font-size: 1.5rem;
    z-index: 2;
}

/* Playful Button Styles */
.btn-playful {
    position: relative;
    border-radius: 15px 5px 15px 5px;
    box-shadow: 6px 6px 0px var(--restaurant-red);
    transform: rotate(-1deg);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-playful:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 8px 8px 0px var(--restaurant-red);
}

.btn-playful-alt {
    box-shadow: 6px 6px 0px var(--restaurant-gold);
    transform: rotate(1deg);
}

.btn-playful-alt:hover {
    box-shadow: 8px 8px 0px var(--restaurant-gold);
}

/* Playful Card Design */
.playful-card {
    position: relative;
    border-radius: 20px 5px 20px 5px;
    border: 3px solid var(--restaurant-gold);
    background: white;
    padding: 20px;
    box-shadow: 8px 8px 0px rgba(182, 72, 64, 0.2);
    transform: rotate(-0.5deg);
}

.playful-card::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--restaurant-red);
    border-radius: 50%;
    opacity: 0.3;
}

.playful-card-alt {
    transform: rotate(0.5deg);
    border-color: var(--restaurant-red);
    box-shadow: 8px 8px 0px rgba(212, 175, 55, 0.2);
}

/* Decorative Corner Accents */
.decorative-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.decorative-corner-top-left {
    top: -10px;
    left: -10px;
    border-top: 4px solid var(--restaurant-gold);
    border-left: 4px solid var(--restaurant-gold);
    border-radius: 10px 0 0 0;
}

.decorative-corner-top-right {
    top: -10px;
    right: -10px;
    border-top: 4px solid var(--restaurant-red);
    border-right: 4px solid var(--restaurant-red);
    border-radius: 0 10px 0 0;
}

.decorative-corner-bottom-left {
    bottom: -10px;
    left: -10px;
    border-bottom: 4px solid var(--restaurant-gold);
    border-left: 4px solid var(--restaurant-gold);
    border-radius: 0 0 0 10px;
}

.decorative-corner-bottom-right {
    bottom: -10px;
    right: -10px;
    border-bottom: 4px solid var(--restaurant-red);
    border-right: 4px solid var(--restaurant-red);
    border-radius: 0 0 10px 0;
}

/* Playful Background Patterns */
.playful-bg-pattern {
    position: relative;
    overflow: hidden;
}

.playful-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(182, 72, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Playful Price Tag Style */
.playful-price-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--restaurant-gold);
    color: var(--restaurant-dark);
    font-weight: 700;
    border-radius: 10px 3px 10px 3px;
    box-shadow: 3px 3px 0px var(--restaurant-red);
    transform: rotate(-3deg);
    position: relative;
}

.playful-price-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--restaurant-gold);
}

/* Playful Section Title Accent */
.playful-title-accent {
    position: relative;
    display: inline-block;
}

.playful-title-accent::before,
.playful-title-accent::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.6;
}

.playful-title-accent::before {
    left: -30px;
}

.playful-title-accent::after {
    right: -30px;
}

/* Playful Menu Item Styling */
.playful-menu-item {
    position: relative;
    padding-left: 20px;
}

.playful-menu-item::before {
    content: '🍴';
    position: absolute;
    left: -5px;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Decorative Food Icons */
.decorative-food-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* Playful Quote Style */
.playful-quote {
    position: relative;
    padding: 20px 30px;
    background: var(--restaurant-cream);
    border-left: 5px solid var(--restaurant-gold);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    box-shadow: 4px 4px 0px rgba(182, 72, 64, 0.1);
}

.playful-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--restaurant-gold);
    opacity: 0.3;
    font-family: serif;
}

/* Playful Highlight Box */
.playful-highlight {
    position: relative;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(182, 72, 64, 0.1) 100%);
    border-radius: 15px 5px 15px 5px;
    border: 2px dashed var(--restaurant-gold);
}

/* Apply Playful Elements to Existing Components */

/* Hero Section Playful Elements */
.hero-section-restaurant {
    position: relative;
    overflow: hidden;
}

.hero-section-restaurant::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: var(--restaurant-gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-section-restaurant::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: var(--restaurant-red);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Featured Badge Playful Style */
.featured-badge {
    border-radius: 20px 5px 20px 5px !important;
    box-shadow: 4px 4px 0px var(--restaurant-red) !important;
    transform: rotate(-2deg) !important;
}

/* Menu Cards - Playful effects removed */
.featured-menu-card {
    position: relative;
    /* Original circular border-radius maintained */
}

.featured-menu-card::after {
    display: none;
}

/* Section Titles Playful Accent */
.section-title,
.premium-menu-title,
.our-story-title {
    position: relative;
    display: inline-block;
}

.section-title::before,
.premium-menu-title::before,
.our-story-title::before {
    content: '✨';
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.5;
}

.section-title::after,
.premium-menu-title::after,
.our-story-title::after {
    content: '✨';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Buttons Playful Style */
.btn-book-table,
.btn-featured-primary {
    border-radius: 15px 5px 15px 5px !important;
    box-shadow: 6px 6px 0px var(--restaurant-red) !important;
    transform: rotate(-1deg) !important;
    position: relative;
}

.btn-featured-secondary {
    border-radius: 15px 5px 15px 5px !important;
    box-shadow: 6px 6px 0px var(--restaurant-gold) !important;
    transform: rotate(1deg) !important;
}

/* Menu Category Cards Playful */
.premium-menu-category-card {
    border-radius: 20px 5px 20px 5px !important;
    border: 3px solid var(--restaurant-gold) !important;
    box-shadow: 8px 8px 0px rgba(182, 72, 64, 0.15) !important;
    position: relative;
    transform: rotate(-0.3deg);
}

.premium-menu-category-card:nth-child(even) {
    transform: rotate(0.3deg);
    border-color: var(--restaurant-red) !important;
    box-shadow: 8px 8px 0px rgba(212, 175, 55, 0.15) !important;
}

/* Contact Cards Playful */
/* Simplified Playful Contact Section */
.contact-simple-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-simple-card {
    background: white;
    border-radius: 20px 5px 20px 5px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border: 3px solid var(--restaurant-gold);
    box-shadow: 6px 6px 0px rgba(182, 72, 64, 0.15);
    transform: rotate(-0.5deg);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-simple-card:nth-child(2) {
    transform: rotate(0.5deg);
    border-color: var(--restaurant-red);
    box-shadow: 6px 6px 0px rgba(212, 175, 55, 0.15);
}

.contact-simple-card:nth-child(3) {
    transform: rotate(-0.3deg);
}

.contact-simple-card:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 8px 8px 0px rgba(182, 72, 64, 0.2);
}

.contact-simple-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
}

.contact-simple-content {
    flex: 1;
}

.contact-simple-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--restaurant-red);
    font-family: 'Edu SA Hand', cursive;
}

.contact-simple-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.contact-link {
    color: var(--restaurant-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: inline-block;
}

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

.map-container-simple {
    width: 100%;
    height: 500px;
    border-radius: 20px 5px 20px 5px;
    overflow: hidden;
    border: 3px solid var(--restaurant-gold);
    box-shadow: 8px 8px 0px rgba(182, 72, 64, 0.15);
    transform: rotate(0.5deg);
    position: relative;
}

.map-container-simple iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Keep old contact-card styles for backward compatibility but override for new design */
.contact-card {
    border-radius: 15px 5px 15px 5px !important;
    border: 2px dashed var(--restaurant-gold) !important;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    background: var(--restaurant-red);
    border-radius: 50%;
    opacity: 0.3;
}

/* Stats Blocks Playful */
.stat-block {
    position: relative;
    border-radius: 15px 5px 15px 5px !important;
    transform: rotate(-1deg);
}

.stat-block:nth-child(2) {
    transform: rotate(1deg);
}

.stat-block:nth-child(3) {
    transform: rotate(-0.5deg);
}

/* Years Overlay Playful */
.years-overlay {
    border-radius: 20px 5px 20px 5px !important;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2) !important;
    transform: rotate(-3deg) !important;
}

/* Gallery Items Playful */
.gallery-item {
    border-radius: 15px 5px 15px 5px !important;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: var(--restaurant-gold);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 2;
}

/* Responsive adjustments for playful elements */
@media (max-width: 768px) {
    .section-title::before,
    .section-title::after,
    .premium-menu-title::before,
    .premium-menu-title::after,
    .our-story-title::before,
    .our-story-title::after {
        display: none;
    }
    
    .playful-title-accent::before,
    .playful-title-accent::after {
        display: none;
    }
}
