@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-color: #121212;
    --bg-surface: #1E1E1E;
    --text-main: #F5F5F7;
    --text-muted: #A1A1AA;
    --accent: #E5A93C;
    --accent-hover: #C48E2D;
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
    --border-radius: 0px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 400;
}

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

.header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-logo {
    width: 100px; 
}

.mobile-page-title {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mobile-menu-logo {
    display: none; 
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 15px; 
}

.main-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 300;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.main-menu a.active::after, .main-menu a:hover::after {
    width: 100%;
}

.main-menu a.active, .main-menu a:hover {
    color: var(--accent);
}

.lang-toggle {
    position: relative;
    display: flex;
    align-items: center;
    width: 70px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    cursor: pointer;
    background: transparent;
    user-select: none;
    transition: border-color 0.3s;
}

.lang-toggle:hover {
    border-color: var(--accent);
}

.lang-toggle input {
    display: none;
}

.lang-toggle .slider {
    position: absolute;
    top: 2px; 
    left: 2px;
    width: 26px; 
    height: 26px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.lang-toggle input:checked ~ .slider {
    transform: translateX(38px); 
}

.lang-text {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    transition: color 0.3s ease;
}

.lang-text.ua {
    left: 8px;
    color: var(--bg-color); 
}

.lang-text.en {
    right: 8px;
    color: var(--text-main); 
}

.lang-toggle input:checked ~ .lang-text.ua {
    color: var(--text-main); 
}

.lang-toggle input:checked ~ .lang-text.en {
    color: var(--bg-color); 
}

.hamburger {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; 
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}

.hero-catering {
    position: relative;
    padding: 220px 0;
    text-align: center;
    color: #fff; 
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0; 
    will-change: opacity, transform;
    animation: smoothCrossfade 35s linear infinite;
}

/* Виправлено: унікальні класи (bg-1 ... bg-5) та правильні таймінги */
.hero-bg.bg-1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../images/4.jpg');
    animation-delay: 0s;
}

.hero-bg.bg-2 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../images/1.jpg');
    animation-delay: 7s;
}

.hero-bg.bg-3 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../images/3.jpg');
    animation-delay: 14s;
}

.hero-bg.bg-4 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../images/5.jpg');
    animation-delay: 21s;
}

.hero-bg.bg-5 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)), url('../images/2.jpg');
    animation-delay: 28s;
}

@keyframes smoothCrossfade {
    0% { opacity: 0; transform: scale(1); }
    8% { opacity: 1; transform: scale(1.02); }
    20% { opacity: 1; transform: scale(1.05); }
    28% { opacity: 0; transform: scale(1.07); }
    100% { opacity: 0; transform: scale(1); }
}

.hero-catering h1, .hero-catering .subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-catering h1 {
    font-size: 72px;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-catering .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(229, 169, 60, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(229, 169, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 169, 60, 0); }
}

.hero-catering .btn-primary {
    display: inline-block;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent);
    padding: 18px 55px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: pulseGold 2.5s infinite;
}

