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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff6b35, #ff8566);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav__brand h1,
.nav__brand .brand-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.nav__brand img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.nav__brand img:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav__link:hover,
.nav__link--active {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 14px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
    position: relative;
    width: 48px;
    height: 48px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);

}

.nav__toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.08);
}

.nav__toggle:active {
    transform: translateY(0);
    transition: all 0.1s ease;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.06);
}



.nav__toggle span {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transform-origin: center;
}

.nav__toggle span:nth-child(2) {
    width: 18px;
    margin-left: 2px;
}

.nav__toggle:hover span {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav__toggle:hover span:nth-child(1),
.nav__toggle:hover span:nth-child(3) {
    width: 22px;
}

.nav__toggle:hover span:nth-child(2) {
    width: 22px;
    margin-left: 0;
}

/* Анимация привлечения внимания для новых пользователей */
@keyframes pulseMenu {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Компактное выпадающее меню категорий */
.menu-categories-dropdown-wrapper {
    position: sticky;
    top: 80px;
    max-width: 400px;
    margin: 0 auto 1rem auto;
    z-index: 100;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.menu-categories-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8566);
    color: #2c3e50;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.4),
        0 3px 12px rgba(0, 0, 0, 0.15),
        0 1px 4px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.menu-categories-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #e55529);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.menu-categories-btn:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.menu-categories-text {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.menu-categories-arrow {
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.menu-categories-btn.active .menu-categories-arrow {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.menu-categories-btn:hover .menu-categories-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-categories-btn:hover.active .menu-categories-arrow {
    transform: rotate(180deg) scale(1.05);
}

.menu-categories-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 101;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(255, 107, 53, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.3) transparent;
    height: auto;
}

/* Индикация возможности прокрутки */
.menu-categories-dropdown.scrollable::before {
    content: '';
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), transparent);
    z-index: 2;
    pointer-events: none;
    display: block;
}

.menu-categories-dropdown.scrollable::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    z-index: 2;
    pointer-events: none;
    display: block;
}

.menu-categories-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 12px 25px rgba(255, 107, 53, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Кастомный скроллбар для WebKit браузеров */
.menu-categories-dropdown::-webkit-scrollbar {
    width: 6px;
}

.menu-categories-dropdown::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.menu-categories-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.menu-categories-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.5);
}

.menu-categories-dropdown::-webkit-scrollbar-thumb:active {
    background: rgba(255, 107, 53, 0.7);
}

.menu-category-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.menu-category-item:last-child {
    border-bottom: none;
}

.menu-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 139, 89, 0.1));
    transition: width 0.3s ease;
}

.menu-category-item:hover::before {
    width: 100%;
}

.menu-category-item:hover {
    background: rgba(255, 107, 53, 0.05);
    padding-left: 2rem;
    color: #ff6b35;
}

.category-emoji {
    font-size: 1.2rem;
    margin-right: 0.9rem;
    position: relative;
    z-index: 1;
}

