/* ============================================
   ROTIEXPRESS LTD - Modern Design System 2024
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --primary-color: #D32F2F;       /* Rich Red */
    --primary-dark: #B71C1C;        /* Darker Red for hover */
    --secondary-color: #FFC107;     /* Amber/Gold for accents */
    
    /* Neutral Colors */
    --bg-body: #F9FAFB;             /* Very light grey for background */
    --bg-surface: #FFFFFF;          /* Pure white for cards/nav */
    --text-main: #1F2937;           /* Dark Slate for headings */
    --text-muted: #6B7280;          /* Grey for body text */
    --border-color: #E5E7EB;        /* Light grey border */

    /* Functional Colors */
    --success: #10B981;
    --error: #EF4444;
    
    /* Spacing & Layout */
    --container-padding: 2rem;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Legacy Compat */
    --primary-red: var(--primary-color);
}

/* ===== Resets & Base ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-muted);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 0.75em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* ===== Typography Utilities ===== */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--primary-color), #FF5722);
}

/* Backward compatibility / Utilities */
.text-primary-red, .text-danger { color: var(--primary-color) !important; }
.text-secondary { color: var(--text-muted) !important; }

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

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    padding: 0.65rem 0;
    font-size: 0.85rem;
    position: relative;
    animation: slideDown 0.5s ease-out;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-item i {
    font-size: 0.95rem;
    opacity: 0.9;
}