.hero-catering .btn-primary span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.hero-catering .btn-primary::after {
    content: attr(data-hover);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    white-space: nowrap;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.hero-catering .btn-primary:hover {
    background-color: var(--accent);
    color: var(--bg-color);
    animation: none;
}

.hero-catering .btn-primary:hover span {
    transform: translateY(-150%);
    opacity: 0;
}

.hero-catering .btn-primary:hover::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.hero-contacts {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

@keyframes glowText {
    0%, 100% { text-shadow: 0px 2px 4px rgba(0,0,0,1), 0px 4px 10px rgba(0,0,0,1), 0 0 10px rgba(229, 169, 60, 0.5); }
    50% { text-shadow: 0px 2px 4px rgba(0,0,0,1), 0px 4px 10px rgba(0,0,0,1), 0 0 25px rgba(229, 169, 60, 1); }
}

.contact-label {
    font-family: var(--font-text);
    font-size: 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 1), 0px 4px 10px rgba(0, 0, 0, 1), 0px 0px 15px rgba(229, 169, 60, 0.6);
    animation: glowText 4s infinite ease-in-out;
    position: relative;
    z-index: 5;
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.hero-contacts .expand-btn {
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 169, 60, 0.6);
    color: var(--accent); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.expand-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px;
    text-decoration: none;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s ease,
                color 0.5s ease,
                background 0.5s ease;
    border-radius: var(--border-radius); 
    overflow: hidden; 
    box-sizing: border-box;
    background-color: transparent;
    padding: 0;
    z-index: 10;
}

.expand-btn svg {
    position: relative;
    min-width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.4s ease;
    z-index: 2;
}

.expand-btn .btn-text {
    max-width: 0;
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap; 
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, max-width 0.5s ease, margin-left 0.5s ease;
    z-index: 1;
}

@media (min-width: 601px) {
    .expand-btn {
        transition: width 0.5s ease-in-out,
                    border-color 0.5s ease,
                    color 0.5s ease,
                    background 0.5s ease,
                    transform 0.5s ease-in-out;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        position: relative !important;
    }
    
    .expand-btn:hover {
        width: 200px; 
        z-index: 20;
    }
    .hero-contacts .expand-btn:hover {
        background-color: var(--accent);
        color: var(--bg-color);
        border-color: var(--accent);
        animation: floatBtn 2s ease-in-out infinite; 
        box-shadow: 0 10px 25px rgba(229, 169, 60, 0.4);
    }
    .expand-btn:hover .btn-text {
        opacity: 1;
        max-width: 150px;
        margin-left: 12px;
        transform: scale(1);
        transition-delay: 0.15s; 
    }
    .expand-btn:hover svg {
        transform: scale(1.1); 
    }
}

.expand-btn.auto-active {
    width: 200px; 
    z-index: 20;
}
.hero-contacts .expand-btn.auto-active {
    background-color: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
    animation: floatBtn 2s ease-in-out infinite; 
    box-shadow: 0 10px 25px rgba(229, 169, 60, 0.4);
}
.expand-btn.auto-active .btn-text {
    opacity: 1;
    max-width: 150px;
    margin-left: 12px;
    transform: scale(1);
    transition-delay: 0.15s; 
}
.expand-btn.auto-active svg {
    transform: scale(1.1); 
}

.hero-contacts .btn-text {
    color: var(--bg-color);
}

.expand-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    min-height: 50px; 
    flex-wrap: wrap; 
}

.stats-section {
    background-color: var(--bg-color);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.dropdown-section {
    padding: 100px 20px 0;
}

.premium-dropdown {
    max-width: 1000px;
    margin: 0 auto;
}

.premium-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: border-color 0.3s ease;
    gap: 20px;
}

.premium-dropdown-header:hover {
    border-bottom-color: rgba(229, 169, 60, 0.5);
}

.premium-dropdown.active .premium-dropdown-header {
    border-bottom-color: transparent;
}

.premium-dropdown-header h2 {
    font-size: 42px;
    margin: 0;
    color: var(--text-main);
    word-wrap: break-word;
    flex-grow: 1;
}

