/* --- Flipbook Menu Styles --- */
.flipbook-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px 0;
  position: relative;
  z-index: 2;
}

.flipbook {
  width: 800px;
  height: 500px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.flipbook .page {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 40px 36px 36px 36px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.3s;
}

.flipbook .cover-page, .flipbook .back-cover-page {
  background: linear-gradient(135deg, #2d2d2d 60%, #bfa76a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flipbook .cover-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.flipbook .cover-title p {
  font-size: 1.2rem;
  color: #e5d8b0;
}
.flipbook .cover-decoration {
  font-size: 2.5rem;
  color: #bfa76a;
  margin-top: 1.5rem;
}

.flipbook .menu-page-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #bfa76a;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.flipbook .menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flipbook .menu-items li {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #222;
  border-bottom: 1px dashed #e5d8b0;
  padding-bottom: 0.7rem;
}
.flipbook .menu-items li strong {
  color: #bfa76a;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.flipbook .menu-items li span {
  float: right;
  color: #bfa76a;
  font-weight: 500;
}
.flipbook .menu-items li small {
  display: block;
  color: #888;
  font-size: 0.98rem;
  margin-top: 0.2rem;
}

.flipbook .back-cover-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.flipbook .back-cover-content h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.flipbook .back-cover-content p {
  color: #e5d8b0;
  margin-bottom: 1.2rem;
}
.flipbook .contact-info p {
  color: #fff;
  margin: 0.2rem 0;
  font-size: 1.05rem;
}
.flipbook .contact-info i {
  color: #bfa76a;
  margin-right: 0.5rem;
}

/* Responsive Flipbook */
@media (max-width: 900px) {
  .flipbook, .flipbook-container {
    width: 100% !important;
    min-width: 0;
    max-width: 98vw;
    height: 420px !important;
  }
  .flipbook .page {
    padding: 24px 10px 24px 10px;
  }
}
@media (max-width: 600px) {
  .flipbook, .flipbook-container {
    width: 100% !important;
    min-width: 0;
    max-width: 100vw;
    height: 320px !important;
  }
  .flipbook .page {
    padding: 10px 2px 10px 2px;
    font-size: 0.95rem;
  }
  .flipbook .menu-page-title h3 {
    font-size: 1.2rem;
  }
}
/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #b3893a;
    --primary-dark: #815d01;
    --secondary-color: #2c1810;
    --accent-color: #ff6b35;
    --text-dark: #2c1810;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #faf9f7;
    --gradient-primary: linear-gradient(135deg, #b3893a 0%, #815d01 100%);
    --gradient-dark: linear-gradient(135deg, #2c1810 0%, #3d2817 100%);
    --shadow-light: 0 5px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 15px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== TYPOGRAPHY ========== */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-padding {
    padding: 100px 0;
}

.premium-section {
    background: var(--light-bg);
}

/* ========== SIMPLIFIED PREMIUM NAVIGATION ========== */
.premium-navbar {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(121, 121, 121, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.premium-navbar.scrolled {
    background-color: rgba(124, 98, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    padding: 0.8rem 0;
}

.premium-navbar.scrolled .navbar-nav .nav-link {
    color: var(--white) !important;
}

.premium-navbar.scrolled .logo-text {
    color: var(--primary-color);
}

.premium-navbar.scrolled .logo-subtitle {
    color: var(--text-light);
}

.premium-navbar.scrolled .toggler-line {
    background: var(--primary-color);
}

/* Simplified Logo */
.premium-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.premium-navbar.scrolled .logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.premium-navbar.scrolled .logo-text {
    font-size: 1.6rem;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 2px;
    opacity: 0.9;
}

 

/* Simplified Navigation Links */
.premium-nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 0.2rem;
}

.premium-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.premium-nav-link:hover::after,
.premium-nav-link.active::after {
    width: 60%;
}

.premium-nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.1);
}

.premium-navbar.scrolled .premium-nav-link:hover {
    background: rgba(184, 134, 11, 0.1);
}

/* Simplified CTA Button */
.premium-cta-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.premium-cta-btn:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Simplified Mobile Toggler */
.premium-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 25px;
    position: relative;
    background: transparent;
    z-index: 999;
}

.toggler-line {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.premium-toggler:focus {
    box-shadow: none;
}

.premium-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.premium-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.premium-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Dropdown */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .premium-nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .premium-nav-link:last-child {
        border-bottom: none;
    }
    
    .premium-cta-btn {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    body {
        padding-top: 70px;
    }
}

/* ========== PREMIUM HERO SECTION ========== */
/* ========== HERO SECTION WITH IMAGE SLIDER ========== */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #1a1a1a;
}

/* Enhanced Hero Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
}

.hero-title .main-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.title-word {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

.title-underline {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
    opacity: 0.8;
    animation: drawLine 2s ease-out forwards;
}

.hero-title .branch-name {
    display: block;
    font-size: 1.6rem;
    color: #1a1a1a;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #333333;
    max-width: 500px;
    font-weight: 300;
}

.hero-description em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 134, 11, 0.3);
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.hero-btn-primary:hover .btn-shine {
    left: 100%;
    transition: left 0.6s ease-out;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    color: var(--white);
}

.hero-btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transform: scale(0);
    transition: var(--transition);
}

.hero-btn-outline:hover .btn-border-animation {
    transform: scale(1);
}

.hero-btn-outline:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555555;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Hero Image Section with Slider */
.hero-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-image-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25),
                0 15px 40px rgba(0, 0, 0, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85) translateY(50px) rotateX(5deg);
    filter: blur(15px);
    backface-visibility: hidden;
}