.announcement-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.announcement-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.announcement-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.announcement-close {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== Enhanced Navbar Design ===== */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.45rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Brand Logo */
.navbar-brand {
    padding: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Custom Hamburger Menu */
.navbar-toggler {
    padding: 0.5rem;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-custom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

.navbar-toggler-custom span {
    display: block;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler-custom span:nth-child(1) {
    width: 100%;
}

.navbar-toggler-custom span:nth-child(2) {
    width: 80%;
}

.navbar-toggler-custom span:nth-child(3) {
    width: 60%;
}

.navbar-toggler:hover .navbar-toggler-custom span {
    width: 100%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-custom span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 100%;
}

/* Enhanced Nav Links */
.nav-link {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(211, 47, 47, 0.06);
}

.nav-link:hover::before {
    display: none;
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(211, 47, 47, 0.1);
}

.nav-link.active::before {
    display: none;
}

.nav-link i {
    font-size: 1.1rem;
}

/* ===== Enhanced Buttons ===== */
.btn {
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn:hover i {
    transform: scale(1.1);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

/* Enhanced Danger Button with Shine Effect */
.btn-danger {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border: none;
    color: white;
}

.btn-danger:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-danger:hover .btn-shine {
    left: 100%;
}

.btn-order-now {
    font-weight: 700;
    padding: 0.65rem 1.75rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-order-mobile {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

/* Outline Button Enhancement */
.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.25);
}

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

.btn-icon {
    gap: 0.5rem;
}

.btn-text {
    font-size: 0.9rem;
}

/* Navbar Actions */
.navbar-actions {
    gap: 0.75rem;
}

/* ===== Modern Compact Hero Banner ===== */
.hero-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

/* Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Fallback gradient if image doesn't load */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D32F2F 0%, #c62828 100%);
    opacity: 0;
    z-index: -1;
}

/* Dark Overlay for Better Text Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(211, 47, 47, 0.75) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: white;
}

/* Compact Badge */
.hero-badge-wrapper {
    animation: slideInDown 0.8s ease-out;
}

.hero-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge-compact i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.text-highlight {
    background: linear-gradient(135deg, var(--secondary-color), #FFD54F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Actions */
.hero-actions {
    animation: slideInUp 0.8s ease-out 0.6s backwards;
}

.hero-actions .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Compact Stats Bar */
.hero-stats-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.8s ease-out 0.8s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
}

.stat-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.stat-item strong {
    font-weight: 800;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero-decoration-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
    animation: float1 8s ease-in-out infinite;
}

.hero-decoration-2 {
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    animation: float2 10s ease-in-out infinite;
}

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

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

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* ===== Background Utilities ===== */
.bg-cream {
    background-color: #FFFBF5 !important;
}

.bg-dark {
    background-color: #111827 !important;
}

/* ===== Category Cards ===== */
.category-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c62828);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(211, 47, 47, 0.05));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.category-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.category-card:hover h4 {
    color: var(--primary-color);
}

.category-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== ABOUT PAGE DESIGN ===== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #1a1a2e;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.88) 0%, 
        rgba(26, 26, 46, 0.92) 100%
    );
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    animation: slideInDown 0.8s ease-out;
}

.about-hero-badge i {
    font-size: 1rem;
}

.about-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.about-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Section Labels & Titles */
.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Story Content */
.story-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Visual Cards */
.story-visual {
    position: relative;
    min-height: 400px;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    text-align: center;
}

.story-card-main {
    width: 100%;
    max-width: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.story-card-main i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 1rem;
}

.story-card-main h4 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.story-card-main p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.story-card-small {
    width: 180px;
    padding: 1.25rem;
    background: linear-gradient(135deg, white, #FFF5F5);
    border: 2px solid rgba(211, 47, 47, 0.1);
    z-index: 3;
}

.story-card-small i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.story-card-small span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.story-card-1 {
    top: 20px;
    right: 20px;
    animation: float1 4s ease-in-out infinite;
}

.story-card-2 {
    bottom: 20px;
    left: 20px;
    animation: float2 5s ease-in-out infinite;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-card-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Legacy About Value Icon Support */
.about-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.about-value-icon:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* ===== Why Choose Cards (Enhanced) ===== */
.bg-gradient-light {
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
}

.why-choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c62828);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-icon-wrapper {
    margin-bottom: 1.5rem;
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

.why-choose-card:hover .why-choose-icon::after {
    opacity: 1;
}

.why-choose-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.why-choose-card:hover .why-choose-icon-green {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.why-choose-icon-green::after {
    background: linear-gradient(135deg, #10B981, #059669);
}

.why-choose-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.why-choose-card:hover .why-choose-icon-orange {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.why-choose-icon-orange::after {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
}

.why-choose-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-content h4 {
    color: var(--primary-color);
}

.why-choose-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-choose-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(211, 47, 47, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-number {
    color: rgba(211, 47, 47, 0.15);
    transform: scale(1.1);
}

/* ===== Testimonial Cards (Modern Design) ===== */
.testimonials-section {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF5F5 100%);
}

.testimonial-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.15);
}

.testimonial-card-modern:hover::before {
    transform: scaleX(1);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(211, 47, 47, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-quote-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-rating-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating-modern i {
    color: #FFD700;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-left: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar-modern {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.25);
    transition: all 0.3s ease;
}

.testimonial-card-modern:hover .testimonial-avatar-modern {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.testimonial-author-info small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Legacy Support */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(211, 47, 47, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 47, 47, 0.2);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFF5F5, #FFEBEE);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== Menu Page Layout & Formatting ===== */

/* Main Menu Container */
.container.pb-5.mb-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}

/* Category Navigation Pills (Desktop) */
nav.nav {
    justify-content: center;
    display: flex;
}

.nav-pills {
    margin-bottom: 2.5rem !important;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.75rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    justify-content: center;
}

.nav-pills .nav-link {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-main);
    white-space: nowrap;
}

.nav-pills .nav-link:hover {
    background-color: rgba(211, 47, 47, 0.08);
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), #c62828) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

/* Accordion for Mobile */
.accordion {
    margin-bottom: 2rem !important;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-button {
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(211, 47, 47, 0.05);
    color: var(--primary-color);
}

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

/* Category Header in Tab Content */
.tab-pane {
    animation: fadeIn 0.4s ease-in-out;
}

.tab-pane .row > .col-12 {
    margin-bottom: 2rem !important;
}

.tab-pane h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tab-pane p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Menu Item Grid Gap */
.menu-item {
    margin-bottom: 0;
}

.tab-content .row.g-4,
.accordion-body .row.g-4 {
    row-gap: 1rem !important;
    column-gap: 1rem !important;
}

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

/* ===== Original Menu Cards (Legacy Support) ===== */
.menu-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(211, 47, 47, 0.2);
}

.menu-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 800;
    background: #FFF5F5;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.badge-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.tag-spicy {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    color: #DC2626;
    border: 1px solid #FECACA;
}

.tag-veg {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #059669;
    border: 1px solid #A7F3D0;
}

/* ===== Search Box ===== */
.menu-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.menu-search-input {
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.menu-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
    outline: none;
}

.menu-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ===== Forms & Inputs ===== */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

/* ===== Tabs (Menu) ===== */
.nav-pills .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
}

/* ===== Compact CTA Section ===== */
.cta-section {
    position: relative;
    padding: 4rem 0 3.5rem;
    overflow: hidden;
    background: #1a1a2e;
}

/* CTA Background */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1601050690597-df0568f70950?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

/* CTA Overlay */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.88) 0%, 
        rgba(26, 26, 46, 0.95) 50%, 
        rgba(17, 24, 39, 0.95) 100%
    );
    z-index: 2;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 3;
}

/* CTA Heading with Icon */
.cta-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-heading-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

/* CTA Description */
.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border: none;
    color: white;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(211, 47, 47, 0.5);
    filter: brightness(110%);
}

