/* ================================
   THE BITE - Modern Stylesheet
   California Vibes & Glassmorphism
   ================================ */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Brand Colors */
:root {
    --primary-orange: #EA6228;
    --dark-orange: #D54D1A;
    --light-orange: #FF7B47;
    --accent-orange: #FF8C42;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --black: #1A1A1A;
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --gray-light: #F8F9FA;
    --gray-medium: #E0E0E0;
    --gray-dark: #718096;
    --shadow-sm: rgba(0, 0, 0, 0.05);
    --shadow-md: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(234, 98, 40, 0.1);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 4px rgba(234, 98, 40, 0.3);
}

/* Typography - Modern & Rounded */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Glassmorphism Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(234, 98, 40, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 4px 20px rgba(234, 98, 40, 0.08);
    border-bottom: 1px solid rgba(234, 98, 40, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(234, 98, 40, 0));
}

.nav-logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(234, 98, 40, 0.15));
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(234, 98, 40, 0.08);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    box-shadow: 0 2px 8px rgba(234, 98, 40, 0);
}

.nav-menu a:hover::before {
    opacity: 1;
    box-shadow: 0 6px 16px rgba(234, 98, 40, 0.2), 0 0 20px rgba(234, 98, 40, 0.1);
}

.nav-menu a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px) scale(1.03);
}

.nav-menu a.active {
    color: var(--primary-orange);
    font-weight: 700;
}

.nav-menu a.active::before {
    background: rgba(234, 98, 40, 0.12);
    backdrop-filter: blur(10px);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(234, 98, 40, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Modern Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.95);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(234, 98, 40, 0.75) 0%,
        rgba(255, 140, 66, 0.65) 50%,
        rgba(213, 77, 26, 0.8) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 3rem 2rem;
    max-width: 1000px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 0.95;
}

.hero-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.hero-content p:last-of-type {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(234, 98, 40, 0.3);
}

.btn-orange:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(234, 98, 40, 0.5), 0 0 30px rgba(234, 98, 40, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Container & Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-orange) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Modern Cards */
.card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card.popular-package {
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 30px 60px rgba(234, 98, 40, 0.2), 0 0 40px rgba(234, 98, 40, 0.12);
    border-color: var(--primary-orange);
}

/* Popular Package Styling */
.card.popular-package {
    position: relative;
    border: 2px solid var(--primary-orange);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(234, 98, 40, 0.15);
    margin-bottom: 2rem;
}

.card.popular-package:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 35px 70px rgba(234, 98, 40, 0.3), 0 0 45px rgba(234, 98, 40, 0.18);
}

.popular-badge {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(234, 98, 40, 0.35);
    z-index: 100;
    white-space: nowrap;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        box-shadow: 0 4px 15px rgba(234, 98, 40, 0.35);
    }
    50% {
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 6px 20px rgba(234, 98, 40, 0.45);
    }
}

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

.card-content {
    padding: 2rem;
}

.card-title {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 1.5rem;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-medium);
}

.feature-box:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(234, 98, 40, 0.4), 0 0 40px rgba(234, 98, 40, 0.3);
    border-color: transparent;
}

.feature-box:hover h3,
.feature-box:hover p {
    color: var(--white);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px var(--shadow-sm);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(234, 98, 40, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--dark-orange);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(234, 98, 40, 0.4), 0 0 25px rgba(234, 98, 40, 0.3);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #CBD5E0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-section p {
    color: #CBD5E0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* Footer Brand Section */
.footer-brand p {
    max-width: 90%;
}

/* Footer Contact Icons */
.footer-contact-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(234, 98, 40, 0.2);
}

/* Footer Links Section */
.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links h3 {
    margin-bottom: 1rem;
}