.category-name {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.menu-category-item:hover .category-name {
    font-weight: 600;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .menu-categories-dropdown-wrapper {
        top: 75px;
        max-width: calc(100% - 2rem);
        margin: 0 auto 1rem auto;
        filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.12));
    }
    
    .menu-categories-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .menu-categories-dropdown {
        max-height: 75vh;
    }
    
    .menu-categories-text {
        font-size: 1.2rem;
    }
    
    .menu-categories-arrow {
        padding: 0.4rem 0.6rem;
        min-width: 2rem;
        border-radius: 8px;
    }
    
    .menu-category-item {
        padding: 0.7rem 1.2rem;
        min-height: 44px;
    }
    
    .category-emoji {
        font-size: 1.1rem;
        margin-right: 0.7rem;
    }
    
    .category-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .menu-categories-dropdown-wrapper {
        top: 70px;
        margin: 0 auto 1rem auto;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    }
    
    .menu-categories-btn {
        padding: 0.9rem 1.2rem;
        font-size: 1.05rem;
        border-radius: 10px;
    }
    
    .menu-categories-dropdown {
        max-height: 65vh;
    }
    
    .menu-categories-text {
        font-size: 1.1rem;
    }
    
    .menu-categories-arrow {
        padding: 0.35rem 0.5rem;
        min-width: 1.8rem;
        border-radius: 6px;
        font-size: 0.9rem;
    }
    
    .menu-category-item {
        padding: 0.6rem 1rem;
        min-height: 40px;
    }
    
    .category-emoji {
        font-size: 1rem;
        margin-right: 0.6rem;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff4757, #ff6b35, #ff8566, #ffa726);
    color: white;
    text-align: center;
    padding: 5rem 20px;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero__content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    min-width: 180px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    color: #ff6b35;
    border-color: rgba(255, 107, 53, 0.2);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

/* Hero section button overrides */
.hero__actions .btn--primary {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions .btn--primary:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(52, 152, 219, 0.3);
    text-shadow: none;
}

.hero__actions .btn--whatsapp {
    background: rgba(37, 211, 102, 0.9);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions .btn--whatsapp:hover {
    background: #25d366;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(37, 211, 102, 0.3);
    text-shadow: none;
}

.btn--whatsapp {
    background: linear-gradient(45deg, #25d366, #20c25e);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--whatsapp:hover {
    background: linear-gradient(45deg, #22c55e, #1db954);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn--outline {
    background: transparent;
    color: #ff6b35;
    border: 3px solid #ff6b35;
}

.btn--outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* Sections */
.section__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature__text {
    color: #666;
    line-height: 1.6;
}

.local-seo {
    padding-top: 3rem;
}

.local-seo__text {
    max-width: 900px;
    margin: 0 auto 1rem;
    text-align: center;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.local-seo__text a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.local-seo__text a:hover {
    color: #ff8566;
}

/* Menu CTA Section */
.menu-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f0, #ffeee6);
}

.menu-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.menu-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
}

.menu-cta__subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.menu-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-cta__button:hover {
    background: linear-gradient(135deg, #ff3742, #ff5722);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(255, 71, 87, 0.3);
}

/* Map Section - Minimalist Design */
.map-section {
    padding: 4rem 0;
    background: #ffffff;
}

.map-block {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

/* Компактная карта */
.map-compact {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-compact iframe {
    border-radius: 0;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-compact:hover iframe {
    filter: grayscale(0) contrast(1.2);
}

/* Детали местоположения */
.location-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.location-row:nth-child(1) { animation-delay: 0.5s; }
.location-row:nth-child(2) { animation-delay: 0.7s; }
.location-row:nth-child(3) { animation-delay: 0.9s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-row:last-of-type {
    margin-bottom: 2.5rem;
}

.location-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 133, 102, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-row:hover .location-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 133, 102, 0.08));
    transform: scale(1.05);
}

.location-info {
    flex: 1;
}

.location-primary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.location-secondary {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 0.2rem;
    line-height: 1.5;
    word-spacing: 0.1em;
}

.location-tertiary {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}



/* Быстрые действия */
.quick-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 1.1s forwards;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 110px;
    text-align: center;
}

.action-btn--route {
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: white;
    box-shadow: 0 3px 12px rgba(255, 71, 87, 0.3);
}

.action-btn--route:hover {
    background: linear-gradient(135deg, #ff3742, #ff5722);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.action-btn--call {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 3px 12px rgba(52, 152, 219, 0.3);
}

.action-btn--call:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.action-btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #1db954);
    color: white;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.action-btn--whatsapp:hover {
    background: linear-gradient(135deg, #1db954, #17a249);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Quick Menu Section */
.quick-menu {
    padding: 4rem 0;
    background: #f8fafc;
}

.menu-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.menu-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.menu-item p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0 0.8rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.3rem 0;
}

.footer__brand {
    flex: 0 0 auto;
}

.footer__brand img {
    height: 85px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    drop-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer__brand img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer__contact {
    text-align: right;
}

.footer__contact p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

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

.footer__contact a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer__contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff8566;
    transition: width 0.3s ease;
}

.footer__contact a:hover {
    color: #ff8566;
}

.footer__contact a:hover::after {
    width: 100%;
}

.footer__bottom {
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer__bottom a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom a:hover {
    color: #ff8566;
}

.delivery-local-seo {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #ff6b35, #ff8566);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__menu li {
        margin-bottom: 1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__brand {
        gap: 0.5rem;
    }

    .nav__brand img {
        height: 55px;
    }

    .nav__brand h1,
    .nav__brand .brand-title {
        font-size: 1.3rem;
    }

    .nav__toggle.active {
        background: rgba(255, 107, 53, 0.15);
        border-color: rgba(255, 107, 53, 0.3);
        box-shadow: 
            0 6px 16px rgba(255, 107, 53, 0.2),
            0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-3px, 4px);
        background: rgba(255, 255, 255, 1);
        width: 22px;
        margin-left: 0;
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0.8);
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-3px, -4px);
        background: rgba(255, 255, 255, 1);
        width: 22px;
        margin-left: 0;
    }

    .hero {
        padding: 3rem 15px;
        min-height: 55vh;
    }

    .hero__title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

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

    .menu-cta__title {
        font-size: 2rem;
    }

    .menu-cta__subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .menu-cta__button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .menu-preview {
        grid-template-columns: 1fr;
    }

    /* Map Section Mobile */
    .map-block {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-compact {
        height: 300px;
        order: 1;
    }

    .location-details {
        order: 2;
        padding: 2rem;
    }

    .location-row {
        margin-bottom: 1.5rem;
    }

    .location-row:last-of-type {
        margin-bottom: 2rem;
    }

    .quick-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .action-btn {
        flex: none;
        min-width: auto;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.3rem 0;
    }

    .footer__brand img {
        height: 60px;
    }

    .footer__contact {
        text-align: right;
        flex-shrink: 0;
    }

    .footer__contact p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}



@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 0.8rem 15px;
    }

    .nav__brand {
        gap: 0.4rem;
    }

    .nav__brand img {
        height: 45px;
    }

    .nav__brand h1,
    .nav__brand .brand-title {
        font-size: 1.1rem;
    }

    .nav__toggle {
        padding: 12px;
        border-width: 1px;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 
            0 3px 10px rgba(0, 0, 0, 0.12),
            0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .nav__toggle:hover {
        transform: translateY(-0.5px);
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.15),
            0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .nav__toggle span {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }

    .nav__toggle span:nth-child(2) {
        width: 16px;
        margin-left: 2px;
    }

    .nav__toggle:hover span:nth-child(2) {
        width: 20px;
        margin-left: 0;
    }

    .nav__toggle.active {
        background: rgba(255, 107, 53, 0.12);
        border-color: rgba(255, 107, 53, 0.25);
        box-shadow: 
            0 4px 12px rgba(255, 107, 53, 0.15),
            0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-2.5px, 3.5px);
        width: 20px;
        margin-left: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-2.5px, -3.5px);
        width: 20px;
        margin-left: 0;
    }

    .hero {
        padding: 2.5rem 15px;
        min-height: 50vh;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .section__title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .menu-cta {
        padding: 3.5rem 0;
    }

    .menu-cta__title {
        font-size: 1.7rem;
    }

    .menu-cta__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .menu-cta__button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        max-width: 280px;
        width: 100%;
    }

    .features,
    .map-section,
    .quick-menu {
        padding: 3.5rem 0;
    }

    .feature {
        padding: 1.5rem;
        border-radius: 16px;
    }

    /* Map Section Mobile Small */
    .map-compact {
        height: 250px;
    }

    .location-details {
        padding: 1.5rem;
    }

    .location-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .location-primary {
        font-size: 1rem;
    }

    .location-secondary,
    .location-tertiary {
        font-size: 0.8rem;
    }
    
    .location-secondary {
        line-height: 1.4;
        word-spacing: 0.05em;
    }
    


    .action-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 1rem 0 0.6rem;
    }

    .footer__contact p {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
}

/* Photo Menu Card Styles */
.photo-menu-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Gradient Menu Card Styles (for items without photos) */
.gradient-menu-card {
    background: linear-gradient(135deg, #ff6b35, #ff8566, #ffa726, #ffb347);
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-menu-overlay, .gradient-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.photo-menu-title, .gradient-menu-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    margin: 0;
}

.photo-menu-bottom, .gradient-menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.photo-menu-description, .gradient-menu-description {
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.photo-menu-details, .gradient-menu-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.photo-menu-weight, .gradient-menu-weight,
.photo-menu-price, .gradient-menu-price {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.photo-menu-price, .gradient-menu-price {
    background: rgba(255, 107, 53, 0.8);
    color: white;
}

/* Mobile adjustments for photo/gradient cards */
@media (max-width: 768px) {
    .photo-menu-card, .gradient-menu-card {
        height: 280px;
    }
    
    .photo-menu-overlay, .gradient-menu-overlay {
        padding: 16px;
    }
    
    .photo-menu-title, .gradient-menu-title {
        font-size: 1.2rem;
    }
    
    .photo-menu-description, .gradient-menu-description {
        font-size: 0.9rem;
    }
    
    .photo-menu-weight, .gradient-menu-weight,
    .photo-menu-price, .gradient-menu-price {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .photo-menu-card, .gradient-menu-card {
        height: 260px;
    }
    
    .photo-menu-overlay, .gradient-menu-overlay {
        padding: 14px;
    }
    
    .photo-menu-title, .gradient-menu-title {
        font-size: 1.1rem;
    }
    
    .photo-menu-details, .gradient-menu-details {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }
    
    .photo-menu-weight, .gradient-menu-weight,
    .photo-menu-price, .gradient-menu-price {
        text-align: center;
        flex: 0 0 auto;
        min-width: auto;
    }
} 