.btn-cta-primary i {
    font-size: 1.2rem;
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline i {
    font-size: 1.2rem;
}

/* Compact Trust Badges */
.cta-badges-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-compact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.badge-compact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.badge-compact-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    line-height: 1;
}

/* ===== Footer ===== */
footer {
    background-color: #111827 !important;
    color: #F3F4F6 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .text-secondary {
    color: #9CA3AF !important;
}

footer h5 {
    color: #F9FAFB;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Footer Hover Effects */
.hover-danger:hover {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

.hover-white:hover {
    color: white !important;
    transition: color 0.3s ease;
}

/* ===== GALLERY PAGE DESIGN ===== */

/* Gallery Hero Section */
.gallery-hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #1a1a2e;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596797038530-2c107229654b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.88) 0%, 
        rgba(26, 26, 46, 0.92) 100%
    );
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    animation: slideInDown 0.8s ease-out;
}

.gallery-hero-badge i {
    font-size: 1rem;
}

.gallery-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.gallery-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Modern Gallery Items */
.gallery-item-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

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

.gallery-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF5F5, #FFEBEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    animation: bounceIn 0.8s ease-out;
}

.gallery-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-overlay-modern h5 {
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
}

.gallery-item-modern:hover::before {
    opacity: 0.08;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    transform: translateY(0);
}

.gallery-item-modern:hover .gallery-placeholder-modern {
    transform: scale(1.1) rotate(2deg);
}

.gallery-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(211, 47, 47, 0.25);
}

/* Enhanced Ingredient Cards */
.ingredient-card-enhanced {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ingredient-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #34D399);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ingredient-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
}

.ingredient-card-enhanced:hover::before {
    transform: scaleX(1);
}

.ingredient-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.ingredient-icon-large i {
    font-size: 3rem;
    color: #10B981;
    transition: transform 0.4s ease;
}

.ingredient-icon-large.ingredient-icon-orange {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
}

.ingredient-icon-large.ingredient-icon-orange i {
    color: #F59E0B;
}

.ingredient-icon-large.ingredient-icon-red {
    background: linear-gradient(135deg, #FFF5F5, #FFEBEE);
}

.ingredient-icon-large.ingredient-icon-red i {
    color: var(--primary-color);
}

.ingredient-icon-large.ingredient-icon-blue {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.ingredient-icon-large.ingredient-icon-blue i {
    color: #3B82F6;
}

.ingredient-card-enhanced:hover .ingredient-icon-large {
    transform: scale(1.15) rotate(-5deg);
}

.ingredient-card-enhanced:hover .ingredient-icon-large i {
    transform: rotate(10deg);
}

.ingredient-card-enhanced h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.ingredient-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ingredient-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredient-badge.badge-orange {
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    color: #EA580C;
}

.ingredient-badge.badge-red {
    background: linear-gradient(135deg, #FFF5F5, #FFEBEE);
    color: var(--primary-color);
}

.ingredient-badge.badge-blue {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    color: #2563EB;
}

/* Mini Ingredient Cards */
.ingredient-mini-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.ingredient-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-mini-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.ingredient-mini-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
}

/* Legacy Ingredient Card Support */
.ingredient-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.ingredient-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.ingredient-icon i {
    font-size: 3rem;
    color: var(--success-green);
    transition: transform 0.4s ease;
}

.ingredient-icon-orange i {
    color: var(--warning-orange);
}

.ingredient-icon-red i {
    color: var(--primary-color);
}

.ingredient-icon-blue i {
    color: var(--info-blue);
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(211, 47, 47, 0.2);
}

.ingredient-card:hover .ingredient-icon i {
    transform: rotate(-10deg);
}

.ingredient-card h6 {
    font-weight: 700;
    color: var(--text-main);
}

/* Enhanced Kitchen Showcase */
.kitchen-showcase {
    position: relative;
    min-height: 450px;
}

.kitchen-main-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    border: 3px solid rgba(211, 47, 47, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.kitchen-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.kitchen-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.kitchen-main-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.kitchen-main-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.kitchen-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(211, 47, 47, 0.1);
}

.kitchen-stats .stat {
    text-align: center;
}

.kitchen-stats .stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.kitchen-stats .stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Feature Cards */
.kitchen-feature-float {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    border: 2px solid rgba(211, 47, 47, 0.1);
    z-index: 2;
}

.kitchen-feature-float i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.kitchen-float-1 {
    top: 30px;
    right: 0;
    animation: float1 4s ease-in-out infinite;
}

.kitchen-float-2 {
    bottom: 120px;
    left: 0;
    animation: float2 5s ease-in-out infinite;
}

.kitchen-float-3 {
    bottom: 30px;
    right: 30px;
    animation: float1 6s ease-in-out infinite;
}

/* Modern Kitchen Features */
.kitchen-features-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-modern:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.12);
    border-color: rgba(211, 47, 47, 0.2);
}