/* Footer Info Section */
.footer-info ul li {
    color: #CBD5E0;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container,
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1.25rem;
    }

    /* Hide logo image and show text on mobile */
    .nav-logo img {
        display: none;
    }

    .nav-logo::after {
        content: 'THE BITE';
        font-size: 1.125rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        color: var(--text-primary);
    }

    .nav-menu {
        position: fixed;
        top: 48px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 48px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 40px rgba(234, 98, 40, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        font-weight: 600;
    }

    .nav-menu a::before {
        background: rgba(234, 98, 40, 0.1);
    }

    .nav-menu a.active::before {
        background: rgba(234, 98, 40, 0.15);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-minimal {
        min-height: 100vh;
        margin-top: 48px;
        display: flex;
        align-items: flex-start;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(234, 98, 40, 0.4) 80%,
            rgba(234, 98, 40, 0.3) 100%
        );
    }

    .hero-content-wrapper {
        padding: 3.5rem 0 4rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-accent {
        width: 48px;
        height: 3px;
        margin-bottom: 1rem;
    }

    .hero-minimal-title {
        font-size: 2.75rem;
        line-height: 1.08;
        letter-spacing: -0.025em;
        margin-bottom: 1rem;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    }

    .hero-minimal-subtitle {
        font-size: 1.0625rem;
        line-height: 1.45;
        margin-bottom: 1.75rem;
        max-width: 88%;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    }

    .hero-minimal-cta {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.625rem;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-minimal-cta .btn,
    .hero-minimal-cta .btn-large,
    .hero-minimal-cta .btn-hero-primary {
        width: auto !important;
        max-width: none !important;
        text-align: center;
        padding: 0.75rem 1.75rem;
        align-self: flex-start !important;
        margin: 0 !important;
    }

    .hero-minimal-cta .btn-hero-link {
        text-align: left !important;
        justify-content: flex-start;
        padding: 0.5rem 0 0.5rem 1.75rem;
        font-size: 0.9375rem;
        align-self: flex-start !important;
        display: inline-block;
        width: auto !important;
        margin: 0 !important;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .featured-section {
        position: relative;
    }

    .featured-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, var(--off-white), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .featured-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem 1rem 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .featured-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .featured-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 2rem 1.25rem 1.75rem 1.25rem;
        min-width: 280px;
    }

    .featured-icon {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        margin-top: 0.25rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-content {
        max-width: 100%;
    }

    .why-image {
        order: -1;
        display: none; /* Hide truck image on mobile */
    }

    .why-image img {
        display: none;
    }

    .why-grid {
        gap: 2rem;
    }

    .why-content .section-badge {
        display: inline-block;
        margin-bottom: 0.35rem;
        background: rgba(234, 98, 40, 0.18);
        font-weight: 800;
    }

    .why-content .section-heading {
        margin-bottom: 1.5rem;
    }

    .why-list {
        margin-top: 1.2rem;
    }

    .why-item {
        gap: 0.6rem;
        margin-bottom: 0.9rem;
    }

    .why-item:last-child {
        margin-bottom: 0;
    }

    .why-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Override for hero buttons - keep them left aligned */
    .hero-minimal-cta .btn,
    .hero-minimal-cta .btn-large,
    .hero-minimal-cta .btn-hero-primary {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .card {
        margin-bottom: 2rem;
    }

    .card-content {
        padding: 1.75rem;
    }

    .feature-box {
        padding: 2.25rem 1.75rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 0.875rem;
    }

    .social-links a {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.4375rem 1rem;
    }

    .nav-logo::after {
        font-size: 1.0625rem;
    }

    .nav-menu {
        top: 45px;
        height: calc(100vh - 45px);
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .hero-minimal {
        margin-top: 45px;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 25%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(234, 98, 40, 0.45) 75%,
            rgba(234, 98, 40, 0.35) 100%
        );
    }

    .hero-content-wrapper {
        padding: 3rem 0 3.5rem;
    }

    .hero-accent {
        width: 45px;
        height: 2.5px;
        margin-bottom: 0.875rem;
    }

    .hero-minimal-title {
        font-size: 2.375rem;
        line-height: 1.08;
        letter-spacing: -0.025em;
        margin-bottom: 0.875rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-minimal-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 85%;
        margin-bottom: 1.625rem;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    }

    .hero-minimal-cta {
        gap: 0.5rem;
        align-items: flex-start !important;
    }

    /* Stripe-style button - more compact */
    .hero-minimal-cta .btn-hero-primary {
        height: 42px;
        padding: 0 1.375rem;
        border-radius: 9px;
        background: #FF6B2C;
        font-size: 0.875rem;
        font-weight: 600;
        box-shadow: 0 2px 5px rgba(255, 107, 44, 0.2), 0 1px 2px rgba(0, 0, 0, 0.08);
        width: auto !important;
        align-self: flex-start !important;
        margin: 0 0 0 0.75rem !important;
    }

    .hero-minimal-cta .btn,
    .hero-minimal-cta .btn-large {
        width: auto !important;
        max-width: none !important;
        margin: 0 0 0 0.75rem !important;
        align-self: flex-start !important;
    }

    .btn-hero-link {
        font-size: 0.8125rem;
        font-weight: 500;
        padding: 0.375rem 0 0.375rem 0.75rem;
        align-self: flex-start !important;
        display: inline-block;
        margin: 0 !important;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .featured-icon,
    .feature-icon {
        font-size: 1.875rem;
    }

    .featured-card h3,
    .feature-box h3 {
        font-size: 1.25rem;
    }

    .featured-card p,
    .feature-box p {
        font-size: 0.9375rem;
    }

    .why-image {
        max-height: 360px;
        margin-bottom: 1.85rem;
    }

    .why-image img {
        height: 360px;
        object-fit: cover;
        object-position: center 30%;
    }

    /* Catering page mobile fixes */
    .catering-hero {
        padding: 140px 0 40px !important;
        overflow: hidden !important;
        transform: none !important;
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .event-types-section {
        padding: 60px 0 !important;
        margin-top: 0 !important;
        background: white !important;
        position: relative !important;
        z-index: 2 !important;
        overflow: visible !important;
    }

    .event-types-section .section-title {
        position: relative !important;
        z-index: 3 !important;
    }

    .event-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .value-card {
        transform: none !important;
    }

    .value-card:hover {
        transform: none !important;
    }

    /* Force disable all transforms and animations on mobile */
    .hero,
    .section,
    .event-types-section,
    .catering-hero,
    .fade-in,
    .grid-2,
    .grid-3 {
        transform: none !important;
        will-change: auto !important;
        animation: none !important;
        opacity: 1 !important;
        position: relative !important;
    }

    /* Ensure proper stacking of sections */
    .section {
        z-index: auto !important;
    }

    .why-content .section-badge {
        display: inline-block;
        margin-bottom: 0.3rem;
        background: rgba(234, 98, 40, 0.18);
        font-weight: 800;
    }

    .why-content .section-heading {
        margin-bottom: 1.4rem;
    }

    .why-list {
        margin-top: 1.1rem;
    }

    .why-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.85rem;
        gap: 0.6rem;
    }

    .why-item:last-child {
        margin-bottom: 0;
    }

    .why-icon {
        margin-bottom: 0.5rem;
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.875rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

/* Extra small devices (phones in portrait, 375px and down) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0.4375rem 0.875rem;
    }

    .nav-logo::after {
        font-size: 1rem;
    }

    .nav-menu {
        top: 44px;
        height: calc(100vh - 44px);
    }

    .container {
        padding: 0 0.875rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .hero-minimal {
        min-height: 90vh;
        margin-top: 44px;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 22%,
            rgba(0, 0, 0, 0.68) 42%,
            rgba(234, 98, 40, 0.48) 72%,
            rgba(234, 98, 40, 0.38) 100%
        );
    }

    .hero-content-wrapper {
        padding: 2.75rem 0 3rem;
    }

    .hero-accent {
        width: 42px;
        height: 2.5px;
        margin-bottom: 0.75rem;
    }

    .hero-minimal-title {
        font-size: 2.125rem;
        line-height: 1.08;
        letter-spacing: -0.025em;
        margin-bottom: 0.75rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .hero-minimal-subtitle {
        font-size: 0.9375rem;
        line-height: 1.4;
        max-width: 88%;
        margin-bottom: 1.5rem;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    }

    .hero-minimal-cta {
        gap: 0.5rem;
        align-items: flex-start !important;
    }

    /* Stripe-style button for smallest screens */
    .hero-minimal-cta .btn-hero-primary {
        height: 40px;
        padding: 0 1.25rem;
        border-radius: 9px;
        background: #FF6B2C;
        font-size: 0.875rem;
        box-shadow: 0 2px 5px rgba(255, 107, 44, 0.18), 0 1px 2px rgba(0, 0, 0, 0.08);
        width: auto !important;
        align-self: flex-start !important;
        margin: 0 !important;
    }

    .hero-minimal-cta .btn,
    .hero-minimal-cta .btn-large {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        align-self: flex-start !important;
    }

    .btn-hero-link {
        font-size: 0.8125rem;
        padding: 0.3125rem 0 0.3125rem 1.25rem;
        align-self: flex-start !important;
        display: inline-block;
        margin: 0 !important;
    }

    .btn {
        padding: 0.8125rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.9375rem 1.75rem;
        font-size: 0.9375rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
        letter-spacing: 0.04em;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .featured-section,
    .why-section,
    .cta-section {
        padding: 3rem 0;
    }

    .featured-card,
    .feature-box {
        padding: 2rem 1.25rem 1.75rem 1.25rem;
    }

    .featured-icon,
    .feature-icon {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        margin-top: 0.25rem;
    }

    .featured-card h3,
    .feature-box h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .featured-card p,
    .feature-box p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .why-image {
        max-height: 350px;
        margin-bottom: 1.75rem;
    }

    .why-image img {
        height: 350px;
        object-fit: cover;
        object-position: center 30%;
    }

    /* Catering page mobile fixes */
    .catering-hero {
        padding: 130px 0 50px !important;
        overflow: visible !important;
    }

    .section {
        overflow: visible !important;
    }

    .why-content .section-badge {
        display: inline-block;
        margin-bottom: 0.3rem;
        background: rgba(234, 98, 40, 0.18);
        font-weight: 800;
    }

    .why-content .section-heading {
        margin-bottom: 1.25rem;
    }

    .why-list {
        margin-top: 1rem;
    }

    .why-item {
        margin-bottom: 0.8rem;
        gap: 0.55rem;
    }

    .why-item:last-child {
        margin-bottom: 0;
    }

    .why-item h4 {
        font-size: 1.125rem;
    }

    .why-item p {
        font-size: 0.875rem;
    }

    .why-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .final-cta {
        padding: 4rem 0;
    }

    .final-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .final-cta-content p {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-content {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }

    .footer-section h3 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .footer-icon {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .card-price {
        font-size: 1.5rem;
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4375rem 1.25rem;
        bottom: -28px;
    }
}

/* Landscape mode for small devices */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-minimal {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content-wrapper {
        padding: 2rem 0;
    }

    .hero-minimal-title {
        font-size: 2.5rem;
    }

    .hero-minimal-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .featured-section,
    .why-section {
        padding: 4rem 0;
    }
}

/* Medium devices adjustments */
@media (min-width: 481px) and (max-width: 767px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-minimal-title {
        font-size: 3rem;
    }

    .hero-minimal-subtitle {
        font-size: 1.25rem;
    }

    .featured-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .featured-grid .featured-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .btn {
        padding: 1rem 2rem;
    }
}

/* ================================
   MINIMALIST HOME PAGE STYLES
   ================================ */

/* Hero Minimal Section */
.hero-minimal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 35%,
        rgba(0, 0, 0, 0.15) 60%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 8rem 0;
    max-width: 650px;
}

.hero-text {
    max-width: 600px;
}

.hero-accent {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.hero-minimal-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: var(--white);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-minimal-subtitle {
    font-size: 1.375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 2rem;
    max-width: 520px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-minimal-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Hero-specific buttons */
.btn-hero-primary {
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(234, 98, 40, 0.4);
}

.btn-hero-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 50px rgba(234, 98, 40, 0.6), 0 0 40px rgba(234, 98, 40, 0.4);
}

.btn-hero-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-hero-link:hover {
    color: var(--primary-orange);
    transform: translateX(6px) scale(1.05);
    text-shadow: 0 2px 8px rgba(234, 98, 40, 0.3), 0 0 20px rgba(234, 98, 40, 0.2);
}

/* Button Variants */
.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-link {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-link:hover {
    color: var(--primary-orange);
    transform: translateX(6px) scale(1.05);
    text-shadow: 0 2px 8px rgba(234, 98, 40, 0.2);
}

.btn-link-white {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-link-white:hover {
    color: var(--white);
    transform: translateX(6px) scale(1.05);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-medium);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: rgba(234, 98, 40, 0.1);
    color: var(--primary-orange);
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Featured Section */
.featured-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.featured-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(234, 98, 40, 0.15), 0 0 30px rgba(234, 98, 40, 0.08);
    border-color: var(--primary-orange);
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.featured-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.card-link:hover {
    transform: translateX(6px) scale(1.05);
    text-shadow: 0 2px 8px rgba(234, 98, 40, 0.3), 0 0 15px rgba(234, 98, 40, 0.2);
}

/* Why Section */
.why-section {
    padding: 8rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-content {
    max-width: 540px;
}

.why-list {
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 4px;
}

.why-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.why-image img {
    width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    background: var(--off-white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Responsive for New Sections */
@media (max-width: 1024px) {
    .hero-minimal {
        min-height: 85vh;
    }

    .hero-content-wrapper {
        padding: 6rem 0;
        max-width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 80%,
            transparent 100%
        );
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-minimal {
        min-height: 100vh;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-content-wrapper {
        padding: 4rem 0;
    }

    .hero-minimal-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-minimal-cta .btn,
    .hero-minimal-cta .btn-hero-link {
        text-align: center;
        width: 100%;
    }

    .featured-section,
    .why-section,
    .cta-section,
    .final-cta {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

/* ================================
   ABOUT PAGE SPECIFIC STYLES
   ================================ */

/* Split-screen hero for about page */
.about-hero-split {
    display: flex;
    min-height: 70vh;
    margin-top: 80px;
    position: relative;
}

.about-hero-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.about-hero-image img {
    width: 90%;
    height: 85%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
    border-radius: 30% 70% 70% 30% / 40% 50% 50% 60%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-text {
    flex: 1;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 6rem 4rem 8rem;
}

.about-hero-text-inner {
    max-width: 600px;
}

.about-hero-text-inner .hero-accent {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.about-hero-text-inner h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}

.about-hero-text-inner p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive for split hero */
@media (max-width: 968px) {
    .about-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .about-hero-image {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
        min-height: 40vh;
    }

    .about-hero-text {
        padding: 4rem 2rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    position: relative;
    height: 100%;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 4rem 3.5rem;
    border-radius: 40px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(234, 98, 40, 0.25);
}

.mission-text h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

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

/* Responsive for mission section */
@media (max-width: 968px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mission-text {
        padding: 3rem 2rem;
    }

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

/* Join the Team Section */
.join-team-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.join-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-team-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 4rem 3.5rem;
    border-radius: 40px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(234, 98, 40, 0.25);
}

.join-team-text h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.join-team-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

.join-team-text .contact-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    word-break: break-all;
}

.join-team-image {
    position: relative;
    height: 100%;
}

.join-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Responsive for join team section */
@media (max-width: 968px) {
    .join-team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .join-team-text {
        padding: 3rem 2rem;
    }

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

/* Values Section - Modern & Minimalist */
.values-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(234, 98, 40, 0.2);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(234, 98, 40, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Responsive for values section */
@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .values-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

/* Ensure sections have proper background and z-index */
.section {
    position: relative;
    background: var(--white);
    z-index: 1;
}

/* Footer should be on top */
.footer {
    position: relative;
    z-index: 2;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Stripe-style button for hero - smaller, cleaner, aligned left */
    .hero-minimal-cta .btn-hero-primary {
        height: 44px;
        padding: 0 1.5rem;
        border-radius: 10px;
        background: #FF6B2C;
        color: white;
        font-size: 0.9375rem;
        font-weight: 600;
        box-shadow: 0 2px 6px rgba(255, 107, 44, 0.22), 0 1px 2px rgba(0, 0, 0, 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: auto;
        transition: all 0.2s ease;
        letter-spacing: -0.01em;
        align-self: flex-start;
    }

    .hero-minimal-cta .btn-hero-primary:hover {
        background: #E85F1F;
        box-shadow: 0 3px 10px rgba(255, 107, 44, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .hero-minimal-cta .btn-hero-primary:active {
        transform: translateY(0);
        box-shadow: 0 1px 4px rgba(255, 107, 44, 0.25);
    }

    /* Refined "Find us today" link - aligned left with button */
    .btn-hero-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        padding: 0.4375rem 0 0.4375rem 1.5rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
        margin-top: 0;
        align-self: flex-start;
        display: inline-block;
    }

    .btn-hero-link:hover {
        color: white;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    /* Improve touch targets */
    button,
    .btn,
    a[href] {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for touch */
    .nav-menu a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent zoom on input focus */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    /* Disable smooth scrolling for mobile - better UX */
    html {
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent horizontal scroll */
    body,
    html {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
        -webkit-user-drag: none;
        user-select: none;
    }

    /* Improve button touch feedback */
    .btn:active,
    button:active,
    a.btn:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }

    /* Better card spacing */
    .card,
    .featured-card,
    .feature-box {
        margin-bottom: 1.25rem;
    }

    /* Optimize images for mobile */
    .hero-image,
    .hero-background img {
        object-fit: cover;
        object-position: center;
    }

    /* Mobile-friendly tables */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Better spacing for sections */
    .section + .section {
        margin-top: 0;
    }
}

/* ================================
   MENU PAGE STYLES
   ================================ */

/* Menu Header */
.menu-header {
    margin-top: 80px;
    padding: 3rem 0 2rem;
    background: var(--off-white);
    border-bottom: 2px solid var(--gray-medium);
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.menu-logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Menu Sections */
.menu-section {
    padding: 3rem 0;
    background: var(--white);
}

.menu-section:nth-child(even) {
    background: var(--off-white);
}

.menu-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

/* Single item centering */
.menu-items-grid:has(.menu-item-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

/* Menu Item Card */
.menu-item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(234, 98, 40, 0.12);
}

/* Carousel */
.menu-item-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* Menu Item Info */
.menu-item-info {
    padding: 1.5rem;
}

.menu-item-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.menu-item-info p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.menu-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
}

/* Dietary Badges */
.dietary-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0;
}

.dietary-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dietary-badge.dairy {
    background: rgba(255, 235, 205, 0.8);
    color: #D2691E;
    border-color: #D2691E;
}

.dietary-badge.gluten {
    background: rgba(255, 222, 173, 0.8);
    color: #CD853F;
    border-color: #CD853F;
}

.dietary-badge.gf {
    background: rgba(144, 238, 144, 0.8);
    color: #228B22;
    border-color: #228B22;
}

.dietary-badge.df {
    background: rgba(173, 216, 230, 0.8);
    color: #4682B4;
    border-color: #4682B4;
}

.dietary-badge.vegan {
    background: rgba(152, 251, 152, 0.8);
    color: #2E7D32;
    border-color: #2E7D32;
}

/* Price and Nutrition Section */
.price-nutrition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.nutrition-toggle {
    background: var(--off-white);
    border: 1px solid var(--gray-medium);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nutrition-toggle:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Nutrition Info */
.nutrition-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.nutrition-info.active {
    max-height: 200px;
    margin-top: 1rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
}

.nutrition-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nutrition-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nutrition-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Menu Badges */
.menu-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-badge.popular {
    background: rgba(255, 215, 0, 0.95);
    color: var(--text-primary);
    border: 2px solid rgba(255, 215, 0, 1);
}

.menu-badge.spicy {
    background: rgba(255, 68, 51, 0.95);
    color: var(--white);
    border: 2px solid rgba(255, 68, 51, 1);
    animation: pulse-spicy 2s infinite;
}

@keyframes pulse-spicy {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 68, 51, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 68, 51, 0.5);
    }
}

/* Certifications Section */
.certifications-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.certifications-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.certifications-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.certifications-section .section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(234, 98, 40, 0.15);
    border-color: var(--primary-orange);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-card:hover .cert-icon {
    transform: scale(1.15) rotate(5deg);
}

.certification-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.certification-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.reviews-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-rating .stars {
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
}

.google-rating .rating-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Reviews Slider */
.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-reviews 40s linear infinite;
    width: fit-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate reviews for seamless loop */
.reviews-track::after {
    content: '';
    position: absolute;
    left: 100%;
    width: 100%;
}

/* Review Card */
.review-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

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

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.review-stars {
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-header {
        padding: 2.5rem 0 1.75rem;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-container {
        padding: 0 1.5rem;
    }

    .menu-logo {
        flex-direction: column;
        gap: 0.75rem;
    }

    .menu-logo img {
        width: 50px;
        height: 50px;
    }

    .menu-logo h1 {
        font-size: 2rem;
    }

    .menu-section {
        padding: 2rem 0;
    }

    .menu-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .menu-item-card {
        border-radius: 14px;
    }

    .menu-item-carousel {
        height: 220px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .menu-item-info {
        padding: 1.5rem 1.25rem;
    }

    .menu-item-info h3 {
        font-size: 1.0625rem;
    }

    .menu-item-info p {
        font-size: 0.875rem;
    }

    .menu-price {
        font-size: 1.125rem;
    }

    .dietary-badges {
        margin: 0.625rem 0;
    }

    .price-nutrition {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .nutrition-toggle {
        width: 100%;
        text-align: center;
        padding: 0.625rem 1rem;
    }

    .nutrition-info.active {
        max-height: 250px;
    }

    .nutrition-grid {
        gap: 0.625rem;
        padding: 0.875rem;
    }

    .menu-badge {
        top: 10px;
        right: 10px;
        padding: 0.4375rem 0.875rem;
        font-size: 0.8125rem;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.25rem;
    }

    .review-header {
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .review-avatar {
        width: 44px;
        height: 44px;
    }

    .review-info h4 {
        font-size: 0.9375rem;
    }

    .review-stars {
        font-size: 0.8125rem;
    }

    .review-text {
        font-size: 0.875rem;
    }

    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-header {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .reviews-header h2 {
        font-size: 1.875rem;
    }

    .google-rating .stars {
        font-size: 1.375rem;
    }

    .google-rating .rating-text {
        font-size: 0.9375rem;
    }

    .reviews-track {
        gap: 1.25rem;
    }

    .certifications-section {
        padding: 4rem 0;
    }

    .certifications-section .section-header {
        margin-bottom: 3rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .certification-card {
        padding: 1.75rem 1.25rem;
    }

    .cert-icon {
        font-size: 2.75rem;
    }

    .certification-card h3 {
        font-size: 1.0625rem;
    }

    .certification-card p {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .menu-header {
        padding: 2rem 0 1.5rem;
    }

    .menu-logo img {
        width: 45px;
        height: 45px;
    }

    .menu-logo h1 {
        font-size: 1.75rem;
    }

    .menu-container {
        padding: 0 1rem;
    }

    .menu-section {
        padding: 1.75rem 0;
    }

    .menu-category-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .menu-item-carousel {
        height: 200px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

    .carousel-dots {
        bottom: 8px;
        gap: 5px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .dot.active {
        width: 20px;
    }

    .menu-item-info {
        padding: 1.25rem 1rem;
    }

    .menu-item-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4375rem;
    }

    .menu-item-info p {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    .menu-price {
        font-size: 1.0625rem;
        margin-top: 0.625rem;
    }

    .dietary-badges {
        gap: 0.375rem;
        margin: 0.5rem 0;
    }

    .dietary-badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.5625rem;
        border-radius: 10px;
    }

    .nutrition-toggle {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    .nutrition-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .nutrition-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nutrition-label {
        font-size: 0.6875rem;
    }

    .nutrition-value {
        font-size: 0.9375rem;
    }

    .menu-badge {
        top: 8px;
        right: 8px;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 16px;
    }

    .review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.125rem;
        border-radius: 14px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-info h4 {
        font-size: 0.875rem;
    }

    .review-stars {
        font-size: 0.75rem;
        letter-spacing: 0.08rem;
    }

    .review-text {
        font-size: 0.8125rem;
        line-height: 1.55;
    }

    .google-icon {
        width: 18px;
        height: 18px;
    }

    .reviews-header h2 {
        font-size: 1.625rem;
    }

    .google-rating .stars {
        font-size: 1.25rem;
        letter-spacing: 0.2rem;
    }

    .google-rating .rating-text {
        font-size: 0.875rem;
    }

    .reviews-track {
        gap: 1rem;
    }

    .certifications-section {
        padding: 3.5rem 0;
    }

    .certifications-section .section-header {
        margin-bottom: 2.5rem;
    }

    .certifications-section .section-header h2 {
        font-size: 1.75rem;
    }

    .certifications-section .section-header p {
        font-size: 1rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .certification-card {
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }

    .cert-icon {
        font-size: 2.5rem;
        margin-bottom: 0.875rem;
    }

    .certification-card h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .certification-card p {
        font-size: 0.8125rem;
        line-height: 1.55;
    }
}

/* Extra small devices for menu */
@media (max-width: 375px) {
    .menu-header {
        padding: 1.75rem 0 1.25rem;
    }

    .menu-logo img {
        width: 42px;
        height: 42px;
    }

    .menu-logo h1 {
        font-size: 1.625rem;
    }

    .menu-container {
        padding: 0 0.875rem;
    }

    .menu-section {
        padding: 1.5rem 0;
    }

    .menu-category-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .menu-item-carousel {
        height: 180px;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9375rem;
    }

    .menu-item-info {
        padding: 1.125rem 0.875rem;
    }

    .menu-item-info h3 {
        font-size: 0.9375rem;
    }

    .menu-item-info p {
        font-size: 0.75rem;
    }

    .menu-price {
        font-size: 1rem;
    }

    .review-card {
        min-width: 240px;
        max-width: 240px;
        padding: 1rem;
    }

    .reviews-header h2 {
        font-size: 1.5rem;
    }

    .certifications-section .section-header h2 {
        font-size: 1.625rem;
    }

    .cert-icon {
        font-size: 2.25rem;
    }
}

/* ================================
   MOBILE OPTIMIZATIONS FOR INLINE STYLES
   ================================ */

/* CTA Section with inline styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0 !important;
    }

    .cta-section h2 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
    }

    .cta-section p {
        font-size: 1.125rem !important;
        margin-bottom: 1.75rem !important;
    }

    .cta-section .cta-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .cta-section .btn {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3.5rem 0 !important;
    }

    .cta-section h2 {
        font-size: 2rem !important;
        margin-bottom: 0.875rem !important;
    }

    .cta-section p {
        font-size: 1.0625rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-section .btn {
        padding: 0.9375rem 1.875rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 375px) {
    .cta-section {
        padding: 3rem 0 !important;
    }

    .cta-section h2 {
        font-size: 1.75rem !important;
    }

    .cta-section p {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .cta-section .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }

    /* Decorative circles - hide or reduce on very small screens */
    .cta-section > div[style*="position: absolute"] {
        opacity: 0.5 !important;
        filter: blur(40px) !important;
    }
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */

/* Better focus states for keyboard navigation */
@media (max-width: 768px) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 3px solid var(--primary-orange);
        outline-offset: 2px;
    }

    /* Remove outline for mouse users */
    a:focus:not(:focus-visible),
    button:focus:not(:focus-visible),
    input:focus:not(:focus-visible),
    textarea:focus:not(:focus-visible),
    select:focus:not(:focus-visible) {
        outline: none;
    }

    /* Better focus for nav menu */
    .nav-menu.active a:focus {
        background: rgba(234, 98, 40, 0.15);
    }

    /* Improve readability */
    p,
    li {
        max-width: 100%;
    }

    /* Better contrast for links */
    a {
        text-decoration-skip-ink: auto;
    }
}

/* ================================
   FAQ & TESTIMONIALS RESPONSIVE
   ================================ */

/* Tablet */
@media (max-width: 968px) {
    .faq-container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .faq-question h3 {
        font-size: 1rem !important;
        padding-right: 2rem;
    }

    .faq-icon {
        font-size: 1.25rem !important;
        min-width: 30px;
    }

    div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
}

/* ================================
   ABOUT PAGE - HERO SECTION
   ================================ */

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    background: rgba(234, 98, 40, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ================================
   ABOUT PAGE - VALUES SECTION
   ================================ */

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    border-color: rgba(234, 98, 40, 0.2) !important;
}

/* Responsive for About Hero */
@media (max-width: 968px) {
    .about-hero .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-hero .grid-2 > div[style*="padding-top: 1.5rem"] {
        padding-top: 0 !important;
    }

    .about-hero .grid-2 > div[style*="padding: 3rem"] {
        padding: 2rem !important;
    }

    .about-hero h1 {
        font-size: 2rem !important;
    }

    .about-hero {
        padding-top: 4rem !important;
    }

    .hiring-block .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem !important;
    }

    .values-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.75rem !important;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding-top: 3rem !important;
        padding-bottom: 3.5rem !important;
    }

    .about-hero .grid-2 > div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    .about-hero h1 {
        font-size: 1.625rem !important;
    }

    .about-hero p[style*="font-size: 1.125rem"] {
        font-size: 1rem !important;
    }

    .about-hero p[style*="font-size: 1rem"] {
        font-size: 0.9375rem !important;
    }

    .about-hero div[style*="padding: 1.25rem"] {
        padding: 1rem !important;
    }

    .about-hero div[style*="padding: 1.25rem"] p {
        font-size: 0.9375rem !important;
    }

    .hiring-block {
        padding: 3rem 0 !important;
    }

    .hiring-block .grid-2 {
        padding: 1.5rem !important;
    }

    .hiring-block h3 {
        font-size: 1.5rem !important;
    }

    .values-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .values-section {
        padding: 4rem 0 !important;
    }

    .values-header {
        margin-bottom: 2.5rem !important;
    }

    .values-header h2 {
        font-size: 2rem !important;
    }

    /* Optimize value cards for mobile */
    .value-card {
        padding: 1.25rem 1rem !important;
    }

    .value-card div[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .value-card h3 {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
    }

    .value-card p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .values-section {
        padding: 3.5rem 0 !important;
    }

    .values-header {
        margin-bottom: 2rem !important;
    }

    .values-header h2 {
        font-size: 1.75rem !important;
    }

    .values-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        gap: 1.25rem !important;
    }

    /* Further reduce card padding */
    .value-card {
        padding: 1rem 0.875rem !important;
    }

    .value-card div[style*="font-size: 2rem"] {
        font-size: 1.35rem !important;
        margin-bottom: 0.625rem !important;
    }

    .value-card h3 {
        font-size: 1.0625rem !important;
        margin-bottom: 0.4rem !important;
    }

    .value-card p {
        font-size: 0.8125rem !important;
    }
}

/* ================================
   CATERING PAGE - RESPONSIVE
   ================================ */

/* Tablet and below */
@media (max-width: 968px) {
    /* Hero Section */
    .hero .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .hero {
        padding: 200px 0 60px !important;
    }

    /* Event Types Grid - keep 3 columns on larger tablets */
    section[style*="padding: 80px 0"] div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    /* Hero Section */
    .hero {
        padding: 200px 0 50px !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .hero div[style*="display: flex"] {
        flex-direction: column !important;
    }

    .hero .btn {
        width: 100%;
        text-align: center;
    }

    /* Event Types - Single Column */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    section[style*="padding: 80px 0"] div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .value-card[style*="min-height: 160px"] {
        min-height: auto !important;
        padding: 1.25rem 1rem !important;
    }

    /* Catering Packages */
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .card {
        margin-bottom: 0;
    }

    .popular-package {
        margin-bottom: 2.5rem !important;
    }

    .popular-badge {
        bottom: -24px !important;
        font-size: 0.875rem !important;
    }

    .card-content {
        padding: 1.5rem !important;
    }

    .card-title {
        font-size: 1.5rem !important;
    }

    .card-content p[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    .card-content ul li {
        font-size: 0.9375rem !important;
    }

    /* How It Works Timeline */
    section div[style*="position: absolute; left: 30px"] {
        left: 20px !important;
    }

    section div[style*="padding-left: 80px"] {
        padding-left: 60px !important;
    }

    section div[style*="width: 60px; height: 60px"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }

    section div[style*="padding-left: 80px"] h3 {
        font-size: 1.125rem !important;
    }

    section div[style*="padding-left: 80px"] p {
        font-size: 0.9375rem !important;
    }

    /* CTA Section */
    section[style*="background: var(--primary-orange)"] h2 {
        font-size: 2rem !important;
    }

    section[style*="background: var(--primary-orange)"] p {
        font-size: 1.125rem !important;
    }

    .cta-buttons {
        flex-direction: column !important;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem !important;
    }

    .section-title p {
        font-size: 1rem !important;
    }

    /* Why Choose Us - Mobile */
    section div[style*="max-width: 650px"] {
        padding: 2rem 1.5rem !important;
    }

    section div[style*="max-width: 650px"] h2 {
        font-size: 2rem !important;
    }

    section div[style*="max-width: 650px"] > div {
        margin-bottom: 1.25rem !important;
    }

    section div[style*="max-width: 650px"] h3 {
        font-size: 1rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 180px 0 40px !important;
        min-height: auto !important;
        height: auto !important;
        transform: none !important;
    }

    /* Catering page hero - even less padding */
    .catering-hero {
        padding: 110px 0 30px !important;
        overflow: hidden !important;
        transform: none !important;
        min-height: auto !important;
        height: auto !important;
    }

    .event-types-section {
        padding: 50px 0 !important;
        margin-top: 0 !important;
        background: white !important;
    }

    .event-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .value-card {
        transform: none !important;
    }

    .value-card:hover {
        transform: none !important;
    }

    /* Force disable all transforms and animations on mobile */
    .hero,
    .section,
    .event-types-section,
    .catering-hero,
    .fade-in,
    .grid-2,
    .grid-3 {
        transform: none !important;
        will-change: auto !important;
        animation: none !important;
        opacity: 1 !important;
        position: relative !important;
    }

    /* Ensure proper stacking of sections */
    .section {
        z-index: auto !important;
    }

    .hero h1 {
        font-size: 1.75rem !important;
    }

    .hero p {
        font-size: 0.9375rem !important;
    }

    .hero .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }

    .hero div[style*="padding: 0.5rem 1rem"] {
        padding: 0.375rem 0.875rem !important;
    }

    .hero div[style*="padding: 0.5rem 1rem"] span {
        font-size: 0.8125rem !important;
    }

    /* Event Types */
    section[style*="padding: 80px 0"] {
        padding: 40px 0 !important;
    }

    .value-card[style*="min-height: 160px"] {
        padding: 1rem 0.875rem !important;
    }

    .value-icon {
        font-size: 1.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .value-card h3 {
        font-size: 1.0625rem !important;
    }

    .value-card p {
        font-size: 0.8125rem !important;
    }

    /* Catering Packages */
    .popular-package {
        margin-bottom: 2.25rem !important;
    }

    .popular-badge {
        bottom: -22px !important;
        font-size: 0.8125rem !important;
        padding: 0.375rem 1rem !important;
    }

    .card-content {
        padding: 1.25rem !important;
    }

    .card-title {
        font-size: 1.375rem !important;
    }

    .card-content p[style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
        margin: 0.75rem 0 !important;
    }

    .card-content p[style*="font-size: 1.2rem"] {
        font-size: 1.0625rem !important;
        margin-bottom: 1.5rem !important;
    }

    .card-content .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
        margin-top: 1.5rem !important;
    }

    /* How It Works Timeline */
    section div[style*="position: absolute; left: 30px"] {
        left: 15px !important;
        width: 1px !important;
    }

    section div[style*="padding-left: 80px"] {
        padding-left: 50px !important;
        margin-bottom: 2rem !important;
    }

    section div[style*="width: 60px; height: 60px"] {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    section div[style*="padding-left: 80px"] h3 {
        font-size: 1.0625rem !important;
        margin-bottom: 0.375rem !important;
    }

    section div[style*="padding-left: 80px"] p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
    }


    /* CTA Section */
    section[style*="background: var(--primary-orange)"] {
        padding: 3.5rem 0 !important;
    }

    section[style*="background: var(--primary-orange)"] h2 {
        font-size: 1.75rem !important;
        margin-bottom: 0.875rem !important;
    }

    section[style*="background: var(--primary-orange)"] p {
        font-size: 1.0625rem !important;
        margin-bottom: 1.5rem !important;
    }

    .cta-buttons .btn {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.75rem !important;
    }

    .section-title p {
        font-size: 0.9375rem !important;
    }

    /* Why Choose Us - Small Mobile */
    section div[style*="max-width: 650px"] {
        padding: 1.5rem 1.25rem !important;
    }

    section div[style*="max-width: 650px"] h2 {
        font-size: 1.75rem !important;
    }

    section div[style*="max-width: 650px"] p[style*="font-size: 1.0625rem"] {
        font-size: 0.9375rem !important;
    }

    section div[style*="max-width: 650px"] > div {
        margin-bottom: 1rem !important;
        gap: 0.75rem !important;
    }

    section div[style*="max-width: 650px"] h3 {
        font-size: 0.9375rem !important;
    }

    section div[style*="max-width: 650px"] span {
        font-size: 1.125rem !important;
    }

    /* General section padding */
    .section {
        padding: 3rem 0 !important;
    }

    section[style*="padding: 60px 0"] {
        padding: 3rem 0 !important;
    }
}