.hero-image-container.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0) rotateX(0deg);
    z-index: 2;
    filter: blur(0);
    animation: slideEnterPremium 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideEnterPremium {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(50px) rotateX(5deg);
        filter: blur(15px);
    }
    60% {
        transform: scale(1.02) translateY(-5px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

.hero-image-container.active .hero-image {
    animation: kenBurnsZoomPremium 25s ease-in-out infinite alternate;
}

@keyframes kenBurnsZoomPremium {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.08) translate(-2%, 1%);
    }
    50% {
        transform: scale(1.12) translate(1%, -2%);
    }
    75% {
        transform: scale(1.06) translate(-1%, 2%);
    }
    100% {
        transform: scale(1.1) translate(2%, -1%);
    }
}

/* Image Slider Navigation Buttons - Modern Glassmorphism */
.image-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
}

.hero-image-section:hover .image-slider-btn {
    opacity: 1;
    visibility: visible;
}

.image-slider-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.image-slider-btn:hover::before {
    opacity: 0.2;
}

.image-slider-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.image-prev {
    left: 20px;
}

.image-next {
    right: 20px;
}

/* Image Slider Dots - Modern Progress Indicators */
.image-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.image-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.image-slider-dots .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.image-slider-dots .dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.image-slider-dots .dot.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* Modern Progress Bar */
.slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.slider-progress-bar .progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, #d4af37 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: progressFill 5s linear, gradientShift 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.8);
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.slide-counter .current-slide {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-counter .counter-divider {
    opacity: 0.5;
    margin: 0 4px;
}

.slide-counter .total-slides {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Image Overlay Effect */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-image-container.active::before {
    opacity: 1;
}

/* Image Overlay for better text visibility */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-image-container.active .image-overlay {
    opacity: 1;
}

/* Slide Captions - Modern Typography */
.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 40px;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.caption-content {
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.caption-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Autoplay Control Button */
.slider-autoplay-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-autoplay-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.slider-autoplay-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-autoplay-btn i {
    transition: transform 0.3s ease;
}

/* Slider Thumbnails - Professional Gallery Preview */
.slider-thumbnails {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    padding: 10px 10px;
    background: rgb(255 255 255 / 26%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.slider-thumbnails .thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-thumbnails .thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    opacity: 1;
}

.slider-thumbnails .thumbnail.active::after,
.slider-thumbnails .thumbnail:hover::after {
    opacity: 0;
}

.slider-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.slider-thumbnails .thumbnail:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slider-thumbnails .thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.5);
}

.slider-thumbnails .thumbnail.active img {
    transform: scale(1.1);
}

/* Responsive adjustments for modern slider */
/* Slider specific mobile styles handled in main 768px media query below *//* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-text {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.scroll-arrow i {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* Duplicate rule removed - see line 713 */

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.frame-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-color);
    z-index: 2;
}

.frame-decoration.top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.frame-decoration.top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 20px 0 0;
}

.frame-decoration.bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 20px;
}

.frame-decoration.bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.1);
}