.feature-icon-modern {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.25);
}

.feature-icon-modern.feature-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.feature-icon-modern.feature-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.feature-icon-modern.feature-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.feature-content h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Kitchen Trust Badges */
.kitchen-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #059669;
}

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

/* Legacy Kitchen Visual Support */
.kitchen-visual {
    position: relative;
    min-height: 350px;
}

.kitchen-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid rgba(211, 47, 47, 0.1);
}

.kitchen-card-main i {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.kitchen-card-main h4 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.kitchen-card-main p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Kitchen Features */
.kitchen-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kitchen-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.kitchen-features li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-text h6 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Legacy Gallery Items Support */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF5F5, #FFEBEE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

/* ===== CONTACT PAGE DESIGN ===== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #1a1a2e;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1593759608136-45eb2ad9507d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.88) 0%, 
        rgba(26, 26, 46, 0.92) 100%
    );
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    animation: slideInDown 0.8s ease-out;
}

.contact-hero-badge i {
    font-size: 1rem;
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.contact-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Professional Contact Info Bar */
.contact-info-bar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(211, 47, 47, 0.05);
}

.contact-info-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.25);
}

.contact-info-icon-small.contact-info-icon-phone {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.contact-info-icon-small.contact-info-icon-email {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.contact-info-icon-small.contact-info-icon-time {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.contact-info-text h6 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

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

.contact-info-text a:hover {
    text-decoration: underline;
}

/* Contact Map Wrapper */
.contact-map-wrapper .map-container-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Detail Cards */
.contact-detail-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.contact-detail-card:hover {
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.12);
    border-color: rgba(211, 47, 47, 0.2);
    transform: translateY(-3px);
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-detail-icon.contact-detail-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.contact-detail-card h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.contact-detail-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link-arrow:hover {
    gap: 0.75rem;
    color: #c62828;
}

.hours-compact div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.hours-compact span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hours-compact strong {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Professional Contact Form */
.contact-form-professional {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(211, 47, 47, 0.1);
}

.form-header-professional h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-header-professional h3 i {
    color: var(--primary-color);
}

.form-header-professional p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Input Group (for phone with dial code) */
.contact-form-professional .input-group-text {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 12px 0 0 12px;
}

.contact-form-professional .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.contact-form-professional .input-group .form-control:focus {
    border-left: none;
}

/* Contact Action Buttons */
.contact-actions-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-action-btn {
    flex: 1;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.contact-action-btn i {
    font-size: 1.25rem;
}

.contact-action-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.contact-action-whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-action-order {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border-color: var(--primary-color);
}

.contact-action-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

/* Legacy Support - Modern Contact Cards */
.contact-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.2);
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card-icon-phone {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.contact-card-icon-email {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.contact-card-icon-time {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.contact-card-modern:hover .contact-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-card-modern h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.contact-card-modern p {
    font-size: 0.95rem;
}

/* Contact Hours List */
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-hours-list li:last-child {
    border-bottom: none;
}

.contact-hours-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-hours-list strong {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Contact Action Buttons */
.btn-contact-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-contact-action:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.btn-contact-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-contact-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Modern Contact Form */
.contact-form-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(211, 47, 47, 0.1);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(211, 47, 47, 0.1);
}

.form-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    animation: bounceIn 0.8s ease-out;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-modern .form-label {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Map Container */
.map-wrapper {
    margin-bottom: 1.5rem;
}

.map-container-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.map-container-modern iframe {
    display: block;
}

/* Quick Actions Card */
.quick-actions-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(211, 47, 47, 0.1);
}

.quick-actions-card h5 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-quick-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-quick-action i {
    font-size: 1.25rem;
}

.btn-quick-action:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-quick-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.btn-quick-whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Modern FAQ Accordion */
.accordion-modern .accordion-item {
    background: white;
    border: 2px solid rgba(211, 47, 47, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.1);
}

.accordion-modern .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    background: white;
    border: none;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08), rgba(255, 193, 7, 0.08));
    color: var(--primary-color);
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-modern .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
}

.accordion-modern .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Legacy Contact Form Support */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-main);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    border-radius: 16px;
}

/* ===== LEGAL PAGES DESIGN (Privacy & Terms) ===== */

/* Legal Hero Section */
.legal-hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #1a1a2e;
}

.legal-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

.legal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.88) 0%, 
        rgba(26, 26, 46, 0.92) 100%
    );
    z-index: 2;
}