.animated-plus {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.animated-plus span {
    position: absolute;
    background-color: var(--accent);
    transition: all 0.4s ease;
}

.animated-plus span:nth-child(1) {
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
}

.animated-plus span:nth-child(2) {
    top: 0;
    left: 14px;
    width: 2px;
    height: 100%;
}

.premium-dropdown.active .animated-plus {
    transform: rotate(135deg);
}

.premium-dropdown.active .animated-plus span {
    background-color: var(--text-muted);
}

.premium-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-dropdown.active .premium-dropdown-content {
    max-height: 2500px;
}

.services-wrapper {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-item {
    background-color: #161616;
    padding: 35px;
    border-top: 2px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
    background-color: #1a1a1a;
}

.service-item.main-service {
    grid-column: 1 / -1;
    background: radial-gradient(circle at top left, rgba(229,169,60,0.1), transparent 70%), #161616;
    border-top: 2px solid var(--accent);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-item.main-service h3 {
    color: var(--accent);
    font-size: 28px;
}

.service-item p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
}

.steps-wrapper {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    background-color: #161616;
    padding: 35px;
    border-top: 2px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
    background-color: #1a1a1a;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    opacity: 0.6;
}

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

.gallery-section {
    padding: 100px 20px 120px;
    text-align: center;
}

.gallery-section .section-title {
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
}

.gallery-section .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
    margin: 25px auto 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(110%);
    cursor: pointer;
    transition: filter 0.3s;
}

.carousel-slide img:hover {
    filter: grayscale(0%) contrast(100%);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-color);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.booking-section {
    padding: 120px 20px;
    background-image: radial-gradient(circle at 50% 0%, #1e1e1e 0%, #121212 70%);
}

.booking-container {
    background-color: transparent;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.booking-container::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--accent);
}

.booking-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.booking-container p {
    margin-bottom: 50px;
    color: var(--text-muted);
    font-weight: 300;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    margin-bottom: 50px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    font-family: var(--font-text);
    font-size: 16px;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group select:focus {
    border-bottom-color: var(--accent);
}

.input-group select option {
    background-color: var(--bg-surface);
    color: var(--text-main);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent);
    color: var(--bg-color);
    border: none;
    font-size: 14px;
    padding: 22px;
    letter-spacing: 3px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    box-shadow: none;
    transform: none;
}

.floating-btn {
    position: fixed;
    right: 40px; 
    bottom: -100px; 
    background-color: var(--accent); 
    color: var(--bg-color);
    border: 1px solid var(--accent);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600; 
    font-family: var(--font-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    z-index: 9999; 
    box-shadow: 0 10px 30px rgba(229, 169, 60, 0.3);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

.floating-btn.visible {
    bottom: 40px; 
}

.floating-btn:hover {
    background-color: var(--accent-hover);
}

.site-footer {
    background-color: #050505;
    padding: 80px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1100px; 
    margin: 40px auto;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.site-footer .expand-btn {
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.site-footer .expand-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(229, 169, 60, 0.05);
}

@media (max-width: 1050px) {
    .header-inner { gap: 15px; }
    .desktop-logo { width: 65px; }
    
    .mobile-page-title {
        display: block;
        flex-grow: 1;
        text-align: center;
        font-family: var(--font-heading);
        font-size: 18px;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .header-right { gap: 15px; }
    .hamburger { display: flex; }
    
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .main-menu.open { right: 0; }

    .mobile-menu-logo {
        display: block;
        margin-bottom: 40px; 
    }

    .mobile-menu-logo img {
        width: 120px; 
        filter: brightness(0) invert(1); 
        opacity: 0.8;
    }
    
    .main-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .main-menu a {
        font-size: 20px; 
        letter-spacing: 3px;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent);
    }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent);
    }

    .hero-catering { padding: 140px 0 80px; }
    .hero-catering h1 { font-size: 42px; }
    .premium-dropdown-header h2 { font-size: 26px; }
    .services-wrapper, .steps-wrapper { grid-template-columns: 1fr; }
    .step-item { flex-direction: column; gap: 10px; }
    .service-item, .step-item { padding: 20px; }
    .service-item.main-service { padding: 30px 20px; }
    .services-catering, .steps-section, .booking-section { padding: 60px 15px 0; }
    .booking-container { padding: 30px 15px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    
    .floating-btn { right: 20px; padding: 15px 25px; font-size: 11px; }
    .floating-btn.visible { bottom: 25px; }
}

@media (max-width: 600px) {
    .hero-contacts .expand-group {
        position: relative;
        width: 300px;
        height: 180px; 
        display: block; 
        margin: 0 auto;
    }
    
    .hero-contacts .expand-btn {
        position: absolute !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    .hero-contacts .expand-btn.auto-active { 
        width: 170px !important; 
        z-index: 20; 
    }

    .expand-btn .btn-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .hero-contacts .expand-btn.auto-active .btn-text {
        margin-left: 8px;
    }

    .hero-contacts .expand-btn svg {
        min-width: 18px; 
        height: 18px;
    }
}

@media (max-width: 480px) {
    .premium-dropdown-header h2 { font-size: 22px; }
    .animated-plus { width: 24px; height: 24px; }
    .animated-plus span:nth-child(1) { top: 11px; }
    .animated-plus span:nth-child(2) { left: 11px; }
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 250px;
    align-items: center;
}

.footer-wide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.4s ease;
    box-sizing: border-box;
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.footer-wide-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(229, 169, 60, 0.05);
}

.footer-wide-btn svg {
    min-width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: currentColor;
    transition: 0.4s;
}

.footer-wide-btn:hover svg {
    transform: scale(1.1);
}

.text-swap {
    position: relative;
    height: 16px;
    width: 130px;
    overflow: hidden;
    display: block;
}

.text-default, .text-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
}

.text-hover {
    transform: translateY(100%);
    opacity: 0;
    color: var(--accent);
}

.footer-wide-btn:hover .text-default {
    transform: translateY(-100%);
    opacity: 0;
}

.footer-wide-btn:hover .text-hover {
    transform: translateY(0);
    opacity: 1;
}

.footer-messengers-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.footer-messengers-row .expand-btn {
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.footer-messengers-row .expand-btn .btn-text {
    color: var(--text-main);
}

.footer-social-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.footer-social-row-2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.footer-social-row-2 .expand-btn {
    margin: 0 !important;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
}

@media (min-width: 601px) {
    .footer-messengers-row .expand-btn:hover {
        width: 130px !important;
        border-color: var(--accent);
        background: rgba(229, 169, 60, 0.05);
    }
    .footer-messengers-row .expand-btn:hover .btn-text {
        color: var(--accent);
    }
    .footer-messengers-row .expand-btn:hover svg {
        color: var(--accent);
    }
    .footer-social-row-2 .expand-btn:hover {
        width: 150px !important;
    }
}

.footer-contacts-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contacts-info p {
    margin-bottom: 8px;
}

.footer-contacts-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contacts-info a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}