.image-overlay-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rating-card {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.chef-card {
    top: 50%;
    left: -30px;
    animation-delay: 2s;
}

.award-card {
    bottom: 20px;
    right: 10px;
    animation-delay: 4s;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-number {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.card-subtext {
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.floating-card:hover .card-glow {
    opacity: 0.1;
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: -10%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: -15%;
    animation-direction: reverse;
}

.deco-line {
    position: absolute;
    width: 2px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.3;
}

.line-1 {
    top: 30%;
    left: 10%;
    transform: rotate(25deg);
    animation: pulse 3s ease-in-out infinite;
}

.line-2 {
    bottom: 30%;
    right: 15%;
    transform: rotate(-25deg);
    animation: pulse 3s ease-in-out infinite reverse;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    position: relative;
    font-size: 1.5rem;
}

.arrow-animation {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: var(--primary-color);
    animation: arrowMove 2s ease-in-out infinite;
}

/* Animations */
@keyframes luxuryPattern {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateX(20px) translateY(-10px) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-10px) translateY(15px) rotate(-0.5deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(15px) translateY(-5px) rotate(0.5deg);
        opacity: 0.8;
    }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes drawLine {
    0% { stroke-dasharray: 200; stroke-dashoffset: 200; }
    100% { stroke-dasharray: 200; stroke-dashoffset: 0; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes arrowMove {
    0%, 100% { opacity: 0; top: 100%; }
    50% { opacity: 1; top: 130%; }
}

/* ========== MENU SECTION ========== */
.menu-detailed {
    background: linear-gradient(135deg, #1a2e1a 0%, #0f1e0f 100%);
    color: var(--white);
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a2e1a 0%, #0f1e0f 100%);
}

.menu-detailed .section-subtitle {
    color: #c9a961;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    position: relative;
}

.menu-detailed .section-subtitle::before,
.menu-detailed .section-subtitle::after {
    content: '✕';
    position: absolute;
    color: #c9a961;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-detailed .section-subtitle::before {
    left: -30px;
}

.menu-detailed .section-subtitle::after {
    right: -30px;
}

.menu-detailed .section-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.menu-detailed .section-divider {
    background: #c9a961;
    width: 60px;
    height: 2px;
    margin: 2rem auto 4rem;
}

.menu-section-card {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.menu-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.menu-item-detail {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-detail:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.item-name {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

.item-price {
    color: #c9a961;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 1rem;
    white-space: nowrap;
}

.item-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.hot-label, .veg-label {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hot-label {
    background-color: #ff4444;
    color: white;
}

.veg-label {
    background-color: #4CAF50;
    color: white;
}

.menu-featured-image {
    margin: 3rem 0;
    text-align: center;
}

.menu-featured-image img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #c9a961;
    padding: 5px;
    background: #1a2e1a;
}

/* Decorative corners */
.menu-detailed::before,
.menu-detailed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid #c9a961;
    z-index: 1;
}

.menu-detailed::before {
    top: 30px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.menu-detailed::after {
    bottom: 30px;
    right: 30px;
    border-left: none;
    border-top: none;
}

/* Legacy menu styles for backwards compatibility */
.menu-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.menu-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-overlay h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.menu-card:hover .menu-overlay {
    opacity: 0.9;
}

.menu-content {
    padding: 2rem;
}

.menu-category {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.menu-items li:last-child {
    border-bottom: none;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========== PREMIUM GALLERY SECTION ========== */
.premium-gallery-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.premium-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* Gallery Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

/* Premium Gallery Grid */
.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    grid-auto-rows: minmax(200px, auto);
}

.gallery-item-premium.large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item-premium.medium {
    grid-row: span 2;
}

.gallery-item-premium.small {
    grid-row: span 1;
}

/* Gallery Card Premium */
.gallery-card-premium {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.gallery-item-premium {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Premium Lightbox Modal */
.premium-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-lightbox-modal.active {
    opacity: 1;
}

/* Gallery Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.9) contrast(1.1);
}

.gallery-card-premium:hover .gallery-image-premium {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

/* Gallery Frame */
.gallery-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    background: linear-gradient(45deg, transparent 40%, rgba(184, 134, 11, 0.1) 50%, transparent 60%);
}

.gallery-card-premium:hover .gallery-frame {
    opacity: 1;
    transform: scale(0.95);
}

/* Gallery Overlay Premium */
.gallery-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.9) 0%, rgba(184, 134, 11, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gallery-card-premium:hover .gallery-overlay-premium {
    opacity: 1;
}

/* Gallery Content */
.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card-premium:hover .gallery-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.gallery-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.gallery-card-premium:hover .gallery-icon {
    background: var(--white);
    transform: scale(1.1);
}

.gallery-card-premium:hover .gallery-icon i {
    color: var(--primary-color);
}

.gallery-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.view-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Premium Lightbox Modal */
.premium-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.premium-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: scaleIn 0.3s ease-out;
}

.premium-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.premium-lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Lightbox Navigation */
.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.lightbox-nav {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    pointer-events: all;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Lightbox Image Container */
.lightbox-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Lightbox Info */
.lightbox-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.lightbox-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.lightbox-info p {
    margin: 0;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .premium-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-item-premium.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .premium-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item-premium.large,
    .gallery-item-premium.medium,
    .gallery-item-premium.small {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .gallery-filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .lightbox-navigation {
        padding: 0 1rem;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .premium-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .gallery-card-premium {
        min-height: 250px;
    }
    
    .gallery-content {
        padding: 1rem;
    }
    
    .gallery-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .gallery-icon i {
        font-size: 1.3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .lightbox-info {
        bottom: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .lightbox-info h4 {
        font-size: 1.2rem;
    }
}

/* Legacy gallery styles for backwards compatibility */
.gallery-section {
    background: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.8;
}

/* Old Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    color: var(--white);
    float: right;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: 20px;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

#lightboxImage {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h6 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    background: linear-gradient(135deg, rgb(0 0 0 / 95%) 0%, rgba(60, 40, 23, 0.95) 100%), url(https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80) center / cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}

.booking-section .section-title,
.booking-section .section-subtitle {
    color: var(--white);
}

.booking-section .section-subtitle {
    color: var(--primary-color);
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.premium-card {
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.premium-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
    outline: none;
    color: var(--white);
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    pointer-events: none;
    background: transparent;
    padding: 0 0.25rem;
}

.premium-input:focus + .floating-label,
.premium-input:not(:placeholder-shown) + .floating-label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(44, 24, 16, 0.9);
}

/* ========== CAREERS SECTION ========== */
.careers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f5f5f5" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

.careers-card {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.careers-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.careers-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.careers-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.careers-content {
    text-align: center;
}

.careers-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.careers-qualities {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.quality-item:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.quality-text {
    text-align: left;
}

.quality-text h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.quality-text p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.careers-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(184, 134, 11, 0.1);
}

.careers-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #666666;
}

.careers-contact-info i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Responsive Careers Section */
@media (max-width: 768px) {
    .careers-card {
        padding: 3rem 2rem;
    }
    
    .careers-title {
        font-size: 2rem;
    }
    
    .careers-description {
        font-size: 1rem;
    }
    
    .careers-qualities {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quality-item {
        min-width: auto;
        width: 100%;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
}

.contact-title {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-buttons {
    margin-top: 2rem;
}

.premium-btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.premium-btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
.footer-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 2rem 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== RESPONSIVE DESIGN ========== */
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero-title .main-title {
        font-size: 4rem;
    }
    
    .floating-card {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title .main-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-slider {
        max-width: 500px;
        height: 500px;
        margin: 2rem auto 0;
    }
    
    .hero-image-section {
        margin-top: 3rem;
    }
    
    .image-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .image-prev {
        left: 15px;
    }
    
    .image-next {
        right: 15px;
    }
    
    .image-slider-dots {
        bottom: 80px;
        gap: 8px;
    }
    
    .image-slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .image-slider-dots .dot.active {
        width: 30px;
    }
    
    .slider-thumbnails {
        bottom: 15px;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .slider-thumbnails .thumbnail {
        width: 65px;
        height: 65px;
    }
    
    .slide-caption {
        bottom: 100px;
        left: 15px;
        right: 15px;
    }
    
    .caption-content {
        padding: 15px 20px;
    }
    
    .caption-title {
        font-size: 1.5rem;
    }
    
    .caption-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 10px 0 50px;
    }
    .menu-card-main{
        padding: 80px 10px !important;
    }
    .menu-card-main::before{
        content: none !important;
    }
    .menu-card-main { 
        background: var(--secondary-color) !important; 
    }
    
    .hero-title .subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-title .main-title {
        font-size: 2.5rem;
    }
    
    .hero-title .branch-name {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-btn-primary,
    .hero-btn-outline {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 1rem 0.8rem;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 0.5rem;
        flex: 0 0 auto;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .hero-image-slider {
        max-width: 100%;
        height: 400px;
        margin-top: 3rem;
    }
    
    .hero-image-section {
        margin-top: 2rem;
    }
    
    .image-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .image-prev {
        left: 10px;
    }
    
    .image-next {
        right: 10px;
    }
    
    .slider-thumbnails {
        bottom: 10px;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .slider-thumbnails .thumbnail {
        width: 55px;
        height: 55px;
    }
    
    .image-slider-dots {
        bottom: 70px;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .image-slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .image-slider-dots .dot.active {
        width: 25px;
    }
    
    .slide-caption {
        bottom: 90px;
        left: 15px;
        right: 15px;
    }
    
    .caption-content {
        padding: 12px 18px;
    }
    
    .caption-title {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .caption-subtitle {
        font-size: 0.85rem;
    }
    
    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .slide-counter .current-slide {
        font-size: 1rem;
    }
    
    .slider-autoplay-btn {
        width: 38px;
        height: 38px;
        top: 15px;
        left: 15px;
        font-size: 0.9rem;
    }
    
    .frame-decoration {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .premium-nav-link {
        padding: 0.8rem 1rem !important;
    }
    
    .premium-cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        border-radius: 15px;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .nav-hover-effect {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title .main-title {
        font-size: 2rem;
    }
    
    .hero-title .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title .branch-name {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-image-slider {
        height: 350px;
        max-width: 100%;
    }
    
    .hero-stats {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-btn-primary,
    .hero-btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .slider-thumbnails {
        bottom: 8px;
        gap: 6px;
        padding: 6px 10px;
    }
    
    .slider-thumbnails .thumbnail {
        width: 48px;
        height: 48px;
    }
    
    .slide-caption {
        bottom: 65px;
        left: 10px;
        right: 10px;
    }
    
    .caption-content {
        padding: 10px 15px;
    }
    
    .caption-title {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .caption-subtitle {
        font-size: 0.75rem;
    }
    
    .image-slider-dots {
        bottom: 60px;
        gap: 5px;
        padding: 6px 10px;
    }
    
    .image-slider-dots .dot {
        width: 6px;
        height: 6px;
    }
    
    .image-slider-dots .dot.active {
        width: 20px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .slide-counter .current-slide {
        font-size: 0.9rem;
    }
    
    .slider-autoplay-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        left: 10px;
        font-size: 0.85rem;
    }
    
    .image-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin: 0.5rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .card-number {
        font-size: 1.1rem;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        font-size: 1.3rem;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .deco-circle {
        display: none;
    }
    
    .deco-line {
        display: none;
    }
}

/* ========== ADDITIONAL PREMIUM EFFECTS ========== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Loading Animation */
.loading-spinner {
    border: 3px solid rgba(184, 134, 11, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ========== MENU CARD STYLES ========== */

.menu-card-style-section{
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
}

.menu-card-style-section .title-box{
  z-index: 100;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.menu-card-main .top-pattern{
  /* background-image: url(https://kalanidhithemes.com/live-preview/landing-page/restoria/all-demo/Restoria-4-Category-Hero/images/resource/pattern-bg-dark.png); */
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  width: 100%;
  height: 350px;
  left: 0;
  top: 0;
  position: absolute;
}

.menu-card-main {
  position: relative;
  padding: 80px 70px;
  background: var(--secondary-color);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #c2c2c2 50%, #ffffff 54%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2c1810", endColorstr="#2c1810", GradientType=1);
  font-family: 'Inter', sans-serif;
}

.menu-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #b3893a5e;
  transform: translateX(-50%);
  z-index: 1;
}

.menu-card-style .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* vertically center image-col and menu-col */
}

.menu-card-main .menu-card-corner {
  position: absolute;
}

.menu-card-main .menu-card-corner.top-left {
  top: -2px;
  left: -2px;
}

.menu-card-main .menu-card-corner.top-right {
  top: -2px;
  right: -2px;
}

.menu-card-main .menu-card-corner.bottom-left {
  bottom: -2px;
  left: -2px;
}

.menu-card-main .menu-card-corner.bottom-right {
  bottom: -2px;
  right: -2px;
}

.menu-card-style,
.menu-card-style.alternate{
  padding-bottom: 10px;
      padding-top: 25px;
}

.menu-card-style.last,
.menu-card-style.alternate.last{
  padding-bottom: 0;
}

.menu-card-style .image-col{
  position: relative;
}

.menu-card-style.alternate .image-col{
  order: 12;
}

.menu-card-style .image-col .inner{
  position: relative;
  display: block;
  text-align: left;
}

.menu-card-style.alternate .image-col .inner{
  position: relative;
  display: block;
  text-align: right;
}

.menu-card-style .image-col .image img{
  position: relative;
  display: block;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.menu-card-style .image-col .image,
.menu-card-style.alternate .image-col .image{
  position: relative;
  display: inline-block;
  border-radius: 400px 400px 0 0;
  overflow: hidden;
}

.menu-card-style .image-col .image img,
.menu-card-style.alternate .image-col .image img{
  display: block;
  border-radius: 400px 400px 0 0;
  position: relative;
  z-index: 1;
}

.menu-card-style .image-col .image::before,
.menu-card-style.alternate .image-col .image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 400px 400px 0 0;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.menu-card-style .menu-col{
  position: relative;
}

.menu-card-style.alternate .menu-col{
  order: 0;
}

.menu-card-style .menu-col .inner{
  position: relative;
  display: block;
  padding-left: 20px;
  min-height: 100%;
  padding: 0 0 0 100px;
}

.menu-card-style.alternate .menu-col .inner{
  padding: 0 100px 0 0;
}

.menu-card-style.alternate .menu-col.menu-right .inner {
    padding: 0 50px 0 50px;
}

.menu-card-style .menu-col .dish-block{
  position: relative;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
}

.menu-card-style .menu-col .dish-block .inner-box{
  position: relative;
}

.menu-card-style .menu-col .dish-block .title{
  position: relative;
  line-height: 24px;
  margin-bottom: 5px;
  display: flex;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
}

.menu-card-style .menu-col .dish-block .title .menu-list-line {
  flex-grow: 1;
  margin-left: 10px;
  margin-right: 10px;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: rgb(204 152 23);
  height: 17px;
}

.menu-card-style .menu-col .dish-block .title .ttl{
  position: relative;
  float: left;
  text-transform: capitalize;
  font-family: 'Playfair Display', serif;
  color: var(--white);
}

.menu-card-style .menu-col .dish-block .title .ttl a{
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.menu-card-style .menu-col .dish-block .title .ttl a:hover{
  color: var(--text-dark);
}

.menu-card-style .menu-col .dish-block .title .ttl .s-info{
  position: relative;
  display: inline-block;
  line-height: 16px;
  padding: 0 5px;
  font-size: 12px;
  color: var(--white);
  background: var(--primary-color);
  margin-left: 8px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
}

.menu-card-style .menu-col .dish-block .title .price{
  position: relative;
  float: right;
  font-size: 16px;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

/* ========== SLIDING MENU SYSTEM ========== */
.menu-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    perspective: 1000px;
}

.menu-pages-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.menu-page {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(100px) rotateY(15deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left center;
}

.menu-page.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.menu-page.prev {
    opacity: 0.3;
    transform: translateX(-100px) rotateY(-15deg);
}

.menu-page.next {
    opacity: 0.3;
    transform: translateX(100px) rotateY(15deg);
}

/* Menu Navigation Controls */
.menu-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.menu-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.menu-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

.menu-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.menu-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-nav-btn:hover::before {
    left: 100%;
}

/* Page Indicators */
.menu-page-indicators {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.page-indicator {
    width: auto;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.page-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.6);
}

.page-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-indicator.active::after {
    opacity: 1;
}

/* Page Title Enhancement */
.menu-page-title {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    position: relative;
}

.menu-page-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.menu-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Page Number Display */
.page-number-display {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-number-display i {
    color: var(--primary-color);
}

/* Loading State */
.menu-loading {
    display: none;
    text-align: center;
    padding: 3rem 0;
    color: var(--white);
}

.menu-loading.active {
    display: block;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Menu Card Transitions */
.menu-card-main {
    transition: all 0.5s ease;
}

.menu-page:not(.active) .menu-card-style {
    transform: scale(0.95);
    opacity: 0.7;
}

.menu-page.active .menu-card-style {
    transform: scale(1);
    opacity: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .menu-navigation {
        gap: 1rem;
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .menu-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .menu-page-title h3 {
        font-size: 2rem;
    }
    
    .page-number-display {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .menu-page {
        transform: translateX(50px) rotateY(10deg);
    }
    
    .menu-page.prev {
        transform: translateX(-50px) rotateY(-10deg);
    }
    
    .menu-page.next {
        transform: translateX(50px) rotateY(10deg);
    }
}

.menu-card-style .menu-col .dish-block .desc{
  position: relative;
  font-size: 15px;
  color: var(--white);
  max-width: 350px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.menu-card-style .menu-col .dish-block .desc a{
  color: var(--primary-color);
}

.auto-container{
    position: static;
    max-width: 1326px;
    padding: 0px 20px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.title-box .title-badge {
    width: 205px;
    margin: 0 auto;
    text-align: center;
    padding : 0 0 10px 0;
}
.title-box h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 60px;
}
.title-box h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.menu-card-style a { 
    text-decoration: none;
}

/* ===== REALISTIC FLIPBOOK MENU STYLES ===== */
.flipbook-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    perspective: 2000px;
    min-height: 600px;
}

.flipbook {
    width: 800px;
    height: 600px;
    position: relative;
    margin: 0 auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, #2c1810, #1a0f08);
}

.flipbook .page {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: 
        linear-gradient(145deg, #3d2817, #2c1810),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paper" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23f4f1e8"/><circle cx="20" cy="20" r="0.5" fill="%23e8e1d3" opacity="0.3"/><circle cx="80" cy="60" r="0.3" fill="%23ddd4c4" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23paper)"/></svg>');
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #f4f1e8;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.flipbook .page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.1) 70%),
        linear-gradient(to right, rgba(0,0,0,0.1) 0%, transparent 5%, transparent 95%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.flipbook .page.cover-page {
    background: 
        linear-gradient(145deg, #d4af37, #b8941f),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leather" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23d4af37"/><circle cx="5" cy="5" r="1" fill="%23b8941f" opacity="0.3"/><circle cx="15" cy="15" r="0.8" fill="%23a67c00" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23leather)"/></svg>');
    color: #2c1810;
    border: 2px solid #8b6914;
}

.flipbook .page.back-cover {
    background: 
        linear-gradient(145deg, #8b6914, #d4af37),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leather2" patternUnits="userSpaceOnUse" width="15" height="15"><rect width="15" height="15" fill="%238b6914"/><circle cx="3" cy="7" r="0.5" fill="%23d4af37" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23leather2)"/></svg>');
}

.page-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Cover Page Styling */
.cover-design {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.cover-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #2c1810, #5d3a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cover-title p {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    opacity: 0.8;
}

.cover-decoration {
    margin-top: 2rem;
    font-size: 3rem;
    opacity: 0.7;
}

/* Back Cover Styling */
.back-cover-design {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f4f1e8;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #d4af37;
    opacity: 0.9;
}

.contact-info i {
    color: #d4af37;
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: #f4f1e8;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #2c1810;
    transform: translateY(-3px);
}

/* Menu Page Styling */
.menu-page-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

.menu-page-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-decoration {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 1rem auto 0;
}

.menu-items-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.menu-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-item-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
    color: #f4f1e8;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    white-space: nowrap;
}

.description {
    color: rgba(244, 241, 232, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Menu Item Badges */
.badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    animation: pulse 2s infinite;
}

.badge.vegetarian {
    background: linear-gradient(45deg, #26de81, #20bf6b);
    color: white;
}

.badge.chef-special {
    background: linear-gradient(45deg, #d4af37, #f39c12);
    color: #2c1810;
}

.badge.signature {
    background: linear-gradient(45deg, #9c88ff, #8c7ae6);
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Page Image */
.page-image {
    text-align: center;
    margin-top: auto;
}

.menu-section-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.menu-section-image:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

/* Flipbook Controls */
.flipbook-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.flip-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, #d4af37, #b8941f);
    color: #2c1810;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.flip-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.flip-btn:hover::before {
    left: 100%;
}

.flip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.flip-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.flip-btn:disabled::before {
    display: none;
}

.page-info {
    background: rgba(44, 24, 16, 0.8);
    color: #f4f1e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

/* Turn.js Enhancement */
.flipbook .hard {
    background: #d4af37 !important;
    color: #2c1810 !important;
}

.flipbook .page-wrapper {
    perspective: 2000px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flipbook {
        width: 95%;
        max-width: 600px;
        height: 500px;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .cover-title h2 {
        font-size: 2.5rem;
    }
    
    .menu-page-header h3 {
        font-size: 2rem;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .flipbook-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flip-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .flipbook {
        height: 400px;
    }
    
    .page-content {
        padding: 1.5rem 1rem;
    }
    
    .cover-title h2 {
        font-size: 2rem;
    }
    
    .menu-items-grid {
        gap: 1rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
}

/* ====================================
   MENU FLIP PAGE EFFECT STYLES
   ==================================== */

.menu-flip-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px auto 20px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    max-width: 485px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flip-nav-btn {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #bfa76a;
    border: 2px solid rgba(191, 167, 106, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.flip-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 167, 106, 0.3), transparent);
    transition: left 0.5s;
}

.flip-nav-btn:hover::before {
    left: 100%;
}

.flip-nav-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(191, 167, 106, 0.6);
    box-shadow: 0 8px 25px rgba(191, 167, 106, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, #333 0%, #1f1f1f 100%);
}

.flip-nav-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.2);
}

.flip-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    border-color: rgba(191, 167, 106, 0.1);
}

.flip-nav-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.flip-nav-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.flip-nav-btn:hover i {
    transform: scale(1.2);
}

.flip-nav-btn.prev-page:hover i {
    transform: translateX(-3px) scale(1.2);
}

.flip-nav-btn.next-page:hover i {
    transform: translateX(3px) scale(1.2);
}

.page-indicator {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.page-indicator .current-page {
    color: #bfa76a;
    font-size: 16px;
    font-weight: 700;
}

.menu-flipbook {
    position: relative;
    perspective: 2500px;
    perspective-origin: center;
    min-height: 600px;
}

/* Flip Preloader */
.flip-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

.flip-preloader.active {
    opacity: 1;
    visibility: visible;
}

.flip-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #bfa76a;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
    border-top-color: #bfa76a;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.5s;
    border-top-color: rgba(191, 167, 106, 0.6);
    width: 70%;
    height: 70%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -1s;
    border-top-color: rgba(191, 167, 106, 0.3);
    width: 50%;
    height: 50%;
}

.flip-spinner i {
    font-size: 24px;
    color: #bfa76a;
    z-index: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

.flip-loading-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.menu-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: left center;
    transition: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.menu-page.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg) translateZ(0);
    z-index: 2;
}

.menu-page.flip-out-left {
    animation: flipOutLeft 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.menu-page.flip-out-right {
    animation: flipOutRight 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.menu-page.flip-in-left {
    animation: flipInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.menu-page.flip-in-right {
    animation: flipInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Realistic page turn animations with curl effect */
@keyframes flipOutLeft {
    0% {
        transform: rotateY(0deg) translateZ(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
    25% {
        transform: rotateY(15deg) translateZ(50px) translateX(-20px) scale(1.02);
        filter: brightness(1.1);
    }
    50% {
        transform: rotateY(60deg) translateZ(80px) translateX(-40px) scale(1.05);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: rotateY(100deg) translateZ(60px) translateX(-30px) scale(1.02);
        opacity: 0.5;
        filter: brightness(0.8);
    }
    100% {
        transform: rotateY(180deg) translateZ(0) translateX(0) scale(0.95);
        opacity: 0;
        filter: brightness(0.5);
    }
}

@keyframes flipOutRight {
    0% {
        transform: rotateY(0deg) translateZ(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
    25% {
        transform: rotateY(-15deg) translateZ(50px) translateX(20px) scale(1.02);
        filter: brightness(1.1);
    }
    50% {
        transform: rotateY(-60deg) translateZ(80px) translateX(40px) scale(1.05);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: rotateY(-100deg) translateZ(60px) translateX(30px) scale(1.02);
        opacity: 0.5;
        filter: brightness(0.8);
    }
    100% {
        transform: rotateY(-180deg) translateZ(0) translateX(0) scale(0.95);
        opacity: 0;
        filter: brightness(0.5);
    }
}

@keyframes flipInLeft {
    0% {
        transform: rotateY(-180deg) translateZ(0) translateX(0) scale(0.95);
        opacity: 0;
        filter: brightness(0.5);
    }
    25% {
        transform: rotateY(-100deg) translateZ(60px) translateX(30px) scale(1.02);
        opacity: 0.5;
        filter: brightness(0.8);
    }
    50% {
        transform: rotateY(-60deg) translateZ(80px) translateX(40px) scale(1.05);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: rotateY(-15deg) translateZ(50px) translateX(20px) scale(1.02);
        filter: brightness(1.1);
    }
    100% {
        transform: rotateY(0deg) translateZ(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
}

@keyframes flipInRight {
    0% {
        transform: rotateY(180deg) translateZ(0) translateX(0) scale(0.95);
        opacity: 0;
        filter: brightness(0.5);
    }
    25% {
        transform: rotateY(100deg) translateZ(60px) translateX(-30px) scale(1.02);
        opacity: 0.5;
        filter: brightness(0.8);
    }
    50% {
        transform: rotateY(60deg) translateZ(80px) translateX(-40px) scale(1.05);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: rotateY(15deg) translateZ(50px) translateX(-20px) scale(1.02);
        filter: brightness(1.1);
    }
    100% {
        transform: rotateY(0deg) translateZ(0) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
}

/* Add realistic page corner curl on hover */
.menu-page.active .menu-card-style {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.menu-page.active .menu-card-style::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    transition: all 0.3s ease;
}

.menu-page.active .menu-card-style:hover::after {
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.1) transparent;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .menu-flip-controls {
        max-width: 90%;
        padding: 20px 30px;
        gap: 20px;
    }
    
    .flip-nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-flip-controls {
        max-width: 100%;
        padding: 18px 20px;
        gap: 15px;
        border-radius: 40px;
    }
    
    .flip-nav-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .flip-nav-btn span {
        display: none;
    }
    
    .flip-nav-btn i {
        margin: 0;
    }
    
    .page-indicator {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .page-indicator .current-page {
        font-size: 16px;
    }

    .menu-flipbook {
        perspective: 1500px;
    }

    /* Menu content responsive adjustments */
    .menu-card-style .menu-col .inner {
        padding: 0 40px 0 40px;
    }

    .menu-card-style.alternate .menu-col .inner {
        padding: 0 40px 0 40px;
    }

    .menu-card-style.alternate .menu-col.menu-right .inner {
        padding: 0 40px 0 40px;
    }

    .menu-card-style .menu-col .dish-block {
        margin-bottom: 25px;
    }

    .menu-card-style .menu-col .dish-block .title .ttl h6 {
        font-size: 15px;
    }

    .menu-card-style .menu-col .dish-block .text.desc {
        font-size: 13px;
        line-height: 1.4;
    }

    .menu-card-style .title-box h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .menu-flip-controls {
        padding: 12px 15px;
        gap: 10px;
        border-radius: 30px;
        max-width: 100%;
        margin: 20px auto 15px;
    }

    .flip-nav-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 40px;
    }

    .page-indicator {
        font-size: 11px;
        padding: 6px 12px;
    }

    .page-indicator .current-page {
        font-size: 14px;
    }

    /* Single column layout for mobile */
    .menu-card-style .menu-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .menu-card-style .menu-col .inner {
        padding: 0 20px;
    }

    .menu-card-style.alternate .menu-col .inner {
        padding: 0 20px;
    }

    .menu-card-style.alternate .menu-col.menu-right .inner {
        padding: 0 20px;
    }

    .menu-card-style .menu-col .dish-block {
        margin-bottom: 20px;
    }

    .menu-card-style .menu-col .dish-block .title .ttl h6 {
        font-size: 14px;
    }

    .menu-card-style .menu-col .dish-block .title .price span {
        font-size: 14px;
    }

    .menu-card-style .menu-col .dish-block .text.desc {
        font-size: 12px;
        line-height: 1.3;
    }

    .menu-card-style .title-box h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    /* Adjust page content height for mobile */
    .menu-page {
        min-height: 500px;
    }

    /* Reduce flip animation intensity on mobile */
    .menu-page {
        transform: translateX(50px) rotateY(8deg);
    }

    .menu-page.prev {
        transform: translateX(-50px) rotateY(-8deg);
    }

    .menu-page.next {
        transform: translateX(50px) rotateY(8deg);
    }
}

@media (max-width: 400px) {
    .menu-flip-controls {
        padding: 10px 12px;
        gap: 8px;
    }

    .flip-nav-btn {
        padding: 6px 10px;
        min-width: 36px;
    }

    .page-indicator {
        font-size: 10px;
        padding: 5px 10px;
    }

    .page-indicator .current-page {
        font-size: 13px;
    }

    .menu-card-style .menu-col .inner {
        padding: 0 15px;
    }

    .menu-card-style.alternate .menu-col .inner {
        padding: 0 15px;
    }

    .menu-card-style.alternate .menu-col.menu-right .inner {
        padding: 0 15px;
    }

    .menu-card-style .menu-col .dish-block .title .ttl h6 {
        font-size: 13px;
    }

    .menu-card-style .menu-col .dish-block .title .price span {
        font-size: 13px;
    }

    .menu-card-style .title-box h3 {
        font-size: 20px;
    }

    .flip-preloader .preloader-text {
        font-size: 12px;
    }
}