.legal-hero-content {
    position: relative;
    z-index: 3;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.85rem;
    animation: slideInDown 0.8s ease-out;
}

.legal-hero-badge i {
    font-size: 1rem;
}

.legal-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.legal-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

/* Legal Navigation (Sticky Sidebar) */
.legal-nav-sticky {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(211, 47, 47, 0.1);
}

.legal-nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(211, 47, 47, 0.1);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-nav-link {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.legal-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.legal-nav-link:hover,
.legal-nav-link.active {
    background: rgba(211, 47, 47, 0.08);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.legal-nav-link:hover::before,
.legal-nav-link.active::before {
    height: 100%;
}

/* Legal Content Card */
.legal-content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(211, 47, 47, 0.1);
}

/* Legal Sections */
.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.legal-section:last-of-type {
    border-bottom: none;
}

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

.legal-section-header i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 47, 47, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.legal-section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.legal-subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(211, 47, 47, 0.03);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.legal-list li:hover {
    background: rgba(211, 47, 47, 0.08);
    transform: translateX(5px);
}

.legal-list li i {
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Legal Alert Box */
.legal-alert {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08), rgba(255, 193, 7, 0.08));
    border-left: 4px solid var(--warning-orange);
    border-radius: 12px;
    margin: 1.5rem 0;
}

.legal-alert i {
    font-size: 1.75rem;
    color: var(--warning-orange);
    flex-shrink: 0;
}

.legal-alert p {
    margin: 0;
    color: var(--text-main);
    font-weight: 600;
}

/* Legal Link */
.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #c62828;
    gap: 0.5rem;
}

/* Legal Contact Card */
.legal-contact-card {
    background: rgba(211, 47, 47, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(211, 47, 47, 0.1);
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    flex-shrink: 0;
}

.legal-contact-item div {
    flex: 1;
}

.legal-contact-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.legal-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-contact-item a:hover {
    color: #c62828;
}

.legal-contact-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Legal CTA Box */
.legal-cta-box {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(211, 47, 47, 0.15);
    margin-top: 3rem;
}

.legal-cta-box h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.legal-cta-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.legal-cta-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float1 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ===== MENU PAGE DESIGN ===== */

/* Compact Menu Hero Section */
.menu-hero-section {
    position: relative;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
    background: #1a1a2e;
}

.menu-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1585937421612-70a008356fbe?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(211, 47, 47, 0.85) 0%, 
        rgba(26, 26, 46, 0.92) 100%
    );
    z-index: 2;
}

.menu-hero-content {
    position: relative;
    z-index: 3;
}

.menu-hero-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

.menu-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.75rem;
}

.menu-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Compact Menu Search */
.menu-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.menu-search-container {
    position: relative;
}

.menu-search-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.85rem 3rem 0.85rem 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-search-input:focus {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 8px 35px rgba(255, 193, 7, 0.3);
    outline: none;
}

.menu-search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.menu-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 1;
}

