/*******************************/
/******* Index Page CSS ********/
/*******************************/

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

/* Dynamic Background Slideshow */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: kenBurns 12s ease-in-out infinite;
    z-index: 1;
}

.bg-slide.active {
    opacity: 1;
    z-index: 2;
}

@keyframes kenBurns {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(0.5deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}

/* Modern Gradient Overlay */
.hero-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(212, 165, 116, 0.2) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 15vh;
}

.hero-main-content {
    color: white;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: 15vh;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 165, 116, 0.4);
    padding: 8px 15px;
    border-radius: 25px;
    margin-bottom: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.3);
    animation: premiumGlow 3s ease-in-out infinite;
}

@keyframes premiumGlow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
        border-color: rgba(212, 165, 116, 0.4);
    }
    50% { 
        box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
        border-color: rgba(212, 165, 116, 0.6);
    }
}

@keyframes premiumPulse {
    0%, 100% { 
        transform: translateY(0);
        box-shadow: 0 8px 32px rgba(212, 165, 116, 0.3);
    }
    50% { 
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
    }
}

.premium-badge i {
    color: #d4a574;
    font-size: 0.9rem;
}

/* Hero Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px 0 10px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Welcome Tagline */
.welcome-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
}

/* Hero Description */
.hero-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-tagline span {
    background: linear-gradient(135deg, #d4a574 0%, #f7e7ce 50%, #d4a574 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: welcomeGradient 3s ease-in-out infinite;
}

@keyframes welcomeGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d4a574;
    background: rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(15px);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.feature-item i {
    font-size: 1rem;
    color: #f7e7ce;
}

/* Enhanced Button Styles */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    position: relative;
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 85px;
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: 1px;
}

.hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-btn i {
    transition: transform 0.3s ease;
    margin-right: 6px;
}

.hero-btn:hover i {
    transform: translateX(2px);
}

.btn-primary.hero-btn {
    background: linear-gradient(135deg, #d4a574 0%, #e8c597 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: #fff;
    font-weight: 600;
}

.btn-outline-light.hero-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(15px);
}

.btn-outline-light.hero-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-warning.hero-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ffcd39 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #000;
    font-weight: 600;
}