.menu-search-clear {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-search-clear:hover {
    background: var(--primary-color);
    color: white;
}

.menu-search-results {
    text-align: center;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.menu-search-results.is-empty .menu-search-chip {
    background: rgba(255, 255, 255, 0.12);
    color: #FFE3E3;
    border-color: rgba(255, 227, 227, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.menu-search-results.is-success .menu-search-chip {
    background: rgba(255, 255, 255, 0.18);
    color: #E9FFF2;
    border-color: rgba(233, 255, 242, 0.45);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.menu-search-chip i {
    font-size: 1rem;
}

/* Enhanced Menu Item Cards with Better Design */
/* Force 3 columns on medium screens and up */
@media (min-width: 768px) {
    .menu-item {
        flex: 0 0 calc(33.333% - 0.67rem) !important;
        max-width: calc(33.333% - 0.67rem) !important;
    }
}

.menu-item-card-modern {
    background: white;
    border-radius: 16px;
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    position: relative;
}

.menu-item-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF6B6B, var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.menu-item-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: transparent;
}

.menu-item-card-modern:hover::before {
    transform: scaleX(1);
}

.menu-card-header {
    background: linear-gradient(135deg, #FFFBF8 0%, #FFF5F5 50%, #FFEBEE 100%);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    min-height: 80px;
}

.menu-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.15), transparent);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item-card-modern:hover .menu-card-icon {
    transform: scale(1.15) rotate(-8deg);
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    color: white;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
}

.menu-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
    align-items: flex-start;
}

.menu-card-badges .badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-veg {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #059669;
    border: 1px solid #A7F3D0;
}

.badge-spicy {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    color: #DC2626;
    border: 1px solid #FECACA;
}

.menu-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    background: white;
}

.menu-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.65rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-allergens {
    font-size: 0.75rem;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #FFFBEB;
    border-radius: 8px;
    border: 1px solid #FDE68A;
    font-weight: 600;
}

.menu-item-allergens i {
    font-size: 0.9rem;
}

.menu-card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 2px solid #F9FAFB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.menu-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(211, 47, 47, 0.1);
}

.btn-order-item {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border: none;
    color: white;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-order-item::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.5s ease;
}

.btn-order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.35);
    filter: brightness(110%);
}

.btn-order-item:hover::before {
    left: 100%;
}

.btn-order-item i {
    font-size: 1rem;
}

/* Compact Menu CTA Section */
.menu-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
}

.menu-cta-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.menu-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.menu-cta-title i {
    font-size: 2rem;
    color: var(--primary-color);
}

.menu-cta-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.btn-cta-order {
    background: linear-gradient(135deg, var(--primary-color), #c62828);
    border: none;
    color: white;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-cta-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(211, 47, 47, 0.4);
    filter: brightness(110%);
}

.btn-cta-call {
    background: rgba(211, 47, 47, 0.05);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cta-call:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(211, 47, 47, 0.3);
}

.contact-info-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: #FFF5F5;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

/* ===== Featured Items ===== */
.featured-item-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-item-image {
    height: 220px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

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

.featured-item-card:hover .featured-item-image {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
}

.featured-item-card:hover .featured-item-image i {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-item-body {
    padding: 1.5rem;
}

.featured-item-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.featured-item-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ===== Mobile Enhancements ===== */
@media (max-width: 991.98px) {
    /* Announcement Bar Mobile */
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .announcement-content {
        gap: 0.75rem;
    }
    
    .announcement-item {
        font-size: 0.75rem;
    }
    
    .announcement-item span {
        display: none;
    }
    
    .announcement-item i {
        font-size: 0.85rem;
    }
    
    .announcement-divider {
        display: none;
    }

    /* Footer Mobile */
    .footer-logo {
        justify-content: center;
    }
    
    .announcement-close {
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
    }
    
    /* Mobile Navbar */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .brand-logo-wrapper {
        gap: 0.5rem;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .brand-title {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.25rem;
        border-radius: 16px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.25rem;
    }
    
    .nav-link i {
        color: var(--primary-color);
    }
    
    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        min-height: 400px;
        padding: 3rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats-compact {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
        max-width: 360px;
    }
    
    .stat-divider {
        display: block;
        height: 24px;
    }
    
    .stat-item {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .hero-decoration-1,
    .hero-decoration-2 {
        display: none;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0 2.5rem;
    }
    
    .cta-heading {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Why Choose Cards Mobile */
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .why-choose-content h4 {
        font-size: 1.2rem;
    }
    
    .why-choose-content p {
        font-size: 0.9rem;
    }
    
    .why-choose-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    /* Testimonials Mobile */
    .testimonial-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-quote-icon i {
        font-size: 1.25rem;
    }
    
    .testimonial-rating-modern i {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testimonial-author-info strong {
        font-size: 1rem;
    }
    
    .testimonial-author-info small {
        font-size: 0.8rem;
    }
    
    /* Category Cards Mobile */
    .category-card {
        padding: 2rem 1.25rem;
    }
    
    .category-icon {
        width: 65px;
        height: 65px;
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    
    .category-card h4 {
        font-size: 1.1rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
    }
    
    .cta-heading-icon {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-badges-compact {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .badge-compact-divider {
        display: none;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    /* About Page Mobile */
    .about-hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .story-visual {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .story-card-main {
        max-width: 280px;
    }
    
    .story-card-small {
        width: 150px;
        padding: 1rem;
    }
    
    .story-card-1 {
        top: 10px;
        right: 10px;
    }
    
    .story-card-2 {
        bottom: 10px;
        left: 10px;
    }
    
    .story-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    /* Gallery Page Mobile */
    .gallery-hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .gallery-placeholder-modern {
        font-size: 3rem;
    }
    
    .gallery-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }
    
    /* Enhanced Ingredients Mobile */
    .ingredient-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .ingredient-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .ingredient-icon-large i {
        font-size: 2.5rem;
    }
    
    .ingredient-card-enhanced h5 {
        font-size: 1.1rem;
    }
    
    .ingredient-desc {
        font-size: 0.85rem;
    }
    
    .ingredient-mini-card {
        padding: 0.75rem;
    }
    
    .ingredient-mini-card i {
        font-size: 1.5rem;
    }
    
    .ingredient-mini-card span {
        font-size: 0.75rem;
    }
    
    /* Enhanced Kitchen Mobile */
    .kitchen-showcase {
        min-height: 320px;
        margin-bottom: 2rem;
    }
    
    .kitchen-main-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .kitchen-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .kitchen-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .kitchen-main-card h3 {
        font-size: 1.5rem;
    }
    
    .kitchen-stats {
        gap: 1.5rem;
    }
    
    .kitchen-stats .stat strong {
        font-size: 1.5rem;
    }
    
    .kitchen-feature-float {
        display: none;
    }
    
    .feature-modern {
        padding: 1rem;
        gap: 1rem;
    }
    
    .feature-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .feature-content h6 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .kitchen-trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Legacy Support */
    .ingredient-icon {
        width: 80px;
        height: 80px;
    }
    
    .ingredient-icon i {
        font-size: 2.5rem;
    }
    
    .kitchen-visual {
        min-height: 280px;
        margin-bottom: 2rem;
    }
    
    .kitchen-card {
        padding: 2rem 1.5rem;
    }
    
    .kitchen-card-main i {
        font-size: 4rem;
    }
    
    .kitchen-card-main h4 {
        font-size: 1.5rem;
    }
    
    .kitchen-features li {
        padding: 0.85rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    /* Contact Page Mobile */
    .contact-hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Professional Contact Mobile */
    .contact-info-bar {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .contact-info-text h6 {
        font-size: 0.85rem;
    }
    
    .contact-info-text p {
        font-size: 0.8rem;
    }
    
    .contact-map-wrapper {
        margin-bottom: 2rem;
    }
    
    .contact-map-wrapper iframe {
        height: 250px !important;
    }
    
    .contact-detail-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-form-professional {
        padding: 2rem 1.5rem;
    }
    
    .form-header-professional h3 {
        font-size: 1.25rem;
    }
    
    .contact-actions-row {
        flex-direction: column;
    }
    
    .contact-action-btn {
        width: 100%;
    }
    
    /* Legacy Support */
    .contact-card-modern {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-form-modern {
        padding: 2rem 1.5rem;
        position: static;
    }
    
    .accordion-modern .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-modern .accordion-body {
        padding: 0.85rem 1.25rem 1.25rem;
    }
    
    /* Legal Pages Mobile */
    .legal-hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .legal-hero-title {
        font-size: 2rem;
    }
    
    .legal-hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .legal-content-card {
        padding: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .legal-section-header h2 {
        font-size: 1.35rem;
    }
    
    .legal-section-header i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .legal-subsection-title {
        font-size: 1.1rem;
    }
    
    .legal-list li {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    
    .legal-contact-card {
        padding: 1.5rem;
    }
    
    .legal-contact-item {
        padding: 1rem 0;
    }
    
    .legal-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .legal-cta-box h4 {
        font-size: 1.25rem;
    }
    
    /* Menu Page Mobile - Compact */
    .menu-hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .menu-hero-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .menu-hero-title {
        font-size: 2rem;
    }
    
    .menu-hero-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .menu-search-wrapper {
        padding: 0 1rem;
    }
    
    .menu-search-input {
        padding: 0.75rem 2.75rem;
        font-size: 0.9rem;
    }
    
    /* Menu Navigation Mobile */
    .container.pb-5.mb-lg-5 {
        padding-top: 1.5rem !important;
    }
    
    .nav-pills {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .nav-pills .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .tab-pane h2 {
        font-size: 1.5rem;
    }
    
    .tab-pane .row > .col-12 {
        margin-bottom: 1.5rem !important;
    }
    
    .menu-cta-section {
        padding: 2.5rem 0;
    }
    
    .menu-cta-card {
        padding: 1.75rem 1.25rem;
    }
    
    .menu-cta-title {
        font-size: 1.35rem;
        flex-direction: column;
        text-align: center;
    }
    
    .menu-cta-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .menu-cta-text {
        font-size: 0.9rem;
    }
    
    .menu-search-container {
        padding: 0 1rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Announcement Bar Tablet */
    .announcement-bar {
        font-size: 0.8rem;
    }
    
    .announcement-content {
        gap: 1rem;
    }
    
    .announcement-item {
        font-size: 0.8rem;
    }
    
    .navbar-actions {
        flex-direction: row;
    }
    
    .navbar-actions .btn {
        width: auto;
    }
    
    .hero-banner {
        min-height: 420px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-actions .btn {
        width: auto;
    }
    
    .hero-stats-compact {
        flex-direction: row;
        max-width: 500px;
    }
    
    .stat-divider {
        display: block;
    }
    
    /* CTA Section Tablet */
    .cta-section {
        padding: 3.5rem 0 3rem;
    }
    
    .cta-heading {
        font-size: 2.5rem;
        flex-direction: row;
    }
    
    .cta-heading-icon {
        font-size: 2.25rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .cta-buttons .btn {
        width: auto;
    }
    
    .cta-badges-compact {
        font-size: 0.85rem;
    }
    
    .badge-compact-divider {
        display: inline;
    }
    
    /* Menu Page Tablet - Compact */
    .menu-hero-section {
        padding: 3rem 0 2.5rem;
    }
    
    .menu-hero-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .menu-hero-title {
        font-size: 2.25rem;
    }
    
    .menu-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Menu Navigation Tablet */
    .nav-pills {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-pills .nav-link {
        width: auto;
    }
    
    .tab-pane h2 {
        font-size: 1.65rem;
    }
    
    .menu-cta-title {
        font-size: 1.55rem;
        flex-direction: row;
    }
    
    .menu-cta-content {
        text-align: left;
        margin-bottom: 0;
    }
    
    /* About Page Tablet */
    .about-hero-section {
        padding: 3.5rem 0 2.5rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-visual {
        min-height: 350px;
    }
    
    /* Gallery Page Tablet */
    .gallery-hero-section {
        padding: 3.5rem 0 2.5rem;
    }
    
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-placeholder-modern {
        font-size: 3.5rem;
    }
    
    /* Enhanced Ingredients Tablet */
    .ingredient-card-enhanced {
        padding: 2.25rem 1.75rem;
    }
    
    .ingredient-icon-large {
        width: 90px;
        height: 90px;
    }
    
    .ingredient-icon-large i {
        font-size: 2.75rem;
    }
    
    .ingredient-mini-card i {
        font-size: 1.6rem;
    }
    
    /* Enhanced Kitchen Tablet */
    .kitchen-showcase {
        min-height: 380px;
    }
    
    .kitchen-main-card {
        padding: 2.5rem 2rem;
    }
    
    .kitchen-icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .kitchen-main-card h3 {
        font-size: 1.75rem;
    }
    
    .kitchen-feature-float {
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Legacy Support */
    .ingredient-icon {
        width: 90px;
        height: 90px;
    }
    
    .ingredient-icon i {
        font-size: 2.75rem;
    }
    
    .kitchen-visual {
        min-height: 320px;
    }
    
    .kitchen-card-main i {
        font-size: 5rem;
    }
    
    /* Contact Page Tablet */
    .contact-hero-section {
        padding: 3.5rem 0 2.5rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Professional Contact Tablet */
    .contact-info-bar {
        padding: 1.75rem;
    }
    
    .contact-info-item {
        padding: 0.85rem;
    }
    
    .contact-map-wrapper iframe {
        height: 300px !important;
    }
    
    .contact-form-professional {
        padding: 2.25rem 2rem;
    }
    
    .contact-actions-row {
        gap: 0.75rem;
    }
    
    /* Legacy Support */
    .contact-card-modern {
        padding: 1.75rem;
    }
    
    .contact-form-modern {
        padding: 2.25rem 2rem;
    }
    
    /* Legal Pages Tablet */
    .legal-hero-section {
        padding: 3.5rem 0 2.5rem;
    }
    
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .legal-content-card {
        padding: 2.5rem;
    }
    
    .legal-section-header {
        flex-direction: row;
        align-items: center;
    }
    
    .legal-section-header h2 {
        font-size: 1.5rem;
    }
}