.btn-warning.hero-btn:hover {
    background: linear-gradient(135deg, #e0a800 0%, #ffb700 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding-top: 12vh;
        padding-bottom: 40px;
    }
    
    .hero-main-content {
        margin-top: 5vh;
    }
    
    .trust-indicators {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .trust-item {
        font-size: 0.6rem;
        padding: 3px 6px;
        gap: 3px;
    }
    
    .hero-features {
        gap: 12px;
        margin: 12px 0;
    }
    
    .feature-item {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .hero-actions {
        gap: 8px;
        margin-top: 20px;
    }
    
    .hero-btn {
        min-width: 85px;
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 5px;
        letter-spacing: 0.3px;
    }
    
    .welcome-tagline {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin: 10px 0 8px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding-top: 10vh;
    }
    
    .hero-main-content {
        margin-top: 4vh;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .welcome-tagline {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .hero-btn {
        min-width: 80px;
        padding: 5px 10px;
        font-size: 0.7rem;
        border-radius: 5px;
        letter-spacing: 0.2px;
    }
}

/* Hero Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0 15px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        margin: 15px 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4a574, #f39c12);
    border-radius: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, #d4a574, #f39c12, #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-accent {
    color: #d4a574;
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, #d4a574, #f39c12);
    border-radius: 2px;
}

/* Hero Description */
.hero-description {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 20px auto 25px;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    font-style: italic;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 25px 0 40px;
}

.hero-btn {
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    border: none;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.hero-btn:hover::before {
    left: 100%;
}

.btn-explore {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 50%, #e67e22 100%);
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-explore::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-explore:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.6);
    color: white;
}

.btn-explore:hover::after {
    opacity: 1;
}

.btn-book {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.btn-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-book:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(212, 165, 116, 0.8);
    color: #d4a574;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.btn-book:hover::after {
    opacity: 1;
}

.hero-btn i {
    margin-right: 6px;
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(212, 165, 116, 0.1));
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: float 8s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-element:hover {
    transform: translateY(-5px) scale(1.05);
}

.element-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 75%;
    left: 3%;
    animation-delay: 2.5s;
}

.element-3 {
    bottom: 10%;
    right: 8%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.element-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.floating-element i {
    font-size: 1.2rem;
    color: #d4a574;
    background: rgba(212, 165, 116, 0.2);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.element-text {
    display: flex;
    flex-direction: column;
}

.element-number {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    color: #d4a574;
}

.element-label {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #d4a574;
    text-decoration: none;
    transform: translateY(-5px);
}

.scroll-down span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .floating-element {
        display: none;
    }
}

@media (max-width: 1200px) {
    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        min-height: 600px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin: 8px auto 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 8px;
        margin: 12px 0;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .premium-badge {
        padding: 6px 10px;
        font-size: 0.6rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
        margin: 8px 0;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin: 6px auto 10px;
        max-width: 300px;
    }
    
    .hero-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
        min-width: 100px;
        max-width: 180px;
    }
    
    .premium-badge {
        padding: 5px 8px;
        font-size: 0.55rem;
    }
}

/* Hero Content Text Styling */
.hero-content-text {
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

/* Main Title */
.hero-main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.text-highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

.text-accent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite reverse;
}

@keyframes textShimmer {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.3) saturate(1.5); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Search Section */
.hero-search-section {
    margin-bottom: 50px;
}

.search-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-container:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Location Selector */
.location-input {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
}

.location-icon {
    color: #e74c3c;
    margin-right: 12px;
    font-size: 1.1rem;
}

.location-input input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.location-input input::placeholder {
    color: #999;
}

.detect-location {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.detect-location:hover {
    background: #f0f0f0;
    color: #e74c3c;
}

/* Food Search */
.search-input {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.search-icon {
    color: #666;
    margin-right: 15px;
    font-size: 1.1rem;
}

.search-input input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.search-input input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Popular Searches */
.popular-searches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.popular-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-right: 10px;
}

.popular-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.popular-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Service Options */
.service-options {
    margin-bottom: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transition: left 0.5s ease;
}

.service-card:hover::before,
.service-card.active::before {
    left: 0;
}

.service-card:hover,
.service-card.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scale(1.1);
}

.service-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 1rem;
}

.service-time {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Dishes Preview */
.featured-dishes-preview {
    margin-bottom: 40px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.dish-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dish-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dish-badge.veg {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.dish-badge.special {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.dish-info {
    padding: 20px;
}

.dish-info h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.dish-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.dish-rating i {
    color: #f39c12;
    font-size: 1rem;
}

.dish-rating span:first-of-type {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
}

.reviews {
    color: #666;
    font-size: 0.85rem;
}

.dish-price {
    color: #e74c3c;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Restaurant Stats Bar */
.restaurant-stats-bar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
}

.stat-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .restaurant-hero-section {
        padding-top: 80px;
    }
    
    .hero-main-content {
        padding: 80px 0 60px;
    }
    
    .search-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .search-input {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .popular-searches {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-tags {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-main-content {
        padding: 60px 0 40px;
    }
    
    .restaurant-badge {
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 6px;
        border-radius: 40px;
    }
    
    .search-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .restaurant-stats-bar {
        padding: 20px 0;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    filter: brightness(0.75) contrast(1.15) saturate(1.1);
    z-index: 1;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.02);
    filter: brightness(0.8) contrast(1.2) saturate(1.2);
    z-index: 2;
    animation: professionalZoom 12s ease-in-out infinite;
}

/* Enhanced overlay gradient */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(139, 69, 19, 0.4) 25%,
        rgba(218, 165, 32, 0.3) 50%,
        rgba(255, 140, 0, 0.35) 75%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 3;
}

/* Additional appetizing overlay */
.hero-slide.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 40%,
        rgba(139, 69, 19, 0.2) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 4;
}

/* Professional zoom animation */
@keyframes professionalZoom {
    0%, 100% {
        transform: scale(1.02);
        filter: brightness(0.8) contrast(1.2) saturate(1.2);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(0.85) contrast(1.25) saturate(1.25);
    }
}

/* Floating animation for better visual appeal */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Add floating effect to hero content */
.hero-content {
    animation: float 6s ease-in-out infinite;
}

/* Breathing effect for buttons */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.2),
            0 4px 15px rgba(139, 69, 19, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.25),
            0 6px 20px rgba(139, 69, 19, 0.4);
    }
}

.hero-btn-primary {
    animation: breathe 4s ease-in-out infinite;
}

/* Shimmer effect for text */
@keyframes shimmerText {
    0% {
        text-shadow: 
            3px 3px 0px rgba(139, 69, 19, 0.8),
            6px 6px 15px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(218, 165, 32, 0.5),
            0 0 60px rgba(255, 140, 0, 0.3);
    }
    50% {
        text-shadow: 
            3px 3px 0px rgba(139, 69, 19, 0.9),
            6px 6px 15px rgba(0, 0, 0, 0.7),
            0 0 50px rgba(218, 165, 32, 0.7),
            0 0 80px rgba(255, 140, 0, 0.5);
    }
    100% {
        text-shadow: 
            3px 3px 0px rgba(139, 69, 19, 0.8),
            6px 6px 15px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(218, 165, 32, 0.5),
            0 0 60px rgba(255, 140, 0, 0.3);
    }
}

.hero-title {
    animation: shimmerText 3s ease-in-out infinite;
}

/* Mobile Hero Section Fix - Remove White Space */
@media (max-width: 991px) {
    .hero-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .premium-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    #home {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-container {
        padding-top: 0;
        margin-top: 0;
    }
    
    .main-wrapper {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
}

/* Animated Background Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 165, 116, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 50%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: 5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 15;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 30px;
    animation: heroContentFadeIn 2s ease-out;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding-bottom: 120px;
    min-height: calc(100vh - 120px);
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #DAA520;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    animation: slideInFromLeft 1s ease-out 0.5s both;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(218, 165, 32, 0.6);
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    text-shadow: 
        3px 3px 0px rgba(139, 69, 19, 0.8),
        6px 6px 15px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(218, 165, 32, 0.5),
        0 0 60px rgba(255, 140, 0, 0.3);
    animation: slideInFromRight 1s ease-out 0.7s both;
    position: relative;
    letter-spacing: -1px;
}

.hero-title .accent {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-shadow: 
        3px 3px 12px rgba(0, 0, 0, 0.8),
        1px 1px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(139, 69, 19, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0 50px 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 15px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
}

.hero-btn i {
    margin-right: 12px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, 
        #DAA520 0%, 
        #FFD700 35%, 
        #FFA500 70%, 
        #FF8C00 100%);
    color: #2c3e50;
    border-color: #DAA520;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, 
        #B8860B 0%, 
        #DAA520 35%, 
        #FF8C00 70%, 
        #FF4500 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(218, 165, 32, 0.4),
        0 6px 20px rgba(139, 69, 19, 0.3),
        0 0 30px rgba(255, 215, 0, 0.5);
    color: white;
    text-decoration: none;
    border-color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(218, 165, 32, 0.8);
    color: white;
    backdrop-filter: blur(15px);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn-secondary:hover {
    background: rgba(218, 165, 32, 0.9);
    border-color: #FFD700;
    color: #2c3e50;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(218, 165, 32, 0.4),
        0 6px 20px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 215, 0, 0.6);
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-btn:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    .hero-content {
        padding-bottom: 80px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
        padding-bottom: 60px;
        min-height: calc(100vh - 100px);
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 500px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0 40px 0;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-slide {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
    
    .hero-content {
        max-width: 1000px;
        padding: 0 20px;
    }


@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
        margin-top: -30px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0 40px 0;
    }
    
    .hero-btn {
        min-width: 250px;
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-btn {
        min-width: 220px;
        padding: 12px 24px;
    }
}

.hero-subtitle::before,
.hero-subtitle::after {
    animation: lineExpand 1s ease-out 1.5s both;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 40px;
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.2),
        4px 4px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 165, 116, 0.3);
    animation: slideInFromRight 1s ease-out 0.7s both;
    position: relative;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(150px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-title .accent {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.hero-title .accent::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 50%, #ff8c00 100%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-out 2s both;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
}

@keyframes underlineGlow {
    0% {
        width: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
    }
    100% {
        width: 100%;
        left: 0;
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
    margin-top: 50px;
    margin-bottom: 60px;
    z-index: 20;
    position: relative;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 220px;
    justify-content: center;
    border: 3px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(0deg);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.hero-btn:hover::after {
    width: 300px;
    height: 300px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 50%, #e67e22 100%);
    color: white;
    border-color: #f39c12;
    box-shadow: 
        0 8px 30px rgba(212, 165, 116, 0.4),
        0 0 0 0 rgba(212, 165, 116, 0.5);
}

.hero-btn-primary:hover {
    color: white;
    background: linear-gradient(135deg, #f39c12 0%, #d4a574 50%, #e67e22 100%);
    transform: perspective(1000px) rotateX(-5deg) translateY(-8px) scale(1.08);
    box-shadow: 
        0 15px 50px rgba(212, 165, 116, 0.6),
        0 0 0 10px rgba(212, 165, 116, 0.1),
        0 0 0 20px rgba(212, 165, 116, 0.05);
    border-color: white;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.25) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    color: #2c3e50;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: white;
    transform: perspective(1000px) rotateX(-5deg) translateY(-8px) scale(1.08);
    box-shadow: 
        0 15px 50px rgba(255, 255, 255, 0.4),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-btn i {
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    position: relative;
    background: linear-gradient(45deg, currentColor, currentColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-btn:hover i {
    transform: scale(1.3) rotate(15deg);
    text-shadow: 0 0 20px currentColor;
}

.hero-btn span {
    z-index: 2;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Additional Button Effects */
.hero-btn:active {
    transform: perspective(1000px) rotateX(-2deg) translateY(-2px) scale(1.02);
}

.hero-btn-primary:active {
    box-shadow: 
        0 5px 20px rgba(212, 165, 116, 0.8),
        0 0 0 5px rgba(212, 165, 116, 0.2);
}

.hero-btn-secondary:active {
    box-shadow: 
        0 5px 20px rgba(255, 255, 255, 0.6),
        0 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Button Loading Effect */
.hero-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.hero-btn.loading::before {
    left: -100%;
    animation: buttonLoader 1.5s infinite;
}

@keyframes buttonLoader {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
    animation: slideInFromBottom 1s ease-out 1.3s both;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.stat-item {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(243, 156, 18, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.stat-item:hover {
    background: rgba(212, 165, 116, 0.25);
    border-color: rgba(212, 165, 116, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0 4px 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounceInfinite 2s infinite;
}

@keyframes bounceInfinite {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator i {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.scroll-indicator:hover i {
    color: #d4a574;
}

/* Slide Navigation Dots */
.hero-navigation {
    position: absolute;
    bottom: 120px;
    right: 50px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInRight 1s ease-out 1.8s both;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Navigation Dots with Visual Feedback */
.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(15px);
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.6);
    transition: all 0.3s ease;
    opacity: 0;
    scale: 0;
}

.nav-dot::after {
    content: attr(data-slide);
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-dot:hover {
    transform: scale(1.3);
    background: rgba(212, 165, 116, 0.25);
    border-color: rgba(212, 165, 116, 0.7);
    box-shadow: 
        0 0 20px rgba(212, 165, 116, 0.3),
        inset 0 0 10px rgba(212, 165, 116, 0.1);
}

.nav-dot:hover::before {
    opacity: 1;
    scale: 1;
}

.nav-dot:hover::after {
    opacity: 1;
    left: -45px;
}

.nav-dot.active {
    background: rgba(212, 165, 116, 0.4);
    border-color: #d4a574;
    transform: scale(1.5);
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.6),
        0 0 60px rgba(212, 165, 116, 0.3),
        inset 0 0 15px rgba(212, 165, 116, 0.2);
    animation: activeDotPulse 2s ease-in-out infinite;
}

.nav-dot.active::before {
    opacity: 1;
    scale: 1.3;
    background: #d4a574;
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.8);
}

.nav-dot.active::after {
    opacity: 1;
    left: -48px;
    color: #d4a574;
}

@keyframes activeDotPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(212, 165, 116, 0.6),
            0 0 60px rgba(212, 165, 116, 0.3),
            inset 0 0 15px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(212, 165, 116, 0.8),
            0 0 80px rgba(212, 165, 116, 0.4),
            inset 0 0 20px rgba(212, 165, 116, 0.3);
    }
}

@keyframes rippleEffect {
    0% {
        opacity: 0.8;
        scale: 1.5;
    }
    50% {
        opacity: 0.4;
        scale: 2.2;
    }
    100% {
        opacity: 0;
        scale: 2.8;
    }
}

/* Enhanced Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 15;
    backdrop-filter: blur(10px);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 50%, #ff8c00 100%);
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
    box-shadow: 
        0 0 20px rgba(212, 165, 116, 0.6),
        0 0 40px rgba(212, 165, 116, 0.3);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 0 2px 2px 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 25px;
        bottom: 50px;
    }
    
    .stat-item {
        padding: 18px 22px;
        min-width: 130px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 650px;
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 35px;
        max-width: 600px;
    }
    
    .hero-buttons {
        gap: 15px;
        margin: 35px 0 50px 0;
    }
    
    .hero-btn {
        min-width: 180px;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 20px;
        bottom: 40px;
        width: 95%;
    }
    
    .stat-item {
        padding: 16px 18px;
        min-width: 120px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-navigation {
        right: 25px;
        bottom: 90px;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 150px 20px 40px 20px;
        height: auto;
        min-height: calc(100vh - 150px);
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
        max-width: 350px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin: 25px 0 30px 0;
        align-items: center;
    }
    
    .hero-btn {
        min-width: 180px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 25px 0 15px 0;
        gap: 6px;
        width: 100%;
        max-width: none;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: calc(50% - 3px);
        padding: 8px 4px;
        border-radius: 6px;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 8px;
        margin: 3px 0 2px 0;
    }
    
    .stat-description {
        font-size: 7px;
    }
    
    .hero-navigation {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        max-width: 400px;
    }
    
    .hero-buttons {
        margin: 25px 0 35px 0;
        gap: 10px;
    }
    
    .hero-btn {
        min-width: 220px;
        padding: 12px 22px;
        font-size: 12px;
        border-radius: 30px;
    }
    
    .hero-stats {
        margin: 30px 0 15px 0;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: calc(50% - 4px);
        padding: 10px 6px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 9px;
        margin: 4px 0 2px 0;
    }
    
    .stat-description {
        font-size: 7px;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator i {
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        max-width: 320px;
    }
    
    .hero-btn {
        min-width: 200px;
        padding: 11px 20px;
        font-size: 11px;
    }
    
    .stat-item {
        padding: 8px 4px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 8px;
    }
        
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-btn {
        width: 250px;
        padding: 12px 25px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-navigation {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-btn {
        width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* About Section Styles */
.about {
    background: #f8f9fa;
}

.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 40px;
}

.about-text h3 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Menu Section - Premium Professional Design */
.menu {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100%);
}

/* Enhanced Section Header */
.menu-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4a574 0%, #e8c597 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Stats */
.menu-quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.quick-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Category Navigation */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #e8c597 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.category-btn:hover,
.category-btn.active {
    border-color: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Premium Menu Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-card.premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.menu-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card.premium:hover .menu-card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #d4a574;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
}

.diet-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.menu-card-content {
    padding: 25px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.menu-card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

.rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    display: block;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.dish-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.spice-level,
.prep-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 15px;
}

.spice-level.mild { color: #4caf50; }
.spice-level.medium { color: #ff9800; }
.spice-level.spicy { color: #f44336; }
.spice-level.very_spicy { color: #d32f2f; }

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4a574;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-favorite {
    background: none;
    border: 2px solid #e0e0e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.order-btn.premium {
    background: linear-gradient(135deg, #d4a574 0%, #e8c597 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.order-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.order-btn.premium:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Professional Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from { 
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-header {
    padding: 25px 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.close-modal:hover {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.1);
}

.modal-body {
    padding: 0 25px 25px;
}

.order-item-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #eee;
}

.order-item-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.item-info h4 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: #333;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4a574;
    margin: 0;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 120px;
}

.quantity-control button {
    background: #d4a574;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quantity-control button:hover {
    background: #c19660;
}

.quantity-control input {
    margin: 0;
    text-align: center;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 50px;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    font-weight: 500;
}

.radio-option:hover {
    border-color: #d4a574;
    background: rgba(212, 165, 116, 0.05);
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.radio-option input[type="radio"]:checked + span {
    color: #d4a574;
    font-weight: 600;
}

.delivery-address {
    display: block;
}

.delivery-address.hidden {
    display: none;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    margin: 25px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid #ddd;
    padding-top: 8px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel,
.btn-order {
    flex: 1;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cancel {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
}

.btn-cancel:hover {
    border-color: #ccc;
    background: #f0f0f0;
}

.btn-order {
    background: linear-gradient(135deg, #d4a574 0%, #e8c597 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 0;
        border-radius: 15px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .order-item-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-preview img {
        align-self: center;
    }
}

/* Responsive Menu Design */
@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .menu-quick-stats {
        gap: 25px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .menu-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .menu-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-quick-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Order Success Popup */
.order-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: successFadeIn 0.4s ease;
}

@keyframes successFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.success-content {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: successSlideUp 0.5s ease;
    position: relative;
}

@keyframes successSlideUp {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successBounce 0.8s ease;
}

@keyframes successBounce {
    0%, 20%, 40%, 60%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(0.9);
    }
    60% {
        transform: scale(1.03);
    }
    80% {
        transform: scale(0.97);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-content h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.success-content p {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.success-content p:last-of-type {
    margin-bottom: 30px;
    color: #374151;
    font-weight: 500;
}

.success-content .btn-order {
    margin: 0;
    min-width: 150px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Accessibility Improvements */
.modal-content:focus {
    outline: 3px solid #d4a574;
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid #d4a574;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.menu-tabs {
    margin-bottom: 40px;
}

.menu-tabs .nav-link {
    background: transparent;
    border: 2px solid #e8e8e8;
    color: #666;
    padding: 12px 25px;
    border-radius: 30px;
    margin: 0 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-tabs .nav-link.active {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-color: #d4a574;
    color: white;
}

.menu-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.menu-item-content {
    flex: 1;
}

.menu-item-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.menu-item-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.menu-item-price {
    font-size: 1.2rem;
    color: #d4a574;
    font-weight: 600;
}

/* Team Section */
.team {
    background: #f8f9fa;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #d4a574;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.team-member p {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-author h5 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #d4a574;
    font-weight: 500;
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    display: block;
}

.stat-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Index Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .menu-tabs .nav-link {
        margin: 5px;
        padding: 10px 15px;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-item-img {
        margin: 0 0 15px 0;
    }
}

/* Contact Section on Index */
.contact-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-item {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 15px;
}

.contact-info-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #666;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    color: white;
}

.newsletter h3 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 30px 0 0 30px;
}

.newsletter-form button {
    border: none;
    background: #2c3e50;
    color: white;
    padding: 15px 25px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #34495e;
}